thomascube
2005-11-06 e66f5b4d718423ca530b13aa94648dbda873ea28
Added favicon and Polish, Czech, British localizations


18 files modified
8 files added
754 ■■■■■ changed files
CHANGELOG 2 ●●● patch | view | raw | blame | history
program/js/app.js 4 ●●●● patch | view | raw | blame | history
program/localization/cz/labels.inc 178 ●●●●● patch | view | raw | blame | history
program/localization/cz/messages.inc 61 ●●●●● patch | view | raw | blame | history
program/localization/en_GB/labels.inc 176 ●●●●● patch | view | raw | blame | history
program/localization/en_GB/messages.inc 60 ●●●●● patch | view | raw | blame | history
program/localization/index.inc 2 ●●●●● patch | view | raw | blame | history
program/localization/pl/labels.inc 177 ●●●●● patch | view | raw | blame | history
program/localization/pl/messages.inc 62 ●●●●● patch | view | raw | blame | history
skins/default/images/favicon.ico patch | view | raw | blame | history
skins/default/includes/links.html 2 ●●●●● patch | view | raw | blame | history
skins/default/templates/addcontact.html 2 ●●● patch | view | raw | blame | history
skins/default/templates/addidentity.html 2 ●●● patch | view | raw | blame | history
skins/default/templates/addressbook.html 2 ●●● patch | view | raw | blame | history
skins/default/templates/compose.html 2 ●●● patch | view | raw | blame | history
skins/default/templates/editcontact.html 2 ●●● patch | view | raw | blame | history
skins/default/templates/editidentity.html 2 ●●● patch | view | raw | blame | history
skins/default/templates/error.html 2 ●●● patch | view | raw | blame | history
skins/default/templates/identities.html 2 ●●● patch | view | raw | blame | history
skins/default/templates/login.html 2 ●●● patch | view | raw | blame | history
skins/default/templates/mail.html 2 ●●● patch | view | raw | blame | history
skins/default/templates/managefolders.html 2 ●●● patch | view | raw | blame | history
skins/default/templates/message.html 2 ●●● patch | view | raw | blame | history
skins/default/templates/messagepart.html 2 ●●● patch | view | raw | blame | history
skins/default/templates/settings.html 2 ●●● patch | view | raw | blame | history
skins/default/templates/showcontact.html 2 ●●● patch | view | raw | blame | history
CHANGELOG
@@ -62,7 +62,7 @@
2005/11/06
----------
- Added Finnish, Romanian and Chinese translation
- Added Finnish, Romanian, Polish, Czech, British and Chinese translation
- Get IMAP server capabilities in array
- Check for NAMESPACE capability before sending command
- Set default user language from config 'locale_string'
program/js/app.js
@@ -32,7 +32,7 @@
  // webmail client settings
  this.dblclick_time = 600;
  this.message_time = 5000;
  this.request_timeout = 120000;
  this.request_timeout = 180000;
  this.mbox_expression = new RegExp('[^0-9a-z\-_]', 'gi');
  this.env.blank_img = 'skins/default/images/blank.gif';
  
@@ -528,7 +528,7 @@
          var input_email = rcube_find_object('_email');
          // user prefs
          if (input_pagesize && input_pagesize.value == '')
          if (input_pagesize && isNaN(input_pagesize.value))
            {
            alert(this.get_label('nopagesizewarning'));
            input_pagesize.focus();
program/localization/cz/labels.inc
New file
@@ -0,0 +1,178 @@
<?php
/*
 +-----------------------------------------------------------------------+
 | language/cz/labels.inc                                                |
 |                                                                       |
 | Language file of the RoundCube Webmail client                         |
 | Copyright (C) 2005, RoundQube Dev. - Switzerland                      |
 | All rights reserved.                                                  |
 |                                                                       |
 +-----------------------------------------------------------------------+
 | Author: Martin Mrajca <martin@moonlake.cz>                            |
 +-----------------------------------------------------------------------+
 $Id$
*/
$utf8_decoding = TRUE;
$labels = array();
// login page
$labels['username']  = 'Uћivatel';
$labels['password']  = 'Heslo';
$labels['server']    = 'Server';
$labels['login']     = 'Pшihlбsit';
// taskbar
$labels['logout']   = 'Odhlбsit';
$labels['mail']     = 'E-Mail';
$labels['settings'] = 'Osobnн nastavenн';
$labels['addressbook'] = 'Adresбш';
// mailbox names
$labels['inbox']  = 'Pшнchozн poљta';
$labels['sent']   = 'Odeslanй';
$labels['trash']  = 'Koљ';
$labels['drafts'] = 'Rozepsanй';
$labels['junk']   = 'Nevyћбdanб poљta';
// message listing
$labels['subject'] = 'Pшedmмt';
$labels['from']    = 'Odesilatel';
$labels['to']      = 'Adresбt';
$labels['cc']      = 'Kopie';
$labels['bcc']     = 'Slepб';
$labels['replyto'] = 'Odpovмп na';
$labels['date']    = 'Datum';
$labels['size']    = 'Velikost';
$labels['priority'] = 'Priorita';
$labels['organization'] = 'Organizace';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Sloћky';
$labels['messagesfromto'] = 'Zprбvy od $from do $to z celkem $count';
$labels['messagenrof'] = 'Zprбva $nr z $count';
$labels['moveto']   = 'pшesunout do...';
$labels['download'] = 'stбhnout';
$labels['filename'] = 'Jmйno pшнlohy';
$labels['filesize'] = 'Velikost pшнlohy';
$labels['preferhtml'] = 'Upшednostтovat HTML zobrazenн';
$labels['htmlmessage'] = 'HTML zprбva';
$labels['prettydate'] = 'Hezин data';
$labels['addtoaddressbook'] = 'Pшidat do adresбшe';
// weekdays short
$labels['sun'] = 'Ne';
$labels['mon'] = 'Po';
$labels['tue'] = 'Ъt';
$labels['wed'] = 'St';
$labels['thu'] = 'Иt';
$labels['fri'] = 'Pб';
$labels['sat'] = 'So';
// weekdays long
$labels['sunday']    = 'Nedмle';
$labels['monday']    = 'Pondмlн';
$labels['tuesday']   = 'Ъterэ';
$labels['wednesday'] = 'Stшeda';
$labels['thursday']  = 'Иtvrtek';
$labels['friday']    = 'Pбtek';
$labels['saturday']  = 'Sobota';
$labels['today'] = 'Dnes';
// toolbar buttons
$labels['writenewmessage']  = 'Vytvoшit novou zprбvu';
$labels['replytomessage']   = 'Odpovмdмt odesilateli';
$labels['forwardmessage']   = 'Pшedat zprбvu';
$labels['deletemessage']    = 'Pшesunout do koљe';
$labels['printmessage']     = 'Vytisknout zprбvu';
$labels['previousmessages'] = 'Zobrazit pшedchozн zprбvy';
$labels['nextmessages']     = 'Zobrazit dalљн zprбvy';
$labels['backtolist']       = 'Zpмt do seznamu zprбv';
$labels['viewsource']       = 'Zobrazit zdroj';
$labels['select'] = 'Vybrat';
$labels['all'] = 'Vљe';
$labels['none'] = 'Nic';
$labels['unread'] = 'Nepшeиtenй';
// message compose
$labels['compose']  = 'Napsat zprбvu';
$labels['sendmessage']  = 'Odeslat zprбvu nynн';
$labels['addattachment']  = 'Pшidat pшнlohu';
$labels['attachments'] = 'Pшнlohy';
$labels['upload'] = 'Nahrбt';
$labels['close']  = 'Zavшнt';
$labels['low']     = 'Nнzkб';
$labels['lowest']  = 'Nejniћљн';
$labels['normal']  = 'Normalnн';
$labels['high']    = 'Vysokб';
$labels['highest'] = 'Nejvyљљн';
$labels['showimages'] = 'Zobrazit obrбzky';
// address boook
$labels['name']      = 'Zobrazit jmйno';
$labels['firstname'] = 'Jmйno';
$labels['surname']   = 'Pшнjmenн';
$labels['email']     = 'E-Mail';
$labels['addcontact'] = 'Pшidat kontakt';
$labels['editcontact'] = 'Upravit kontakt';
$labels['edit']   = 'Upravit';
$labels['cancel'] = 'Konec';
$labels['save']   = 'Uloћit';
$labels['delete'] = 'Smazat';
$labels['newcontact']     = 'Vytvoшit novэ kontakt';
$labels['deletecontact']  = 'Smazat vybranй kontakty';
$labels['composeto']      = 'Poslat mail';
$labels['contactsfromto'] = 'Kontakty od $from do $to z celkem $count';
$labels['print']          = 'Tisk';
$labels['export']         = 'Export';
// settings
$labels['settingsfor']  = 'Nastavenн pro';
$labels['preferences']  = 'Vlastnosti';
$labels['userpreferences']  = 'Vlastnosti uћivatele';
$labels['editpreferences']  = 'Upravit vlastnosti uћivatele';
$labels['identities']  = 'Profily';
$labels['manageidentities']  = 'Spravovat profily u tohoto ъиtu';
$labels['newidentity']  = 'Novб profil';
$labels['newitem']  = 'Novб poloћka';
$labels['edititem']  = 'Upravit poloѕku';
$labels['setdefault']  = 'Nastavit vэchozн';
$labels['language']  = 'Jazyk';
$labels['timezone']  = 'Иasovб zуna';
$labels['pagesize']  = 'Шбdkщ na strбnku';
$labels['folders']  = 'Sloћky';
$labels['foldername']  = 'Jmйno sloћky';
$labels['subscribed']  = 'Podepsanй';
$labels['create']  = 'Vytvoшit';
$labels['createfolder']  = 'Vytvoшit novou sloћku';
$labels['deletefolder']  = 'Smazat sloћku';
$labels['managefolders']  = 'Spravovat sloћky';
?>
program/localization/cz/messages.inc
New file
@@ -0,0 +1,61 @@
<?php
/*
 +-----------------------------------------------------------------------+
 | language/cz/messages.inc                                              |
 |                                                                       |
 | Language file of the RoundCube Webmail client                         |
 | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
 | All rights reserved.                                                  |
 |                                                                       |
 +-----------------------------------------------------------------------+
 | Author: Martin Mrajca <martin@moonlake.cz>                            |
 +-----------------------------------------------------------------------+
 $Id$
*/
$utf8_decoding = TRUE;
$messages = array();
$messages['loginfailed']  = 'Pшihlбљenн selhalo';
$messages['cookiesdisabled'] = 'Vбљ prohlнћeи nepodporuje cookies, kterй jsou pro pшihlбљenн nutnй';
$messages['sessionerror'] = 'Vaљe pшihlбљenн je neplatnй nebo vyprљelo';
$messages['imaperror'] = 'Pшipojenн na IMAP server selhalo';
$messages['nomessagesfound'] = 'Ve schrбnce nebyla nalezena ћбdnб zprбva';
$messages['loggedout'] = 'Byli jste ъspмљnм odhlбљeni. Nashledanou!';
$messages['mailboxempty'] = 'Schrбnka je prбzdnб';
$messages['loadingdata'] = 'Naинtбm data...';
$messages['messagesent'] = 'Zprбva byla odeslбna';
$messages['successfullysaved'] = 'Uloћeno';
$messages['addedsuccessfully'] = 'Kontakt byl ъspмљnм pшidбn do adresбшe';
$messages['contactexists'] = 'Kontakt se zadanou e-mailovou adresou jiћ existuje';
$messages['blockedimages'] = 'Z bezpeиnostnнch dщvodщ byly zablokovбny obrбzky ve zprбvм.';
$messages['encryptedmessage'] = 'Tato zprбva je zaљifrovanб a nelze ji zobrazit.';
$messages['nocontactsfound'] = 'Nemбte ћбdnй kontakty';
$messages['sendingfailed'] = 'Odesнlбnн zprбvy selhalo';
$messages['errorsaving'] = 'Vyskytla se chyba pшi uklбdбnн';
$messages['errormoving'] = 'Nemohu pшesunout zprбvu';
$messages['errordeleting'] = 'Nemohu smazat zprбvu';
?>
program/localization/en_GB/labels.inc
New file
@@ -0,0 +1,176 @@
<?php
/*
 +-----------------------------------------------------------------------+
 | language/en_GB/labels.inc                                             |
 |                                                                       |
 | Language file of the RoundCube Webmail client                         |
 | Copyright (C) 2005, RoundQube Dev. - Switzerland                      |
 | Licensed under the GNU GPL                                            |
 |                                                                       |
 +-----------------------------------------------------------------------+
 | Author: Weiran Zhang (weiran@weiran.co.uk)                            |
 +-----------------------------------------------------------------------+
 $Id$
*/
$labels = array();
// login page
$labels['username']  = 'Username';
$labels['password']  = 'Password';
$labels['server']    = 'Server';
$labels['login']     = 'Login';
// taskbar
$labels['logout']   = 'Logout';
$labels['mail']     = 'E-Mail';
$labels['settings'] = 'Personal Settings';
$labels['addressbook'] = 'Address Book';
// mailbox names
$labels['inbox']  = 'Inbox';
$labels['sent']   = 'Sent';
$labels['trash']  = 'Deleted Items';
$labels['drafts'] = 'Drafts';
$labels['junk']   = 'Junk';
// message listing
$labels['subject'] = 'Subject';
$labels['from']    = 'Sender';
$labels['to']      = 'Recipient';
$labels['cc']      = 'Copy';
$labels['bcc']     = 'Bcc';
$labels['replyto'] = 'Reply-To';
$labels['date']    = 'Date';
$labels['size']    = 'Size';
$labels['priority'] = 'Priority';
$labels['organization'] = 'Organisation';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Folders';
$labels['messagesfromto'] = 'Messages $from to $to of $count';
$labels['messagenrof'] = 'Message $nr of $count';
$labels['moveto']   = 'move to...';
$labels['download'] = 'download';
$labels['filename'] = 'File name';
$labels['filesize'] = 'File size';
$labels['preferhtml'] = 'Prefer HTML';
$labels['htmlmessage'] = 'HTML Message';
$labels['prettydate'] = 'Pretty dates';
$labels['addtoaddressbook'] = 'Add to address book';
// weekdays short
$labels['sun'] = 'Sun';
$labels['mon'] = 'Mon';
$labels['tue'] = 'Tue';
$labels['wed'] = 'Wed';
$labels['thu'] = 'Thu';
$labels['fri'] = 'Fri';
$labels['sat'] = 'Sat';
// weekdays long
$labels['sunday']    = 'Sunday';
$labels['monday']    = 'Monday';
$labels['tuesday']   = 'Tuesday';
$labels['wednesday'] = 'Wednesday';
$labels['thursday']  = 'Thursday';
$labels['friday']    = 'Friday';
$labels['saturday']  = 'Saturday';
$labels['today'] = 'Today';
// toolbar buttons
$labels['writenewmessage']  = 'Create a new message';
$labels['replytomessage']   = 'Reply to the message';
$labels['forwardmessage']   = 'Forward the message';
$labels['deletemessage']    = 'Move message to trash';
$labels['printmessage']     = 'Print this message';
$labels['previousmessages'] = 'Show previous set of messages';
$labels['nextmessages']     = 'Show next set of messages';
$labels['backtolist']       = 'Back to message list';
$labels['viewsource']       = 'Show source';
$labels['select'] = 'Select';
$labels['all'] = 'All';
$labels['none'] = 'None';
$labels['unread'] = 'Unread';
// message compose
$labels['compose']  = 'Compose a message';
$labels['sendmessage']  = 'Send the message now';
$labels['addattachment']  = 'Attach a file';
$labels['attachments'] = 'Attachments';
$labels['upload'] = 'Upload';
$labels['close']  = 'Close';
$labels['low']     = 'Low';
$labels['lowest']  = 'Lowest';
$labels['normal']  = 'Normal';
$labels['high']    = 'High';
$labels['highest'] = 'Highest';
$labels['showimages'] = 'Display images';
// address boook
$labels['name']      = 'Display name';
$labels['firstname'] = 'First name';
$labels['surname']   = 'Last name';
$labels['email']     = 'E-Mail';
$labels['addcontact'] = 'Add new contact';
$labels['editcontact'] = 'Edit contact';
$labels['edit']   = 'Edit';
$labels['cancel'] = 'Cancel';
$labels['save']   = 'Save';
$labels['delete'] = 'Delete';
$labels['newcontact']     = 'Create new contact card';
$labels['deletecontact']  = 'Delete selected contacts';
$labels['composeto']      = 'Compose mail to';
$labels['contactsfromto'] = 'Contacts $from to $to of $count';
$labels['print']          = 'Print';
$labels['export']         = 'Export';
// settings
$labels['settingsfor']  = 'Settings for';
$labels['preferences']  = 'Preferences';
$labels['userpreferences']  = 'User preferences';
$labels['editpreferences']  = 'Edit user preferences';
$labels['identities']  = 'Identities';
$labels['manageidentities']  = 'Manage identities for this account';
$labels['newidentity']  = 'New identity';
$labels['newitem']  = 'New item';
$labels['edititem']  = 'Edit item';
$labels['setdefault']  = 'Set default';
$labels['language']  = 'Language';
$labels['timezone']  = 'Time zone';
$labels['pagesize']  = 'Rows per page';
$labels['folders']  = 'Folders';
$labels['foldername']  = 'Folder name';
$labels['subscribed']  = 'Subscribed';
$labels['create']  = 'Create';
$labels['createfolder']  = 'Create new folder';
$labels['deletefolder']  = 'Delete folder';
$labels['managefolders']  = 'Manage folders';
?>
program/localization/en_GB/messages.inc
New file
@@ -0,0 +1,60 @@
<?php
/*
 +-----------------------------------------------------------------------+
 | language/en_GB/messages.inc                                           |
 |                                                                       |
 | Language file of the RoundCube Webmail client                         |
 | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
 | Licensed under the GNU GPL                                            |
 |                                                                       |
 +-----------------------------------------------------------------------+
 | Author: Weiran Zhang (weiran@weiran.co.uk)                            |
 +-----------------------------------------------------------------------+
 $Id$
*/
$messages = array();
$messages['loginfailed']  = 'Login failed';
$messages['cookiesdisabled'] = 'Your browser does not accept cookies';
$messages['sessionerror'] = 'Your session is invalid or expired';
$messages['imaperror'] = 'Connection to IMAP server failed';
$messages['nomessagesfound'] = 'No messages found in this mailbox';
$messages['loggedout'] = 'You have successfully terminated the session. Good bye!';
$messages['mailboxempty'] = 'Mailbox is empty';
$messages['loadingdata'] = 'Loading data...';
$messages['messagesent'] = 'Message sent successfully';
$messages['successfullysaved'] = 'Successfully saved';
$messages['addedsuccessfully'] = 'Contact added successfully to address book';
$messages['contactexists'] = 'A contact with this e-mail address already exists';
$messages['blockedimages'] = 'To protect your privacy, remote images are blocked in this message.';
$messages['encryptedmessage'] = 'This is an encrypted message and can not be displayed. Sorry!';
$messages['nocontactsfound'] = 'No contacts found';
$messages['sendingfailed'] = 'Failed to send message';
$messages['errorsaving'] = 'An error occured while saving';
$messages['errormoving'] = 'Could not move the message';
$messages['errordeleting'] = 'Could not delete the message';
?>
program/localization/index.inc
@@ -57,8 +57,10 @@
$rcube_charsets = array(
    'cz' => 'Windows-1250',
    'ru' => 'Windows-1251',
    'lv' => 'ISO-8859-2',
    'pl' => 'ISO-8859-2',
    'tw' => 'BIG5'
);
program/localization/pl/labels.inc
New file
@@ -0,0 +1,177 @@
<?php
/*
 +-----------------------------------------------------------------------+
 | language/en/labels.inc                                                |
 |                                                                       |
 | Language file of the RoundCube Webmail client                         |
 | Copyright (C) 2005, RoundQube Dev. - Switzerland                      |
 | Licensed under the GNU GPL                                            |
 |                                                                       |
 +-----------------------------------------------------------------------+
 | Author: Sławomir Cichoń  <slawek.cichon@gmail.com>                    |
 +-----------------------------------------------------------------------+
 $Id$
*/
$utf8_decoding = TRUE;
$labels = array();
// login page
$labels['username']  = 'E-mail';
$labels['password']  = 'Hasło';
$labels['server']    = 'Serwer';
$labels['login']     = 'Zaloguj';
// taskbar
$labels['logout']   = 'Wyloguj';
$labels['mail']     = 'E-Mail';
$labels['settings'] = 'Ustawienia';
$labels['addressbook'] = 'Książka Adresowa';
// mailbox names
$labels['inbox']  = 'Odebrane';
$labels['sent']   = 'Wysłane';
$labels['trash']  = 'Kosz';
$labels['drafts'] = 'Kopie robocze';
$labels['junk']   = 'Spam';
// message listing
$labels['subject'] = 'Temat';
$labels['from']    = 'Nadawca';
$labels['to']      = 'Odbiorca';
$labels['cc']      = 'Kopia';
$labels['bcc']     = 'Bcc';
$labels['replyto'] = 'Odpowiedz do';
$labels['date']    = 'Data';
$labels['size']    = 'Rozmiar';
$labels['priority'] = 'Priorytet';
$labels['organization'] = 'Organizacja';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Foldery';
$labels['messagesfromto'] = 'Wiadmość od $from do $to of $count';
$labels['messagenrof'] = 'Wiadmość $nr z $count';
$labels['moveto']   = 'Przenieś do...';
$labels['download'] = 'pobierz';
$labels['filename'] = 'Nazwa pliku';
$labels['filesize'] = 'Rozmiar pliku';
$labels['preferhtml'] = 'Domyślny HTML';
$labels['htmlmessage'] = 'Widomość HTML';
$labels['prettydate'] = 'Ładne daty';
$labels['addtoaddressbook'] = 'Dodaj do książki adresowej ';
// weekdays short
$labels['sun'] = 'Nd';
$labels['mon'] = 'Pn';
$labels['tue'] = 'Wt';
$labels['wed'] = 'Śr';
$labels['thu'] = 'Czw';
$labels['fri'] = 'Pt';
$labels['sat'] = 'Sb';
// weekdays long
$labels['sunday']    = 'Niedziela';
$labels['monday']    = 'Poniedziałek';
$labels['tuesday']   = 'Wtorek';
$labels['wednesday'] = 'Środa';
$labels['thursday']  = 'Czwartek';
$labels['friday']    = 'Piątek';
$labels['saturday']  = 'Sobota';
$labels['today'] = 'Dzisiaj';
// toolbar buttons
$labels['writenewmessage']  = 'Utwórz nową wiadmomość';
$labels['replytomessage']   = 'Odpowiedz';
$labels['forwardmessage']   = 'Prześlij';
$labels['deletemessage']    = 'Usuń do kosza';
$labels['printmessage']     = 'Drukuj';
$labels['previousmessages'] = 'Pokaż poprzednią';
$labels['nextmessages']     = 'Pokaż następną';
$labels['backtolist']       = 'Pokaż listę widomości';
$labels['viewsource']       = 'Pokaż źródło';
$labels['select'] = 'Wybierz';
$labels['all'] = 'Wszystkie';
$labels['none'] = 'Brak';
$labels['unread'] = 'Nieprzeczytane';
// message compose
$labels['compose']  = 'Utwórz wiadomość';
$labels['sendmessage']  = 'Wyślij teraz';
$labels['addattachment']  = 'Dołącz plik';
$labels['attachments'] = 'Załączniki';
$labels['upload'] = 'Wgraj';
$labels['close']  = 'Zamknij';
$labels['low']     = 'Bardzo niski';
$labels['lowest']  = 'Niski';
$labels['normal']  = 'Normalny';
$labels['high']    = 'Wysoki';
$labels['highest'] = 'Bardzo wysoki';
$labels['showimages'] = 'Wyświetl obrazki';
// address boook
$labels['name']      = 'Nazwa';
$labels['firstname'] = 'Imię';
$labels['surname']   = 'Nazwisko';
$labels['email']     = 'E-Mail';
$labels['addcontact'] = 'Dodaj nowy kontakt';
$labels['editcontact'] = 'Edytuj kontakt';
$labels['edit']   = 'Edytuj';
$labels['cancel'] = 'Anuluj';
$labels['save']   = 'Zapisz';
$labels['delete'] = 'Kasuj';
$labels['newcontact']     = 'Dodaj nowy kontakt';
$labels['deletecontact']  = 'Usuń zaznaczone kontakty';
$labels['composeto']      = 'Stwórz wiadomość dla';
$labels['contactsfromto'] = 'Kontakt od $from do $to of $count';
$labels['print']          = 'Drukuj';
$labels['export']         = 'Eksportuj';
// settings
$labels['settingsfor']  = 'Ustawienia dla';
$labels['preferences']  = 'Ustawienia';
$labels['userpreferences']  = 'Preferencje';
$labels['editpreferences']  = 'Edytuj preferencję';
$labels['identities']  = 'Tożsamości';
$labels['manageidentities']  = 'Zarządzaj tożsamościami';
$labels['newidentity']  = 'Nowa tożsamość';
$labels['newitem']  = 'Nowy';
$labels['edititem']  = 'Edytuj';
$labels['setdefault']  = 'Ustaw domyślne';
$labels['language']  = 'Język';
$labels['timezone']  = 'Strefy czasu';
$labels['pagesize']  = 'wierszy na stronie';
$labels['folders']  = 'Foldery';
$labels['foldername']  = 'Nazwa folderu';
$labels['subscribed']  = 'Zapisany';
$labels['create']  = 'Utwórz';
$labels['createfolder']  = 'Utwórz nowy folder';
$labels['deletefolder']  = 'Usuń folder';
$labels['managefolders']  = 'Zarządzaj folderami';
?>
program/localization/pl/messages.inc
New file
@@ -0,0 +1,62 @@
<?php
/*
 +-----------------------------------------------------------------------+
 | language/pl/messages.inc                                              |
 |                                                                       |
 | Language file of the RoundCube Webmail client                         |
 | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
 | Licensed under the GNU GPL                                            |
 |                                                                       |
 +-----------------------------------------------------------------------+
 | Author: Sławomir Cichoń  <slawek.cichon@gmail.com>                    |
 +-----------------------------------------------------------------------+
 $Id$
*/
$utf8_decoding = TRUE;
$messages = array();
$messages['loginfailed']  = 'Błąd logowania.';
$messages['cookiesdisabled'] = 'Twoja przeglądarka nie obsługuje Ciasteczek.';
$messages['sessionerror'] = 'Błąd sesji,bądź sesja wygasła.';
$messages['imaperror'] = 'Błąd połączenia z serwerem.';
$messages['nomessagesfound'] = 'Brak wiadmomości w skrzynce.';
$messages['loggedout'] = 'Do widzenia.';
$messages['mailboxempty'] = 'Skrzynka jest pusta.';
$messages['loadingdata'] = 'Ładowanie...';
$messages['messagesent'] = 'Wiadomość wysłana pomyślnie.';
$messages['successfullysaved'] = 'Zapisano.';
$messages['addedsuccessfully'] = 'Kontakt został dodany.';
$messages['contactexists'] = 'Kontakt o podanym adresie e-mail istnieje.';
$messages['blockedimages'] = 'Ze względów bezpieczeństwa zewnętrzne obrazki zostały zablokowane.';
$messages['encryptedmessage'] = 'Przepraszamy, nie można wyświeltlić zaszyfrowanej wiadomości.';
$messages['nocontactsfound'] = 'Nie znaleziono kontaktu.';
$messages['sendingfailed'] = 'Nie udało się wysłać wiadomości.';
$messages['errorsaving'] = 'Błąd podczas zapisu.';
$messages['errormoving'] = 'Nie można przeniść wybranej wiadmości';
$messages['errordeleting'] = 'Nie można usunąć wiadomości';
?>
skins/default/images/favicon.ico
skins/default/includes/links.html
New file
@@ -0,0 +1,2 @@
<link rel="shortcut icon" href="/images/favicon.ico"/>
<link rel="stylesheet" type="text/css" href="/common.css" />
skins/default/templates/addcontact.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><roundcube:object name="pagetitle" /></title>
<link rel="stylesheet" type="text/css" href="/common.css" />
<roundcube:include file="/includes/links.html" />
<link rel="stylesheet" type="text/css" href="/addresses.css" />
</head>
<body class="iframe">
skins/default/templates/addidentity.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><roundcube:object name="pagetitle" /></title>
<link rel="stylesheet" type="text/css" href="/common.css" />
<roundcube:include file="/includes/links.html" />
<link rel="stylesheet" type="text/css" href="/settings.css" />
</head>
<body>
skins/default/templates/addressbook.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><roundcube:object name="pagetitle" /></title>
<link rel="stylesheet" type="text/css" href="/common.css" />
<roundcube:include file="/includes/links.html" />
<link rel="stylesheet" type="text/css" href="/addresses.css" />
</head>
<body>
skins/default/templates/compose.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>RoundCube|Mail :: <roundcube:label name="compose" /></title>
<link rel="stylesheet" type="text/css" href="/common.css" />
<roundcube:include file="/includes/links.html" />
<link rel="stylesheet" type="text/css" href="/mail.css" />
<script type="text/javascript">
<!--
skins/default/templates/editcontact.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><roundcube:object name="pagetitle" /></title>
<link rel="stylesheet" type="text/css" href="/common.css" />
<roundcube:include file="/includes/links.html" />
<link rel="stylesheet" type="text/css" href="/addresses.css" />
</head>
<body class="iframe">
skins/default/templates/editidentity.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><roundcube:object name="pagetitle" /></title>
<link rel="stylesheet" type="text/css" href="/common.css" />
<roundcube:include file="/includes/links.html" />
<link rel="stylesheet" type="text/css" href="/settings.css" />
</head>
<body>
skins/default/templates/error.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>RoundCube|Mail :: ERROR</title>
<link rel="stylesheet" type="text/css" href="/common.css" />
<roundcube:include file="/includes/links.html" />
</head>
<body>
skins/default/templates/identities.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><roundcube:object name="pagetitle" /></title>
<link rel="stylesheet" type="text/css" href="/common.css" />
<roundcube:include file="/includes/links.html" />
<link rel="stylesheet" type="text/css" href="/settings.css" />
</head>
<body>
skins/default/templates/login.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Welcome to RoundCube|Mail</title>
<link rel="stylesheet" type="text/css" href="/common.css" />
<roundcube:include file="/includes/links.html" />
<style type="text/css">
#login-form
skins/default/templates/mail.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><roundcube:object name="pagetitle" /></title>
<link rel="stylesheet" type="text/css" href="/common.css" />
<roundcube:include file="/includes/links.html" />
<link rel="stylesheet" type="text/css" href="/mail.css" />
</head>
<body>
skins/default/templates/managefolders.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><roundcube:object name="pagetitle" /></title>
<link rel="stylesheet" type="text/css" href="/common.css" />
<roundcube:include file="/includes/links.html" />
<link rel="stylesheet" type="text/css" href="/settings.css" />
</head>
<body>
skins/default/templates/message.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><roundcube:object name="pagetitle" /></title>
<link rel="stylesheet" type="text/css" href="/common.css" />
<roundcube:include file="/includes/links.html" />
<link rel="stylesheet" type="text/css" href="/mail.css" />
</head>
<body>
skins/default/templates/messagepart.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><roundcube:object name="pagetitle" /></title>
<link rel="stylesheet" type="text/css" href="/common.css" />
<roundcube:include file="/includes/links.html" />
<link rel="stylesheet" type="text/css" href="/mail.css" />
</head>
<body class="extwin">
skins/default/templates/settings.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><roundcube:object name="pagetitle" /></title>
<link rel="stylesheet" type="text/css" href="/common.css" />
<roundcube:include file="/includes/links.html" />
<link rel="stylesheet" type="text/css" href="/settings.css" />
</head>
<body>
skins/default/templates/showcontact.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><roundcube:object name="pagetitle" /></title>
<link rel="stylesheet" type="text/css" href="/common.css" />
<roundcube:include file="/includes/links.html" />
<link rel="stylesheet" type="text/css" href="/addresses.css" />
</head>
<body class="iframe">