Questions tagged [polish]

Polish is the English name for the language spoken in Poland.

122 questions
3
votes
1 answer

Printing individual operations from a postfix expression string in C++

Wanting help with breaking apart postfix expressions and outputting each individual operation. My issue is NOT evaluating the actual expression, but rather printing each individual operation before evaluating. I am using C++ to write a program that…
Nora
  • 35
  • 5
3
votes
2 answers

Getting COleDateTime::Format to return "stycznia" instead of "styczeń" for Polish month "January"

I have this method to set the locale to Polish: void CMeetingScheduleAssistantApp::SetLocale() { // https://www.microsoft.com/resources/msdn/goglobal/default.mspx#ISO2 CString strLang[NUM_LANGUAGES] = { _T("plk") // Add…
Andrew Truckle
  • 17,769
  • 16
  • 66
  • 164
3
votes
0 answers

Character encoding using Scanner in Java

I'm trying to read a file containing polish characters using Java and then print it in the command line in windows (english version). This is the text I want to read: Minister Ziobro polecił Prokuraturze Okręgowej w Płocku wszczęcie odrębnego…
coder
  • 327
  • 2
  • 3
  • 7
2
votes
1 answer

itextsharp 5.5.13.2 problem showing hungrerian and Polish language

While showing the report some character are not displaying on PDF case "HU"://Hungearian writeText(cb, **"Vevői cselekvési jelentés",** 210, 793, f_cn, 16); private void writeText(PdfContentByte cb, string Text,…
Sandip Shinde
  • 31
  • 1
  • 5
2
votes
2 answers

importing csv to mysql database - how to read file with Polish characters?

I have a csv file which it has a Polish characters too. The content of this is here: ID_WORKER;FNAME;LNAME;WORKERS_GROUP;POSITION; 1;Paweł;ĄąĆćĘꣳŃńÓóŚśŹźŻż;IT;IT…
Prochu1991
  • 443
  • 5
  • 20
2
votes
1 answer

Polish special letters not available while using Apache FOP

I've been struggling a lot with generating a PDF using FOP, with Polish letters. I have been reading a lot of posts here on SO but so far no success! Here is my Template:
Jens Borrisholt
  • 6,174
  • 1
  • 33
  • 67
2
votes
0 answers

Python encoding error Polish characters

I've got a .txt file that I want to read with Python and it contains Polish citynames. I use this code (my script has :# - coding: utf-8 -*- in the first line): string='PL.txt' country=io.open(string,mode=r,…
2
votes
1 answer

Polish characters receive messages imap

I have problem with Polish characters (ś,ć,ż,ź,ń,ó) When I receive body of mail i get "??" for everyone Polish char. MailMessage temp_message = receive.get_message(mail); temp_message.BodyEncoding =…
Jackop
  • 81
  • 1
  • 9
2
votes
1 answer

TinyMCE is blocking only one Polish character

TinyMCE works great - look at example. It works also with characters unique for Polish alphabet, for example: ąźćńół. Except one character: ę Typing this character in TinyMCE text area do noting (try at example page). What I should change in…
jsosnowski
  • 1,560
  • 3
  • 26
  • 56
2
votes
1 answer

How can I extract lemma with pl196x from nltk for Polish in Python?

I wrote some basic program and I want extract lemma for Polish words what is very important since Polish use inflection. I was create simple program to load data and convert word into lemma but not know how to do it: from nltk import corpus pl =…
Chameleon
  • 9,722
  • 16
  • 65
  • 127
2
votes
1 answer

Getting a chain of letters from a string based on a specific letter

I have a string containing a Polish notation that represents a floor-plan (VLSI placement), and it contains something like: "1234VHV56HV". (FYI, this means: Separate 3 & 4 vertically then separate the result & 2 horizontally then separate the result…
Hazem Labeeb
  • 295
  • 1
  • 3
  • 11
2
votes
1 answer

File content truncated when using polish characters

Code: #include const wchar_t * testArray[] = { L"Wszystkie kategorie równoważne", L"Oczekiwane przepływy pieniężne", L"Risk i dojrzałość", L"Pozycja strategiczna i lata na rynku", L"Prawdopodobieństwo…
NPS
  • 6,003
  • 11
  • 53
  • 90
2
votes
1 answer

How to configure custom solr instance to use Morfologik?

I have a custom solr instance running in tomcat. I followed tomcat deployment tutorial in SolrWiki. I want to index my data which are in Polish language and I want to use Morfologik. So i followed…
pawel.kalisz
  • 1,246
  • 1
  • 18
  • 26
1
vote
0 answers

How to execute J2ME polish app in nokia sdk 1.1 emulator

I was trying to execute a J2Me Polish app with the emulator that came with my nokia sdk 1.1 and got this error message C:\Users\Jade\J2ME-Polish2.3\Projects\FirstHello\nbproject\build-impl.xml:782: Execution failed with error code 1. and on line…
Sunday Okpokor
  • 721
  • 6
  • 18
1
vote
2 answers

Sublime text 2 - broken letter

I am using Sublime text 2 and I can type all polish letters (even Ł) beside ł. That is strange, because there are not any keyboard shortcuts with Alt_gr + L (That's the way I type it). Nothing comes up when I am trying to type it. I am working on…
Hahi
  • 121
  • 10
1
2
3
8 9