[Checkins] SVN: z3ext.preferences/trunk/ Added translations: ru, nl

Nikolay Kim fafhrd at datacom.kz
Wed Oct 22 04:21:32 EDT 2008


Log message for revision 92462:
  Added translations: ru, nl

Changed:
  U   z3ext.preferences/trunk/CHANGES.txt
  U   z3ext.preferences/trunk/buildout.cfg
  D   z3ext.preferences/trunk/i18ncheck.in
  A   z3ext.preferences/trunk/scripts/
  A   z3ext.preferences/trunk/scripts/i18nall.in
  A   z3ext.preferences/trunk/scripts/i18ncheck.in
  U   z3ext.preferences/trunk/setup.py
  A   z3ext.preferences/trunk/src/z3ext/preferences/locales/nl/
  A   z3ext.preferences/trunk/src/z3ext/preferences/locales/nl/LC_MESSAGES/
  A   z3ext.preferences/trunk/src/z3ext/preferences/locales/nl/LC_MESSAGES/z3ext.preferences.mo
  A   z3ext.preferences/trunk/src/z3ext/preferences/locales/nl/LC_MESSAGES/z3ext.preferences.po
  A   z3ext.preferences/trunk/src/z3ext/preferences/locales/ru/
  A   z3ext.preferences/trunk/src/z3ext/preferences/locales/ru/LC_MESSAGES/
  A   z3ext.preferences/trunk/src/z3ext/preferences/locales/ru/LC_MESSAGES/z3ext.preferences.mo
  A   z3ext.preferences/trunk/src/z3ext/preferences/locales/ru/LC_MESSAGES/z3ext.preferences.po
  U   z3ext.preferences/trunk/src/z3ext/preferences/locales/z3ext.preferences.pot

-=-
Modified: z3ext.preferences/trunk/CHANGES.txt
===================================================================
--- z3ext.preferences/trunk/CHANGES.txt	2008-10-22 07:35:13 UTC (rev 92461)
+++ z3ext.preferences/trunk/CHANGES.txt	2008-10-22 08:21:32 UTC (rev 92462)
@@ -2,6 +2,12 @@
 CHANGES
 =======
 
+1.4.1 (2008-10-22)
+------------------
+
+- Added translations: ru, nl
+
+
 1.4.0 (2008-10-15)
 ------------------
 

Modified: z3ext.preferences/trunk/buildout.cfg
===================================================================
--- z3ext.preferences/trunk/buildout.cfg	2008-10-22 07:35:13 UTC (rev 92461)
+++ z3ext.preferences/trunk/buildout.cfg	2008-10-22 08:21:32 UTC (rev 92462)
@@ -1,12 +1,7 @@
 [buildout]
 develop = .
-parts = test coverage-test coverage-report i18n i18ncheck i18ndude
-versions = versions
-extends = http://download.zope.org/zope3.4/versions.cfg
+parts = test coverage-test coverage-report i18n i18nall i18ncheck i18ndude
 
-[versions]
-z3c.zrtresource = 1.1.0
-
 [test]
 recipe = zc.recipe.testrunner
 eggs = z3ext.preferences [test]
@@ -45,9 +40,14 @@
     <include package="z3ext.preferences" />
   </configure>
 
+[i18nall]
+recipe = buildout_script
+template_dir = ${buildout:directory}/scripts/
+template = i18nall.in
+
 [i18ncheck]
 recipe = buildout_script
-template_dir = ${buildout:directory}/
+template_dir = ${buildout:directory}/scripts/
 template = i18ncheck.in
 
 [i18ndude]

Deleted: z3ext.preferences/trunk/i18ncheck.in
===================================================================
--- z3ext.preferences/trunk/i18ncheck.in	2008-10-22 07:35:13 UTC (rev 92461)
+++ z3ext.preferences/trunk/i18ncheck.in	2008-10-22 08:21:32 UTC (rev 92462)
@@ -1,4 +0,0 @@
-#!/bin/sh
-# Startup or shutdown buildbot
-
-bin/i18ndude find-untranslated ./ | grep z3ext.preferences | less

Added: z3ext.preferences/trunk/scripts/i18nall.in
===================================================================
--- z3ext.preferences/trunk/scripts/i18nall.in	                        (rev 0)
+++ z3ext.preferences/trunk/scripts/i18nall.in	2008-10-22 08:21:32 UTC (rev 92462)
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+update_egg()
+{
+    echo "Start update $@"
+
+    bin/i18nextract && \
+    bin/i18nmergeall && \
+    msgfmt ${1}/locales/nl/LC_MESSAGES/${2}.po -o ${1}/locales/nl/LC_MESSAGES/${2}.mo --no-hash && \
+    msgfmt ${1}/locales/ru/LC_MESSAGES/${2}.po -o ${1}/locales/ru/LC_MESSAGES/${2}.mo --no-hash
+}
+
+update_egg src/z3ext/preferences z3ext.preferences;


Property changes on: z3ext.preferences/trunk/scripts/i18nall.in
___________________________________________________________________
Name: svn:executable
   + *

Copied: z3ext.preferences/trunk/scripts/i18ncheck.in (from rev 92458, z3ext.preferences/trunk/i18ncheck.in)
===================================================================
--- z3ext.preferences/trunk/scripts/i18ncheck.in	                        (rev 0)
+++ z3ext.preferences/trunk/scripts/i18ncheck.in	2008-10-22 08:21:32 UTC (rev 92462)
@@ -0,0 +1,4 @@
+#!/bin/sh
+# Startup or shutdown buildbot
+
+bin/i18ndude find-untranslated ./ | grep z3ext.preferences | less

Modified: z3ext.preferences/trunk/setup.py
===================================================================
--- z3ext.preferences/trunk/setup.py	2008-10-22 07:35:13 UTC (rev 92461)
+++ z3ext.preferences/trunk/setup.py	2008-10-22 08:21:32 UTC (rev 92462)
@@ -21,7 +21,7 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-version='1.4.1dev'
+version='1.4.1'
 
 
 setup(name = 'z3ext.preferences',

Added: z3ext.preferences/trunk/src/z3ext/preferences/locales/nl/LC_MESSAGES/z3ext.preferences.mo
===================================================================
(Binary files differ)


Property changes on: z3ext.preferences/trunk/src/z3ext/preferences/locales/nl/LC_MESSAGES/z3ext.preferences.mo
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: z3ext.preferences/trunk/src/z3ext/preferences/locales/nl/LC_MESSAGES/z3ext.preferences.po
===================================================================
--- z3ext.preferences/trunk/src/z3ext/preferences/locales/nl/LC_MESSAGES/z3ext.preferences.po	                        (rev 0)
+++ z3ext.preferences/trunk/src/z3ext/preferences/locales/nl/LC_MESSAGES/z3ext.preferences.po	2008-10-22 08:21:32 UTC (rev 92462)
@@ -0,0 +1,59 @@
+# #############################################################################
+#
+# Copyright (c) 2003-2004 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+# #############################################################################
+msgid ""
+msgstr ""
+"Project-Id-Version: Development/Unknown\n"
+"POT-Creation-Date: Wed Oct 22 13:53:30 2008\n"
+"PO-Revision-Date: 2008-10-14 17:25+0100\n"
+"Last-Translator: F. Kooman <fkooman at tuxed.net>\n"
+"Language-Team: Zope 3 Developers <zope3-dev at zope.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: zope/app/locales/extract.py\n"
+
+#: src/z3ext/preferences/browser/breadcrumb.py:30
+msgid "Preferences"
+msgstr "Voorkeuren"
+
+#: src/z3ext/preferences/configure.zcml:13
+msgid "Preference group owner"
+msgstr "Eigenaar van groep voorkeuren "
+
+#: src/z3ext/preferences/configure.zcml:51
+msgid "These are all the preferences related to common portal settings."
+msgstr ""
+"Dit zijn alle voorkeuren met betrekking tot gemeenschappelijk website "
+"instellingen."
+
+#: src/z3ext/preferences/configure.zcml:51
+msgid "Portal preferences"
+msgstr "Website voorkeuren"
+
+#: src/z3ext/preferences/configure.zcml:9
+msgid "Modify preference"
+msgstr "Voorkeur wijzigen"
+
+#: src/z3ext/preferences/preferencetype.py:194
+msgid "Field is readonly"
+msgstr ""
+
+#: src/z3ext/preferences/root.py:31
+msgid "Personal preferences"
+msgstr "Persoonlijke voorkeuren"
+
+#: src/z3ext/preferences/root.py:32
+msgid "This area allows you to change personal preferences."
+msgstr "Configureren van de vormgeving van uw website "
+

Added: z3ext.preferences/trunk/src/z3ext/preferences/locales/ru/LC_MESSAGES/z3ext.preferences.mo
===================================================================
(Binary files differ)


Property changes on: z3ext.preferences/trunk/src/z3ext/preferences/locales/ru/LC_MESSAGES/z3ext.preferences.mo
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: z3ext.preferences/trunk/src/z3ext/preferences/locales/ru/LC_MESSAGES/z3ext.preferences.po
===================================================================
--- z3ext.preferences/trunk/src/z3ext/preferences/locales/ru/LC_MESSAGES/z3ext.preferences.po	                        (rev 0)
+++ z3ext.preferences/trunk/src/z3ext/preferences/locales/ru/LC_MESSAGES/z3ext.preferences.po	2008-10-22 08:21:32 UTC (rev 92462)
@@ -0,0 +1,56 @@
+# #############################################################################
+#
+# Copyright (c) 2003-2004 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+# #############################################################################
+msgid ""
+msgstr ""
+"Project-Id-Version: Development/Unknown\n"
+"POT-Creation-Date: Wed Oct 22 13:53:30 2008\n"
+"PO-Revision-Date: 2008-10-22 14:15+0600\n"
+"Last-Translator: Nikolay Kim <fafhrd91 at gmail.com>\n"
+"Language-Team: Zope 3 Developers <zope3-dev at zope.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: zope/app/locales/extract.py\n"
+
+#: src/z3ext/preferences/browser/breadcrumb.py:30
+msgid "Preferences"
+msgstr "Настройки"
+
+#: src/z3ext/preferences/configure.zcml:13
+msgid "Preference group owner"
+msgstr ""
+
+#: src/z3ext/preferences/configure.zcml:51
+msgid "These are all the preferences related to common portal settings."
+msgstr "В этой категории вы можете изменить общие настройки сайта."
+
+#: src/z3ext/preferences/configure.zcml:51
+msgid "Portal preferences"
+msgstr "Настройки сайта"
+
+#: src/z3ext/preferences/configure.zcml:9
+msgid "Modify preference"
+msgstr "Изменить настройки"
+
+#: src/z3ext/preferences/preferencetype.py:194
+msgid "Field is readonly"
+msgstr "Поле только для чтения"
+
+#: src/z3ext/preferences/root.py:31
+msgid "Personal preferences"
+msgstr "Персональные настройки"
+
+#: src/z3ext/preferences/root.py:32
+msgid "This area allows you to change personal preferences."
+msgstr "В этой категории вы можете изменить персональные настройки."

Modified: z3ext.preferences/trunk/src/z3ext/preferences/locales/z3ext.preferences.pot
===================================================================
--- z3ext.preferences/trunk/src/z3ext/preferences/locales/z3ext.preferences.pot	2008-10-22 07:35:13 UTC (rev 92461)
+++ z3ext.preferences/trunk/src/z3ext/preferences/locales/z3ext.preferences.pot	2008-10-22 08:21:32 UTC (rev 92462)
@@ -14,7 +14,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: Development/Unknown\n"
-"POT-Creation-Date: Tue Oct 14 22:40:00 2008\n"
+"POT-Creation-Date: Wed Oct 22 14:15:44 2008\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: Zope 3 Developers <zope3-dev at zope.org>\n"
@@ -27,19 +27,19 @@
 msgid "Preferences"
 msgstr ""
 
-#: src/z3ext/preferences/configure.zcml:12
+#: src/z3ext/preferences/configure.zcml:13
 msgid "Preference group owner"
 msgstr ""
 
-#: src/z3ext/preferences/configure.zcml:50
+#: src/z3ext/preferences/configure.zcml:51
 msgid "These are all the preferences related to common portal settings."
 msgstr ""
 
-#: src/z3ext/preferences/configure.zcml:50
+#: src/z3ext/preferences/configure.zcml:51
 msgid "Portal preferences"
 msgstr ""
 
-#: src/z3ext/preferences/configure.zcml:8
+#: src/z3ext/preferences/configure.zcml:9
 msgid "Modify preference"
 msgstr ""
 



More information about the Checkins mailing list