# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-10-04 00:32-0400\n" "PO-Revision-Date: 2012-10-14 00:56+0200\n" "Last-Translator: joasia1 \n" "Language-Team: LANGUAGE \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file #: clock.py:235 msgid "Clock" msgstr "Zegar" #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file msgid "" "Do you know the time? Now you do! Check out all the different ways you can " "make your clock look too!" msgstr "" "Czy wiesz która godzina? Teraz już tak. Sprawdź jak jeszcze może wyglądać " "twój zegar!" #. TRANS: Title of the activity #: clock.py:123 msgid "What Time Is It?" msgstr "Która godzina?" #. TRANS: The format used when writing the time in full #. letters. You must take care to use a font size large enough #. so that kids can read it easily, but also small enough so #. that all times combination fit on the screen, even when the #. screen is rotated. Pango markup: #. http://www.pygtk.org/docs/pygtk/pango-markup-language.html #: clock.py:131 #, python-format msgid "%s" msgstr "%s" #. TRANS: The format used to display the weekday and date #. (example: Tuesday 10/21/2008) We recommend to use the same #. font size as for the time display. See #. http://docs.python.org/lib/module-time.html for available #: clock.py:139 #, no-python-format msgid "" "" "%A, %m/%d/%Y" msgstr "" "%" "A, %d/%" "m/%Y" #: clock.py:266 msgid "Simple Clock" msgstr "Prosty zegarek" #: clock.py:272 msgid "Nice Clock" msgstr "Ładny zegarek" #: clock.py:278 #, no-python-format msgid "Digital Clock" msgstr "Zegarek elektroniczny" #: clock.py:292 msgid "Display time in full letters" msgstr "Wyświetlaj czas literami" #: clock.py:298 msgid "Display weekday and date" msgstr "Wyświetlaj dzień tygodnia i datę" #: clock.py:309 msgid "Talking clock" msgstr "Mówiący Zegar" #. TRANS: The format used to display the time for digital clock #. You can add AM/PM indicator or use 12/24 format, for example #. "%I:%M:%S %p". See #. http://docs.python.org/lib/module-time.html for available #. strftime formats If the display of the time is moving #. horizontally, it means that the glyphs of the digits used in #. the font don't have the same width. Try to use a Monospace #: clock.py:668 #, no-python-format #, no-python-format, fuzzy msgid "" "%I:%M:" "%S%p" msgstr "" "%I:%M:%S%p" #. TRANS: The format of the font used to print hour #. numbers, from 1 to 12. #: clock.py:815 #, python-format #, python-format, fuzzy msgid "%d" msgstr "%d" #. TRANS: The language pitch (range [0 - 99], default 50 for English) #. Look at http://espeak.sourceforge.net/commands.html for details #: speaker.py:29 msgid "50" msgstr "50" #. TRANS: The diction speed, in average words per minute (range [80 - 390], #. default 170 for English). #. Look at http://espeak.sourceforge.net/commands.html for details #: speaker.py:37 msgid "170" msgstr "170" #. TRANS: The pause duration between words, in units of 10 ms. #. Look at http://espeak.sourceforge.net/commands.html for details #: speaker.py:44 msgid "0" msgstr "0" #. TRANS: The language and voice variant #. Look at http://espeak.sourceforge.net/commands.html for details, and #. http://espeak.sourceforge.net/languages.html to see if your language is supported. #: speaker.py:52 msgid "en" msgstr "pl" #. TRANS: The rules to print the time in the localized language. #. #. Example syntax: #. time(h, 15) => a quarter to hour(h) am_pm(h) | #. The left hand side of the rule defines a pattern with a variable 'h' and a #. value '15'. #. The right hand side, when applied, will use the text "a quarter to " and call #. the first rule matching hour(h) after substituting the variable 'h' by its value, #. and call the rule matching am_pm(h). #. Internal spaces are significant on the right side of a rule. In calls, all #. arguments which are not numbers are considered to be variables. The rule parser #. is very simple and will let many syntax errors go ignored. #. #. A rule ends with the character '|'. #. The character '_' is a anonymous variable. #. The character '#' can be used to concatenate two text fragments. For instance: #. plural(1) => | #. plural(_) => s | #. hour(h) => number(h) hour#plural(h) | #. Use '\#' to use a # character, for instance in a pango color #. tag like #. #. You can put range conditions on firing a rule, with the syntax [var1 < var2] or #. [var1 < var2 < var3]. For instance: #. hours(h) [h < 12] => in the morning | #. hours(h) [12 < h < 18] => in the afternoon | #. hours(_) => in the night | #. #. These rules will be called with the root pattern "time(hour, minute)", with the #. variable 'hour' bound to the current hour and the variable 'minute' to the #. current minute. #. Order of rules is important. Rules are tried from first to last. So most precise #. rule must be placed first in the list. #. #. You can validate your set of rules by running the command line: #. python timewriter.py LANG #. #. You should use pango markup to respect the same colors as for the clock hands. #. Look at the README file from the activity for explanations on how to create #. rules. #: timewriter.py:204 msgid "time(h, m) => What Time Is It?" msgstr "" "time(h, 0) => hour(h) |\n" "time(0, m) [m < 30] => min1(m) po północy |\n" "time(0, 30) => wpół do pierwszej |\n" "time(0, m) [30 < m] => za min2(60-m) " "pierwsza/span> |\n" "time(h, m) => hour(h) min(m) |\n" "hour(0) => północ |\n" "hour(1) => pierwsza |\n" "hour(2) => druga |\n" "hour(3) => trzecia |\n" "hour(4) => czwarta |\n" "hour(5) => piąta |\n" "hour(6) => szósta |\n" "hour(7) => siódma |\n" "hour(8) => ósma |\n" "hour(9) => dziewiąta |\n" "hour(10) => dziesiąta |\n" "hour(11) => jedenasta |\n" "hour(12) => dwunasta |\n" "hour(13) => trzynasta |\n" "hour(14) => czternasta |\n" "hour(15) => piętnasta |\n" "hour(16) => szesnasta |\n" "hour(17) => siedemnasta |\n" "hour(18) => osiemnasta |\n" "hour(19) => dziewiętnasta |\n" "hour(20) => dwudziesta |\n" "hour(21) => dwudziesta pierwsza |\n" "hour(22) => dwudziesta druga |\n" "hour(23) => dwudziesta trzecia |\n" "min(1) => jeden |\n" "min(2) => dwie |\n" "min(3) => trzy |\n" "min(4) => cztery |\n" "min(5) => pięć |\n" "min(6) => sześć |\n" "min(7) => siedem |\n" "min(8) => osiem |\n" "min(9) => dziewięć |\n" "min(10) => dziesięć |\n" "min(11) => jedenaście |\n" "min(12) => dwanaście |\n" "min(13) => trzynaście |\n" "min(14) => czternaście |\n" "min(15) => piętnaście |\n" "min(16) => szesnaście |\n" "min(17) => siedemnaście |\n" "min(18) => osiemnaście |\n" "min(19) => dziewiętnaście |\n" "min(20) => dwadzieścia |\n" "min(21) => dwadzieścia jeden |\n" "min(22) => dwadzieścia dwie |\n" "min(23) => dwadzieścia trzy |\n" "min(24) => dwadzieścia cztery |\n" "min(25) => dwadzieścia pięć |\n" "min(26) => dwadzieścia sześć |\n" "min(27) => dwadzieścia siedem |\n" "min(28) => dwadzieścia osiem |\n" "min(29) => dwadzieścia dziewięć |\n" "min(30) => trzydzieści |\n" "min(31) => trzydzieści jeden |\n" "min(32) => trzydzieści dwie |\n" "min(33) => trzydzieści trzy |\n" "min(34) => trzydzieści cztery |\n" "min(35) => trzydzieści pięć |\n" "min(36) => trzydzieści sześć |\n" "min(37) => trzydzieści siedem |\n" "min(38) => trzydzieści osiem |\n" "min(39) => trzydzieści dziewięć |\n" "min(40) => czterdzieści |\n" "min(41) => czterdzieści jeden |\n" "min(42) => czterdzieści dwie |\n" "min(43) => czterdzieści trzy |\n" "min(44) => czterdzieści cztery |\n" "min(45) => czterdzieści pięć |\n" "min(46) => czterdzieści sześć |\n" "min(47) => czterdzieści siedem |\n" "min(48) => czterdzieści osiem |\n" "min(49) => czterdzieści dziewięć |\n" "min(50) => pięćdziesiąt |\n" "min(51) => pięćdziesiąt jeden |\n" "min(52) => pięćdziesiąt dwie |\n" "min(53) => pięćdziesiąt trzy |\n" "min(54) => pięćdziesiąt cztery |\n" "min(55) => pięćdziesiąt pięć |\n" "min(56) => pięćdziesiąt sześć |\n" "min(57) => pięćdziesiąt siedem |\n" "min(58) => pięćdziesiąt osiem |\n" "min(59) => pięćdziesiąt dziewięć |\n" "min(60) => sześćdziesiąt |\n" "min1(1) => minuta |\n" "min1(m) => min(m) |\n" "min2(1) => minutę |\n" "min2(m) => min(m)" #~ msgid "Activity" #~ msgstr "Aktywność" #~ msgid "Write Time" #~ msgstr "Wpisz godzinę" #, no-python-format #~ msgid "Write Date" #~ msgstr "Wpisz datę" #~ msgid "Toolbar" #~ msgstr "Pasek narzędzi" #~ msgid "Hour Number" #~ msgstr "Godzina" #~ msgid "espeak-pitch" #~ msgstr "50" #~ msgid "espeak-speed" #~ msgstr "170" #~ msgid "espeak-wgap" #~ msgstr "1" #~ msgid "espeak-voice" #~ msgstr "pl"