diff -Nru unity-mail-1.2.2/UnityMail/application.py unity-mail-1.2.4~12.10/UnityMail/application.py --- unity-mail-1.2.2/UnityMail/application.py 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/UnityMail/application.py 2012-12-12 14:42:31.000000000 +0000 @@ -3,12 +3,13 @@ # License: GNU GPL 3 or higher; http://www.gnu.org/licenses/gpl.html app_name = 'unity-mail' -app_version = '1.1' +app_version = '1.2' import imaplib import email import email.header import email.utils +import email.errors import os import sys import shutil @@ -34,7 +35,11 @@ def decode_wrapper(header): """Decodes an Email header, returns a string""" # A hack for headers without a space between decoded name and email - dec = email.header.decode_header(header.replace('=?=<', '=?= <')) + try: + dec = email.header.decode_header(header.replace('=?=<', '=?= <')) + except email.errors.HeaderParseError: + print_error('unity-mail: Exception in decode, skipping') + return header parts = [] for dec_part in dec: if dec_part[1]: @@ -294,7 +299,7 @@ self.host.append(dict_['Host']) try: self.port.append(int(dict_['Port'])) - except: + except ValueError: # Port empty or non-integer self.port.append(993) self.login.append(dict_['Login']) @@ -313,19 +318,16 @@ self.establish_connection(cn) except: return False + try: + res = self.mail_client[cn].login(str(self.login[cn]), str(self.passwd[cn])) + except imaplib.IMAP4.error as e: + print_error(e.args[0].decode()) + sys.exit( + 'unity-mail: Invalid account data provided for connection #{0}; exiting'.format(cn)) else: - try: - res = self.mail_client[cn].login(str(self.login[cn]), str(self.passwd[cn]))[0] - except imaplib.IMAP4.error as e: - sys.exit(e) - else: - print('unity-mail: Connection #{0} established'.format(cn)) - if res == 'OK': - self.notinit[cn]=False - return True - else: - sys.exit( - 'unity-mail: Invalid account data provided for connection #{0}; exiting'.format(cn)) + print('unity-mail: Connection #{0} established'.format(cn)) + self.notinit[cn]=False + return True def raise_error(self, index, frame): raise TimeoutException('Timeout error') @@ -355,7 +357,7 @@ msg = email.message_from_bytes(response_part[1]) message_id = msg['Message-Id'] if message_id == None: - message_id = str(cn)+':'+m + message_id = str(cn)+':'+str(m) existing_message = None for message in self.unread_messages: if message.account_id == cn and message.message_id == message_id: @@ -370,7 +372,7 @@ if timestamp > time.time(): # Message time is larger than the current one timestamp = time.time() - except: + except TypeError: # Failed to get time from message timestamp = time.time() # Number of seconds to number of microseconds @@ -403,8 +405,8 @@ def check_email(self, cn, email): login, host = email.split('@') - return (self.login[cn]==login and - (self.host[cn]==host or self.host[cn]=='imap.'+host)) + return (self.login[cn] in (login, email) + and self.host[cn].endswith(host)) def get_urlid(self, cn): for urlid, url in self.on_click_urls: @@ -452,7 +454,6 @@ signal.alarm(7) try: self.update_single(self.cn, folder_name=folder) - signal.alarm(0) # Cancels alarm except TimeoutException: print_error( 'unity-mail: Timeout error occured in connection #{0}'.format(self.cn)) @@ -470,6 +471,7 @@ except KeyboardInterrupt: self.notinit[self.cn]=True self.handle_keyboard_interrupt() + signal.alarm(0) # Cancels alarm if with_messagingmenu: for msg in self.unread_messages: # Show or hide indicator depending on it's activeness diff -Nru unity-mail-1.2.2/debian/bzr-builddeb.conf unity-mail-1.2.4~12.10/debian/bzr-builddeb.conf --- unity-mail-1.2.2/debian/bzr-builddeb.conf 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/debian/bzr-builddeb.conf 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -[BUILDDEB] -native = True diff -Nru unity-mail-1.2.2/debian/changelog unity-mail-1.2.4~12.10/debian/changelog --- unity-mail-1.2.2/debian/changelog 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/debian/changelog 2013-01-17 15:29:56.000000000 +0000 @@ -1,3 +1,33 @@ +unity-mail (1.2.4~12.10) quantal-proposed; urgency=low + + * Upload to quantal-proposed (LP: #1100808). + + -- Dmitry Shachnev Thu, 17 Jan 2013 19:29:10 +0400 + +unity-mail (1.2.4) raring; urgency=low + + * New bugfix release. + - check_email: correctly handle cases when email is the same as login + (LP: #1088373). + * debian/rules: remove __pycache__ on clean. + + -- Dmitry Shachnev Thu, 10 Jan 2013 19:05:08 +0400 + +unity-mail (1.2.3) raring; urgency=low + + * New bugfix release. + - Fix generation of fallback message-ids. + - Handle header decoding errors, return raw headers on failures. + - Ensure that alarm is always cancelled after folder update + (LP: #1084882). + - Replace "except:" with "except SomeException:" in two places to + ensure that it won't try to handle TimeoutException. + - try_establish_connection: fix error message being never shown by + moving it before sys.exit() call, slightly simplify the code. + * Updated my e-mail address. + + -- Dmitry Shachnev Thu, 06 Dec 2012 20:52:26 +0400 + unity-mail (1.2.2) quantal; urgency=low * New bugfix release (LP: #1061047) diff -Nru unity-mail-1.2.2/debian/control unity-mail-1.2.4~12.10/debian/control --- unity-mail-1.2.2/debian/control 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/debian/control 2012-12-06 16:49:39.000000000 +0000 @@ -1,7 +1,7 @@ Source: unity-mail Section: mail Priority: optional -Maintainer: Dmitry Shachnev +Maintainer: Dmitry Shachnev Build-Depends: debhelper (>= 9), python3-all (>= 3.1.2-7~), imagemagick, gettext Standards-Version: 3.9.4 Homepage: https://launchpad.net/unity-mail diff -Nru unity-mail-1.2.2/debian/rules unity-mail-1.2.4~12.10/debian/rules --- unity-mail-1.2.2/debian/rules 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/debian/rules 2012-12-06 17:26:48.000000000 +0000 @@ -14,7 +14,7 @@ dh $@ --with python3 override_dh_auto_clean: - rm -rf build + rm -rf build UnityMail/__pycache__ override_dh_auto_build: set -ex; for python in $(PYTHON3); do \ diff -Nru unity-mail-1.2.2/po/bg.po unity-mail-1.2.4~12.10/po/bg.po --- unity-mail-1.2.2/po/bg.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/bg.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/ca.po unity-mail-1.2.4~12.10/po/ca.po --- unity-mail-1.2.2/po/ca.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/ca.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/cs.po unity-mail-1.2.4~12.10/po/cs.po --- unity-mail-1.2.2/po/cs.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/cs.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/cy.po unity-mail-1.2.4~12.10/po/cy.po --- unity-mail-1.2.2/po/cy.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/cy.po 2013-01-10 15:00:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : (n != 8 && n != 11) ? " "2 : 3;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/de.po unity-mail-1.2.4~12.10/po/de.po --- unity-mail-1.2.2/po/de.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/de.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/el.po unity-mail-1.2.4~12.10/po/el.po --- unity-mail-1.2.2/po/el.po 1970-01-01 00:00:00.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/el.po 2013-01-10 15:00:34.000000000 +0000 @@ -0,0 +1,138 @@ +# Greek translation for unity-mail +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the unity-mail package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: unity-mail\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-08-13 14:15+0400\n" +"PO-Revision-Date: 2012-09-25 20:36+0000\n" +"Last-Translator: Elias Ps \n" +"Language-Team: Greek \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" + +#: UnityMail/dialog.py:21 +msgid "Unity Mail Preferences" +msgstr "" + +#: UnityMail/dialog.py:31 +msgid "Accounts" +msgstr "" + +#: UnityMail/dialog.py:32 +msgid "URLs" +msgstr "" + +#: UnityMail/dialog.py:33 +msgid "Options" +msgstr "" + +#: UnityMail/dialog.py:55 +msgid "Choose an account" +msgstr "" + +#: UnityMail/dialog.py:75 +msgid "Server data" +msgstr "" + +#: UnityMail/dialog.py:77 +msgid "Account data" +msgstr "" + +#: UnityMail/dialog.py:80 +msgid "Host:" +msgstr "" + +#: UnityMail/dialog.py:81 +msgid "Port:" +msgstr "" + +#: UnityMail/dialog.py:85 +msgid "Login:" +msgstr "" + +#: UnityMail/dialog.py:86 +msgid "Password:" +msgstr "" + +#: UnityMail/dialog.py:112 +msgid "Home:" +msgstr "" + +#: UnityMail/dialog.py:114 +msgid "Compose:" +msgstr "" + +#: UnityMail/dialog.py:116 +msgid "Inbox:" +msgstr "" + +#: UnityMail/dialog.py:118 +msgid "Sent:" +msgstr "" + +#: UnityMail/dialog.py:141 +msgid "Refresh interval (seconds):" +msgstr "" + +#: UnityMail/dialog.py:143 +msgid "Enable notifications:" +msgstr "" + +#: UnityMail/dialog.py:145 +msgid "Show icon in notifications:" +msgstr "" + +#: UnityMail/dialog.py:148 +msgid "Change color of messaging menu icon:" +msgstr "" + +#: UnityMail/dialog.py:151 +msgid "Hide count when it is zero:" +msgstr "" + +#: UnityMail/dialog.py:154 +msgid "Execute this command on messages receive:" +msgstr "" + +#: UnityMail/application.py:108 +msgid "Mark all as read" +msgstr "" + +#: UnityMail/application.py:351 +msgid "No subject" +msgstr "" + +#: UnityMail/application.py:461 +#, python-format +msgid "You have %d unread mail" +msgid_plural "You have %d unread mails" +msgstr[0] "" +msgstr[1] "" + +#: UnityMail/application.py:470 +#, python-format +msgid "from %(t0)s, %(t1)s and others" +msgstr "" + +#: UnityMail/application.py:472 +#, python-format +msgid "from %(t0)s and %(t1)s" +msgstr "" + +#: UnityMail/application.py:474 +#, python-format +msgid "from %s" +msgstr "" + +#: UnityMail/application.py:488 +#, python-format +msgid "New mail from %s" +msgstr "" diff -Nru unity-mail-1.2.2/po/en_AU.po unity-mail-1.2.4~12.10/po/en_AU.po --- unity-mail-1.2.2/po/en_AU.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/en_AU.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/en_CA.po unity-mail-1.2.4~12.10/po/en_CA.po --- unity-mail-1.2.2/po/en_CA.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/en_CA.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/en_GB.po unity-mail-1.2.4~12.10/po/en_GB.po --- unity-mail-1.2.2/po/en_GB.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/en_GB.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/es.po unity-mail-1.2.4~12.10/po/es.po --- unity-mail-1.2.2/po/es.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/es.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/et.po unity-mail-1.2.4~12.10/po/et.po --- unity-mail-1.2.2/po/et.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/et.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/fi.po unity-mail-1.2.4~12.10/po/fi.po --- unity-mail-1.2.2/po/fi.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/fi.po 2013-01-10 15:00:34.000000000 +0000 @@ -8,15 +8,15 @@ "Project-Id-Version: unity-mail\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-08-13 14:15+0400\n" -"PO-Revision-Date: 2011-11-08 10:10+0000\n" -"Last-Translator: Jiri Grönroos \n" +"PO-Revision-Date: 2012-11-07 19:43+0000\n" +"Last-Translator: Aleksi Kinnunen \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" @@ -80,7 +80,7 @@ #: UnityMail/dialog.py:141 msgid "Refresh interval (seconds):" -msgstr "Päivitysväli (sekunteja):" +msgstr "Päivitysväli (sekunteina):" #: UnityMail/dialog.py:143 msgid "Enable notifications:" diff -Nru unity-mail-1.2.2/po/fr.po unity-mail-1.2.4~12.10/po/fr.po --- unity-mail-1.2.2/po/fr.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/fr.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/gl.po unity-mail-1.2.4~12.10/po/gl.po --- unity-mail-1.2.2/po/gl.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/gl.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/hr.po unity-mail-1.2.4~12.10/po/hr.po --- unity-mail-1.2.2/po/hr.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/hr.po 2013-01-10 15:00:34.000000000 +0000 @@ -8,7 +8,7 @@ "Project-Id-Version: unity-mail\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-08-13 14:15+0400\n" -"PO-Revision-Date: 2011-08-05 21:01+0000\n" +"PO-Revision-Date: 2012-11-09 21:51+0000\n" "Last-Translator: Saša Teković \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" @@ -16,24 +16,24 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" -msgstr "" +msgstr "Unity Mail osobitosti" #: UnityMail/dialog.py:31 msgid "Accounts" -msgstr "" +msgstr "Korisnički računi" #: UnityMail/dialog.py:32 msgid "URLs" -msgstr "" +msgstr "URL-ovi" #: UnityMail/dialog.py:33 msgid "Options" -msgstr "" +msgstr "Mogućnosti" #: UnityMail/dialog.py:55 msgid "Choose an account" @@ -65,73 +65,74 @@ #: UnityMail/dialog.py:112 msgid "Home:" -msgstr "" +msgstr "Početna:" #: UnityMail/dialog.py:114 msgid "Compose:" -msgstr "" +msgstr "Nova poruka:" #: UnityMail/dialog.py:116 msgid "Inbox:" -msgstr "" +msgstr "Dolazno:" #: UnityMail/dialog.py:118 msgid "Sent:" -msgstr "" +msgstr "Poslano:" #: UnityMail/dialog.py:141 msgid "Refresh interval (seconds):" -msgstr "" +msgstr "Interval provjera (u sekundama):" #: UnityMail/dialog.py:143 msgid "Enable notifications:" -msgstr "" +msgstr "Omogući obavijesti" #: UnityMail/dialog.py:145 msgid "Show icon in notifications:" -msgstr "" +msgstr "Prikaži ikonu u obavijestima:" #: UnityMail/dialog.py:148 msgid "Change color of messaging menu icon:" -msgstr "" +msgstr "Promijeni boju ikone u izborniku:" #: UnityMail/dialog.py:151 msgid "Hide count when it is zero:" -msgstr "" +msgstr "Sakrij broj poruka kada se dosegne nula:" #: UnityMail/dialog.py:154 msgid "Execute this command on messages receive:" -msgstr "" +msgstr "Izvrši ovu naredbu kada stigne nova poruka:" #: UnityMail/application.py:108 msgid "Mark all as read" -msgstr "" +msgstr "Označi sve kao pročitano" #: UnityMail/application.py:351 msgid "No subject" -msgstr "" +msgstr "Nema naslova" #: UnityMail/application.py:461 #, python-format msgid "You have %d unread mail" msgid_plural "You have %d unread mails" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Imate %d nepročitanu poruku" +msgstr[1] "Imate %d nepročitane poruke" +msgstr[2] "Imate %d nepročitanih poruka" #: UnityMail/application.py:470 #, python-format msgid "from %(t0)s, %(t1)s and others" -msgstr "" +msgstr "od %(t0)s, %(t1)s i ostalih" #: UnityMail/application.py:472 #, python-format msgid "from %(t0)s and %(t1)s" -msgstr "" +msgstr "od %(t0)s i %(t1)s" #: UnityMail/application.py:474 #, python-format msgid "from %s" -msgstr "" +msgstr "od %s" #: UnityMail/application.py:488 #, python-format diff -Nru unity-mail-1.2.2/po/hu.po unity-mail-1.2.4~12.10/po/hu.po --- unity-mail-1.2.2/po/hu.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/hu.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/it.po unity-mail-1.2.4~12.10/po/it.po --- unity-mail-1.2.2/po/it.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/it.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/ja.po unity-mail-1.2.4~12.10/po/ja.po --- unity-mail-1.2.2/po/ja.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/ja.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/kk.po unity-mail-1.2.4~12.10/po/kk.po --- unity-mail-1.2.2/po/kk.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/kk.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/lt.po unity-mail-1.2.4~12.10/po/lt.po --- unity-mail-1.2.2/po/lt.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/lt.po 2013-01-10 15:00:34.000000000 +0000 @@ -9,15 +9,15 @@ "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-08-13 14:15+0400\n" "PO-Revision-Date: 2011-08-11 13:18+0000\n" -"Last-Translator: njonaitis \n" +"Last-Translator: Naglis Jonaitis \n" "Language-Team: Lithuanian \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%10==1 && n%100!=11 ? 0 : n%10>=2 && " "(n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/ms.po unity-mail-1.2.4~12.10/po/ms.po --- unity-mail-1.2.2/po/ms.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/ms.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/nl.po unity-mail-1.2.4~12.10/po/nl.po --- unity-mail-1.2.2/po/nl.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/nl.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/nn.po unity-mail-1.2.4~12.10/po/nn.po --- unity-mail-1.2.2/po/nn.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/nn.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" "Language: nn\n" #: UnityMail/dialog.py:21 diff -Nru unity-mail-1.2.2/po/oc.po unity-mail-1.2.4~12.10/po/oc.po --- unity-mail-1.2.2/po/oc.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/oc.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/pl.po unity-mail-1.2.4~12.10/po/pl.po --- unity-mail-1.2.2/po/pl.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/pl.po 2013-01-10 15:00:34.000000000 +0000 @@ -17,8 +17,8 @@ "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-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/pt.po unity-mail-1.2.4~12.10/po/pt.po --- unity-mail-1.2.2/po/pt.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/pt.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/pt_BR.po unity-mail-1.2.4~12.10/po/pt_BR.po --- unity-mail-1.2.2/po/pt_BR.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/pt_BR.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/ru.po unity-mail-1.2.4~12.10/po/ru.po --- unity-mail-1.2.2/po/ru.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/ru.po 2013-01-10 15:00:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/sk.po unity-mail-1.2.4~12.10/po/sk.po --- unity-mail-1.2.2/po/sk.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/sk.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/sr.po unity-mail-1.2.4~12.10/po/sr.po --- unity-mail-1.2.2/po/sr.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/sr.po 2013-01-10 15:00:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:03+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/tr.po unity-mail-1.2.4~12.10/po/tr.po --- unity-mail-1.2.2/po/tr.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/tr.po 2013-01-10 15:00:34.000000000 +0000 @@ -8,15 +8,15 @@ "Project-Id-Version: unity-mail\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-08-13 14:15+0400\n" -"PO-Revision-Date: 2012-05-03 14:40+0000\n" -"Last-Translator: sonmez \n" +"PO-Revision-Date: 2012-11-22 12:39+0000\n" +"Last-Translator: Sadi Yumuşak \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" @@ -32,7 +32,7 @@ #: UnityMail/dialog.py:33 msgid "Options" -msgstr "Ayarlar" +msgstr "Seçenekler" #: UnityMail/dialog.py:55 msgid "Choose an account" @@ -40,7 +40,7 @@ #: UnityMail/dialog.py:75 msgid "Server data" -msgstr "" +msgstr "Sunucu bilgileri" #: UnityMail/dialog.py:77 msgid "Account data" @@ -100,7 +100,7 @@ #: UnityMail/dialog.py:154 msgid "Execute this command on messages receive:" -msgstr "" +msgstr "Mesaj alındığında bu komutu çalıştır" #: UnityMail/application.py:108 msgid "Mark all as read" @@ -114,8 +114,7 @@ #, python-format msgid "You have %d unread mail" msgid_plural "You have %d unread mails" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d adet okunmamış postanız var" #: UnityMail/application.py:470 #, python-format diff -Nru unity-mail-1.2.2/po/uk.po unity-mail-1.2.4~12.10/po/uk.po --- unity-mail-1.2.2/po/uk.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/uk.po 2013-01-10 15:00:34.000000000 +0000 @@ -16,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2012-09-12 04:50+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #: UnityMail/dialog.py:21 msgid "Unity Mail Preferences" diff -Nru unity-mail-1.2.2/po/zh_CN.po unity-mail-1.2.4~12.10/po/zh_CN.po --- unity-mail-1.2.2/po/zh_CN.po 1970-01-01 00:00:00.000000000 +0000 +++ unity-mail-1.2.4~12.10/po/zh_CN.po 2013-01-10 15:00:34.000000000 +0000 @@ -0,0 +1,137 @@ +# Chinese (Simplified) translation for unity-mail +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the unity-mail package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: unity-mail\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-08-13 14:15+0400\n" +"PO-Revision-Date: 2012-11-02 10:31+0000\n" +"Last-Translator: Kelvin Jiao \n" +"Language-Team: Chinese (Simplified) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" + +#: UnityMail/dialog.py:21 +msgid "Unity Mail Preferences" +msgstr "Unity邮件偏好设置" + +#: UnityMail/dialog.py:31 +msgid "Accounts" +msgstr "账户" + +#: UnityMail/dialog.py:32 +msgid "URLs" +msgstr "URLs" + +#: UnityMail/dialog.py:33 +msgid "Options" +msgstr "选项" + +#: UnityMail/dialog.py:55 +msgid "Choose an account" +msgstr "选择账户" + +#: UnityMail/dialog.py:75 +msgid "Server data" +msgstr "服务器信息" + +#: UnityMail/dialog.py:77 +msgid "Account data" +msgstr "帐户信息" + +#: UnityMail/dialog.py:80 +msgid "Host:" +msgstr "服务器地址:" + +#: UnityMail/dialog.py:81 +msgid "Port:" +msgstr "端口:" + +#: UnityMail/dialog.py:85 +msgid "Login:" +msgstr "用户名:" + +#: UnityMail/dialog.py:86 +msgid "Password:" +msgstr "密码:" + +#: UnityMail/dialog.py:112 +msgid "Home:" +msgstr "主页:" + +#: UnityMail/dialog.py:114 +msgid "Compose:" +msgstr "撰写邮件:" + +#: UnityMail/dialog.py:116 +msgid "Inbox:" +msgstr "收件箱:" + +#: UnityMail/dialog.py:118 +msgid "Sent:" +msgstr "已发邮件:" + +#: UnityMail/dialog.py:141 +msgid "Refresh interval (seconds):" +msgstr "刷新间隔(秒):" + +#: UnityMail/dialog.py:143 +msgid "Enable notifications:" +msgstr "启用通知:" + +#: UnityMail/dialog.py:145 +msgid "Show icon in notifications:" +msgstr "在通知中显示图标:" + +#: UnityMail/dialog.py:148 +msgid "Change color of messaging menu icon:" +msgstr "改变消息菜单图标颜色:" + +#: UnityMail/dialog.py:151 +msgid "Hide count when it is zero:" +msgstr "当新邮件为零时隐藏计数:" + +#: UnityMail/dialog.py:154 +msgid "Execute this command on messages receive:" +msgstr "当收到信息时执行此命令:" + +#: UnityMail/application.py:108 +msgid "Mark all as read" +msgstr "全部标记为已读" + +#: UnityMail/application.py:351 +msgid "No subject" +msgstr "无主题" + +#: UnityMail/application.py:461 +#, python-format +msgid "You have %d unread mail" +msgid_plural "You have %d unread mails" +msgstr[0] "您有%d封未读邮件" + +#: UnityMail/application.py:470 +#, python-format +msgid "from %(t0)s, %(t1)s and others" +msgstr "来自%(t0)s,%(t1)s与其他人" + +#: UnityMail/application.py:472 +#, python-format +msgid "from %(t0)s and %(t1)s" +msgstr "来自%(t0)s与%(t1)s" + +#: UnityMail/application.py:474 +#, python-format +msgid "from %s" +msgstr "来自%s" + +#: UnityMail/application.py:488 +#, python-format +msgid "New mail from %s" +msgstr "%s 发来的新邮件" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/bg.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/bg.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/bg.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/bg.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/ca.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/ca.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/ca.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/ca.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/cs.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/cs.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/cs.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/cs.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/de.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/de.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/de.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/de.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/el.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/el.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/el.po 1970-01-01 00:00:00.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/el.po 2013-01-10 15:00:34.000000000 +0000 @@ -0,0 +1,26 @@ +# Greek translation for unity-mail +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the unity-mail package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: unity-mail\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2011-07-24 15:59+0000\n" +"PO-Revision-Date: 2012-10-07 15:21+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Greek \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" + +#. [Desktop Entry] Comment +msgid "Display notifications about new mail" +msgstr "" + +#. [Desktop Entry] Name +msgid "Unity Mail (service)" +msgstr "" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/en_AU.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/en_AU.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/en_AU.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/en_AU.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/en_CA.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/en_CA.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/en_CA.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/en_CA.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/en_GB.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/en_GB.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/en_GB.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/en_GB.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/es.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/es.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/es.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/es.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/fi.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/fi.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/fi.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/fi.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/fr.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/fr.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/fr.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/fr.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/gl.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/gl.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/gl.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/gl.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/hr.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/hr.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/hr.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/hr.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/hu.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/hu.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/hu.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/hu.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/it.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/it.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/it.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/it.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/ja.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/ja.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/ja.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/ja.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/kk.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/kk.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/kk.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/kk.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/lt.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/lt.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/lt.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/lt.po 2013-01-10 15:00:34.000000000 +0000 @@ -9,13 +9,13 @@ "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-07-24 15:59+0000\n" "PO-Revision-Date: 2011-08-11 13:16+0000\n" -"Last-Translator: njonaitis \n" +"Last-Translator: Naglis Jonaitis \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/ms.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/ms.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/ms.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/ms.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/mus.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/mus.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/mus.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/mus.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/nl.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/nl.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/nl.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/nl.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/nn.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/nn.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/nn.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/nn.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/oc.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/oc.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/oc.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/oc.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/pl.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/pl.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/pl.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/pl.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/pt.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/pt.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/pt.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/pt.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/pt_BR.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/pt_BR.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/pt_BR.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/pt_BR.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/ru.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/ru.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/ru.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/ru.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/sk.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/sk.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/sk.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/sk.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/sr.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/sr.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/sr.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/sr.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/tr.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/tr.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/tr.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/tr.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/uk.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/uk.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/uk.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/uk.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Entry] Comment msgid "Display notifications about new mail" diff -Nru unity-mail-1.2.2/po.unity-mail-autostart.desktop/zh_CN.po unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/zh_CN.po --- unity-mail-1.2.2/po.unity-mail-autostart.desktop/zh_CN.po 1970-01-01 00:00:00.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail-autostart.desktop/zh_CN.po 2013-01-10 15:00:34.000000000 +0000 @@ -0,0 +1,26 @@ +# Chinese (Simplified) translation for unity-mail +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the unity-mail package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: unity-mail\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2011-07-24 15:59+0000\n" +"PO-Revision-Date: 2012-11-02 09:45+0000\n" +"Last-Translator: Kelvin Jiao \n" +"Language-Team: Chinese (Simplified) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" + +#. [Desktop Entry] Comment +msgid "Display notifications about new mail" +msgstr "显示新邮件通知" + +#. [Desktop Entry] Name +msgid "Unity Mail (service)" +msgstr "Unity邮件 (服务)" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/bg.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/bg.po --- unity-mail-1.2.2/po.unity-mail.desktop/bg.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/bg.po 2013-01-10 15:00:34.000000000 +0000 @@ -8,14 +8,14 @@ "Project-Id-Version: unity-mail\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-07-24 15:59+0000\n" -"PO-Revision-Date: 2012-09-11 19:32+0000\n" +"PO-Revision-Date: 2012-10-08 18:38+0000\n" "Last-Translator: spacy01 \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" @@ -39,4 +39,4 @@ #. [Desktop Entry] Name msgid "Unity Mail" -msgstr "Unity Mail" +msgstr "Известяване за поща" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/ca.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/ca.po --- unity-mail-1.2.2/po.unity-mail.desktop/ca.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/ca.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/cs.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/cs.po --- unity-mail-1.2.2/po.unity-mail.desktop/cs.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/cs.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/de.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/de.po --- unity-mail-1.2.2/po.unity-mail.desktop/de.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/de.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/en_AU.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/en_AU.po --- unity-mail-1.2.2/po.unity-mail.desktop/en_AU.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/en_AU.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/en_CA.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/en_CA.po --- unity-mail-1.2.2/po.unity-mail.desktop/en_CA.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/en_CA.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/en_GB.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/en_GB.po --- unity-mail-1.2.2/po.unity-mail.desktop/en_GB.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/en_GB.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/es.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/es.po --- unity-mail-1.2.2/po.unity-mail.desktop/es.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/es.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/et.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/et.po --- unity-mail-1.2.2/po.unity-mail.desktop/et.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/et.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/fi.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/fi.po --- unity-mail-1.2.2/po.unity-mail.desktop/fi.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/fi.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/fr.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/fr.po --- unity-mail-1.2.2/po.unity-mail.desktop/fr.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/fr.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/gl.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/gl.po --- unity-mail-1.2.2/po.unity-mail.desktop/gl.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/gl.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/hr.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/hr.po --- unity-mail-1.2.2/po.unity-mail.desktop/hr.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/hr.po 2013-01-10 15:00:34.000000000 +0000 @@ -8,14 +8,14 @@ "Project-Id-Version: unity-mail\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-07-24 15:59+0000\n" -"PO-Revision-Date: 2011-08-04 21:06+0000\n" -"Last-Translator: Miroslav Matejaš \n" +"PO-Revision-Date: 2012-11-09 21:47+0000\n" +"Last-Translator: Saša Teković \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" @@ -31,7 +31,7 @@ #. [Desktop Entry] Comment msgid "Mail notifications and count for Unity" -msgstr "" +msgstr "Obavijesti o novim porukama e-pošte za Unity" #. [Desktop Action Sent] Name msgid "Sent" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/hu.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/hu.po --- unity-mail-1.2.2/po.unity-mail.desktop/hu.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/hu.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/it.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/it.po --- unity-mail-1.2.2/po.unity-mail.desktop/it.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/it.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-24 04:54+0000\n" -"X-Generator: Launchpad (build 15985)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/ja.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/ja.po --- unity-mail-1.2.2/po.unity-mail.desktop/ja.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/ja.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/kk.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/kk.po --- unity-mail-1.2.2/po.unity-mail.desktop/kk.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/kk.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/lt.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/lt.po --- unity-mail-1.2.2/po.unity-mail.desktop/lt.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/lt.po 2013-01-10 15:00:34.000000000 +0000 @@ -9,13 +9,13 @@ "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-07-24 15:59+0000\n" "PO-Revision-Date: 2011-08-11 13:15+0000\n" -"Last-Translator: njonaitis \n" +"Last-Translator: Naglis Jonaitis \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/ms.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/ms.po --- unity-mail-1.2.2/po.unity-mail.desktop/ms.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/ms.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/mus.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/mus.po --- unity-mail-1.2.2/po.unity-mail.desktop/mus.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/mus.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/nl.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/nl.po --- unity-mail-1.2.2/po.unity-mail.desktop/nl.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/nl.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/nn.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/nn.po --- unity-mail-1.2.2/po.unity-mail.desktop/nn.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/nn.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/oc.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/oc.po --- unity-mail-1.2.2/po.unity-mail.desktop/oc.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/oc.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/pl.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/pl.po --- unity-mail-1.2.2/po.unity-mail.desktop/pl.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/pl.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/pt.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/pt.po --- unity-mail-1.2.2/po.unity-mail.desktop/pt.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/pt.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/pt_BR.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/pt_BR.po --- unity-mail-1.2.2/po.unity-mail.desktop/pt_BR.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/pt_BR.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/ru.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/ru.po --- unity-mail-1.2.2/po.unity-mail.desktop/ru.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/ru.po 2013-01-10 15:00:34.000000000 +0000 @@ -15,8 +15,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/sk.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/sk.po --- unity-mail-1.2.2/po.unity-mail.desktop/sk.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/sk.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/sr.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/sr.po --- unity-mail-1.2.2/po.unity-mail.desktop/sr.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/sr.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/tr.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/tr.po --- unity-mail-1.2.2/po.unity-mail.desktop/tr.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/tr.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/uk.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/uk.po --- unity-mail-1.2.2/po.unity-mail.desktop/uk.po 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/uk.po 2013-01-10 15:00:34.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-09-12 04:51+0000\n" -"X-Generator: Launchpad (build 15930)\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" #. [Desktop Action Change] Name msgid "Change accounts details" diff -Nru unity-mail-1.2.2/po.unity-mail.desktop/zh_CN.po unity-mail-1.2.4~12.10/po.unity-mail.desktop/zh_CN.po --- unity-mail-1.2.2/po.unity-mail.desktop/zh_CN.po 1970-01-01 00:00:00.000000000 +0000 +++ unity-mail-1.2.4~12.10/po.unity-mail.desktop/zh_CN.po 2013-01-10 15:00:34.000000000 +0000 @@ -0,0 +1,42 @@ +# Chinese (Simplified) translation for unity-mail +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the unity-mail package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: unity-mail\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2011-07-24 15:59+0000\n" +"PO-Revision-Date: 2012-11-02 09:38+0000\n" +"Last-Translator: Kelvin Jiao \n" +"Language-Team: Chinese (Simplified) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2012-12-17 05:04+0000\n" +"X-Generator: Launchpad (build 16372)\n" + +#. [Desktop Action Change] Name +msgid "Change accounts details" +msgstr "更改帐号详情" + +#. [Desktop Action Compose] Name +msgid "Compose Mail" +msgstr "撰写邮件" + +#. [Desktop Action Inbox] Name +msgid "Inbox" +msgstr "收件箱" + +#. [Desktop Entry] Comment +msgid "Mail notifications and count for Unity" +msgstr "Unity下的邮件通知与计数工具" + +#. [Desktop Action Sent] Name +msgid "Sent" +msgstr "已发邮件" + +#. [Desktop Entry] Name +msgid "Unity Mail" +msgstr "Unity 邮件" diff -Nru unity-mail-1.2.2/setup.py unity-mail-1.2.4~12.10/setup.py --- unity-mail-1.2.2/setup.py 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/setup.py 2012-12-12 14:42:31.000000000 +0000 @@ -3,7 +3,7 @@ from distutils.core import setup setup(name='UnityMail', - version='1.1', + version='1.2', description='Mail notifications and count for Unity', author='Dmitry Shachnev', author_email='mitya57@gmail.com', diff -Nru unity-mail-1.2.2/unity-mail-autostart.desktop unity-mail-1.2.4~12.10/unity-mail-autostart.desktop --- unity-mail-1.2.2/unity-mail-autostart.desktop 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/unity-mail-autostart.desktop 2013-01-10 15:05:05.000000000 +0000 @@ -26,6 +26,7 @@ Name[sr]=Пошта Унитија (услуга) Name[tr]=Unity Mail (hizmet) Name[uk]=Unity Mail (сервіс) +Name[zh_CN]=Unity邮件 (服务) Comment=Display notifications about new mail Comment[bg]=Покажи известия при ново писмо Comment[ca]=Mostra notifications quan hi hagi correu nou @@ -54,6 +55,7 @@ Comment[sr]=Приказује обавештења о новој пошти Comment[tr]=Yeni mektuplar için bildirimleri göster Comment[uk]=Показувати спливаючі повідомлення про нову пошту +Comment[zh_CN]=显示新邮件通知 Icon=unity-mail Exec=unity-mail Type=Application diff -Nru unity-mail-1.2.2/unity-mail.desktop unity-mail-1.2.4~12.10/unity-mail.desktop --- unity-mail-1.2.2/unity-mail.desktop 2012-10-03 21:21:03.000000000 +0000 +++ unity-mail-1.2.4~12.10/unity-mail.desktop 2013-01-10 15:05:05.000000000 +0000 @@ -27,6 +27,7 @@ Name[sr]=Пошта Унитија Name[tr]=Unity Mail Name[uk]=Unity Mail +Name[zh_CN]=Unity 邮件 Comment=Mail notifications and count for Unity Comment[bg]=Известяване и брояч на писма за Unity Comment[ca]=Notificació de correus i recompte per l'Unity @@ -36,6 +37,7 @@ Comment[fi]=Ilmoitukset ja lukumäärät saapuvasta postista Unity-työpöydälle Comment[fr]=Notifications et compteur de courriel pour Unity Comment[gl]=Notificacións de correo e contador para Unity +Comment[hr]=Obavijesti o novim porukama e-pošte za Unity Comment[hu]=Levélértesítő a Unityhez Comment[it]=Notifiche nuova mail e messaggi non letti per Unity Comment[ms]=Pemberitahuan dan kiraan mel untuk Unity @@ -46,6 +48,7 @@ Comment[pt_BR]=Notificações e contagem de e-mails para o Unity Comment[ru]=Уведомления и счётчик писем для Unity Comment[tr]=Unity için mektup bildirimi ve sayım +Comment[zh_CN]=Unity下的邮件通知与计数工具 Icon=unity-mail Exec=um-url Home Type=Application @@ -81,6 +84,7 @@ Name[sr]=Саставите поруку Name[tr]=Mektup Yaz Name[uk]=Написати листа +Name[zh_CN]=撰写邮件 Exec=um-url Compose [Desktop Action Inbox] @@ -112,6 +116,7 @@ Name[sr]=Пријемно сандуче Name[tr]=Gelenler Name[uk]=Вхідні +Name[zh_CN]=收件箱 Exec=um-url Inbox NotShowIn=Messaging Menu; @@ -144,6 +149,7 @@ Name[sr]=Послато Name[tr]=Gönderilenler Name[uk]=Надіслані +Name[zh_CN]=已发邮件 Exec=um-url Sent NotShowIn=Messaging Menu; @@ -176,4 +182,5 @@ Name[sr]=Измените детаље налога Name[tr]=Hesap detaylarını değiştir Name[uk]=Облікові записи +Name[zh_CN]=更改帐号详情 Exec=um-config