[Checkins] SVN: z3c.locales/trunk/ Added initial implementation, just a draft not ready to use!

Roger Ineichen roger at projekt01.ch
Wed Apr 30 18:43:01 EDT 2008


Log message for revision 85939:
  Added initial implementation, just a draft not ready to use!
  
  TODO:
  found a bug in i18n recipe
  the comments/paths in the *.pot file get not correct split

Changed:
  _U  z3c.locales/trunk/
  A   z3c.locales/trunk/CHANGES.txt
  A   z3c.locales/trunk/LICENSE.txt
  A   z3c.locales/trunk/README.txt
  A   z3c.locales/trunk/bootstrap.py
  A   z3c.locales/trunk/buildout.cfg
  _U  z3c.locales/trunk/externals/
  A   z3c.locales/trunk/setup.py
  A   z3c.locales/trunk/src/
  A   z3c.locales/trunk/src/z3c/
  A   z3c.locales/trunk/src/z3c/__init__.py
  A   z3c.locales/trunk/src/z3c/locales/
  A   z3c.locales/trunk/src/z3c/locales/__init__.py
  A   z3c.locales/trunk/src/z3c/locales/configure.zcml
  A   z3c.locales/trunk/src/z3c/locales/de/
  A   z3c.locales/trunk/src/z3c/locales/de/LC_MESSAGES/
  A   z3c.locales/trunk/src/z3c/locales/de/LC_MESSAGES/z3c.mo
  A   z3c.locales/trunk/src/z3c/locales/de/LC_MESSAGES/z3c.po
  A   z3c.locales/trunk/src/z3c/locales/extract.zcml
  A   z3c.locales/trunk/src/z3c/locales/z3c.pot

-=-

Property changes on: z3c.locales/trunk
___________________________________________________________________
Name: svn:ignore
   + .installed.cfg
bin
develop-eggs
parts


Added: z3c.locales/trunk/CHANGES.txt
===================================================================
--- z3c.locales/trunk/CHANGES.txt	                        (rev 0)
+++ z3c.locales/trunk/CHANGES.txt	2008-04-30 22:43:01 UTC (rev 85939)
@@ -0,0 +1,9 @@
+=======
+CHANGES
+=======
+
+
+Version 0.0.1dev (unreleased)
+-----------------------------
+
+- Initial Release


Property changes on: z3c.locales/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Added: z3c.locales/trunk/LICENSE.txt
===================================================================
--- z3c.locales/trunk/LICENSE.txt	                        (rev 0)
+++ z3c.locales/trunk/LICENSE.txt	2008-04-30 22:43:01 UTC (rev 85939)
@@ -0,0 +1,54 @@
+Zope Public License (ZPL) Version 2.1
+-------------------------------------
+
+A copyright notice accompanies this license document that
+identifies the copyright holders.
+
+This license has been certified as open source. It has also
+been designated as GPL compatible by the Free Software
+Foundation (FSF).
+
+Redistribution and use in source and binary forms, with or
+without modification, are permitted provided that the
+following conditions are met:
+
+1. Redistributions in source code must retain the
+   accompanying copyright notice, this list of conditions,
+   and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the accompanying
+   copyright notice, this list of conditions, and the
+   following disclaimer in the documentation and/or other
+   materials provided with the distribution.
+
+3. Names of the copyright holders must not be used to
+   endorse or promote products derived from this software
+   without prior written permission from the copyright
+   holders.
+
+4. The right to distribute this software or to use it for
+   any purpose does not give you the right to use
+   Servicemarks (sm) or Trademarks (tm) of the copyright
+   holders. Use of them is covered by separate agreement
+   with the copyright holders.
+
+5. If any files are modified, you must cause the modified
+   files to carry prominent notices stating that you changed
+   the files and the date of any change.
+
+Disclaimer
+
+  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS''
+  AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
+  NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+  AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
+  NO EVENT SHALL THE COPYRIGHT HOLDERS BE
+  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+  OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+  DAMAGE.


Property changes on: z3c.locales/trunk/LICENSE.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Added: z3c.locales/trunk/README.txt
===================================================================
--- z3c.locales/trunk/README.txt	                        (rev 0)
+++ z3c.locales/trunk/README.txt	2008-04-30 22:43:01 UTC (rev 85939)
@@ -0,0 +1,2 @@
+This package provides the translation for the z3c packages which using the 
+shared ``z3c`` domain.


Property changes on: z3c.locales/trunk/README.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Added: z3c.locales/trunk/bootstrap.py
===================================================================
--- z3c.locales/trunk/bootstrap.py	                        (rev 0)
+++ z3c.locales/trunk/bootstrap.py	2008-04-30 22:43:01 UTC (rev 85939)
@@ -0,0 +1,52 @@
+##############################################################################
+#
+# Copyright (c) 2008 Zope Foundation 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.
+#
+##############################################################################
+"""Bootstrap a buildout-based project
+
+Simply run this script in a directory containing a buildout.cfg.
+The script accepts buildout command-line options, so you can
+use the -c option to specify an alternate configuration file.
+
+$Id: bootstrap.py 75940 2007-05-24 14:45:00Z srichter $
+"""
+
+import os, shutil, sys, tempfile, urllib2
+
+tmpeggs = tempfile.mkdtemp()
+
+ez = {}
+exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py'
+                     ).read() in ez
+ez['use_setuptools'](to_dir=tmpeggs, download_delay=0)
+
+import pkg_resources
+
+cmd = 'from setuptools.command.easy_install import main; main()'
+if sys.platform == 'win32':
+    cmd = '"%s"' % cmd # work around spawn lamosity on windows
+
+ws = pkg_resources.working_set
+assert os.spawnle(
+    os.P_WAIT, sys.executable, sys.executable,
+    '-c', cmd, '-mqNxd', tmpeggs, 'zc.buildout',
+    dict(os.environ,
+         PYTHONPATH=
+         ws.find(pkg_resources.Requirement.parse('setuptools')).location
+         ),
+    ) == 0
+
+ws.add_entry(tmpeggs)
+ws.require('zc.buildout')
+import zc.buildout.buildout
+zc.buildout.buildout.main(sys.argv[1:] + ['bootstrap'])
+shutil.rmtree(tmpeggs)


Property changes on: z3c.locales/trunk/bootstrap.py
___________________________________________________________________
Name: svn:eol-style
   + native

Added: z3c.locales/trunk/buildout.cfg
===================================================================
--- z3c.locales/trunk/buildout.cfg	                        (rev 0)
+++ z3c.locales/trunk/buildout.cfg	2008-04-30 22:43:01 UTC (rev 85939)
@@ -0,0 +1,16 @@
+[buildout]
+develop = .
+          externals/z3c.recipe.i18n
+
+parts = i18n
+
+
+[i18n]
+recipe = z3c.recipe.i18n:i18n
+eggs = z3c.locales [extract]
+packages = z3c.table
+           z3c.contents
+domain = z3c
+output = src/z3c/locales
+maker = z3c.csvvocabulary.csvStrings
+zcml = <include package="z3c.locales" file="extract.zcml" />


Property changes on: z3c.locales/trunk/externals
___________________________________________________________________
Name: svn:externals
   + z3c.recipe.i18n       svn://svn.zope.org/repos/main/z3c.recipe.i18n/trunk


Added: z3c.locales/trunk/setup.py
===================================================================
--- z3c.locales/trunk/setup.py	                        (rev 0)
+++ z3c.locales/trunk/setup.py	2008-04-30 22:43:01 UTC (rev 85939)
@@ -0,0 +1,67 @@
+##############################################################################
+#
+# Copyright (c) 2008 Zope Foundation 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.
+#
+##############################################################################
+"""Setup
+
+$Id:$
+"""
+import os
+from setuptools import setup, find_packages
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+setup(
+    name = 'z3c.locales',
+    version = '0.0.1dev',
+    author='Zope Foundation and Contributors',
+    author_email='zope3-dev at zope.org',
+    description = "Shared z3c domain translations",
+    long_description=(
+        read('README.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
+        ),
+    keywords = "Zope z3c locale i18n internationalisation",
+    classifiers = [
+        'Development Status :: 4 - Beta',
+        'Environment :: Web Environment',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Programming Language :: Python',
+        'Natural Language :: English',
+        'Operating System :: OS Independent',
+        'Topic :: Internet :: WWW/HTTP',
+        'Framework :: Zope3'],
+    url='http://cheeseshop.python.org/pypi/z3c.locales',
+    license='ZPL 2.1',
+    packages = find_packages('src'),
+    include_package_data = True,
+    package_dir = {'':'src'},
+    namespace_packages = ['z3c'],
+    extras_require=dict(
+        test=[
+            'zope.testing',
+            ],
+        extract = [
+            'z3c.table',
+            'z3c.contents',
+            ],
+        ),
+    install_requires = [
+        'setuptools',
+        'zope.i18nmessageid',
+        'z3c.csvvocabulary',
+        ],
+    zip_safe = False,
+    )


Property changes on: z3c.locales/trunk/setup.py
___________________________________________________________________
Name: svn:eol-style
   + native


Property changes on: z3c.locales/trunk/src
___________________________________________________________________
Name: svn:ignore
   + z3c.locales.egg-info


Added: z3c.locales/trunk/src/z3c/__init__.py
===================================================================
--- z3c.locales/trunk/src/z3c/__init__.py	                        (rev 0)
+++ z3c.locales/trunk/src/z3c/__init__.py	2008-04-30 22:43:01 UTC (rev 85939)
@@ -0,0 +1,8 @@
+# this is a namespace package
+try:
+    import pkg_resources
+    pkg_resources.declare_namespace(__name__)
+except ImportError:
+    import pkgutil
+    __path__ = pkgutil.extend_path(__path__, __name__)
+


Property changes on: z3c.locales/trunk/src/z3c/__init__.py
___________________________________________________________________
Name: svn:eol-style
   + native

Added: z3c.locales/trunk/src/z3c/locales/__init__.py
===================================================================
--- z3c.locales/trunk/src/z3c/locales/__init__.py	                        (rev 0)
+++ z3c.locales/trunk/src/z3c/locales/__init__.py	2008-04-30 22:43:01 UTC (rev 85939)
@@ -0,0 +1 @@
+# make a package


Property changes on: z3c.locales/trunk/src/z3c/locales/__init__.py
___________________________________________________________________
Name: svn:eol-style
   + native

Added: z3c.locales/trunk/src/z3c/locales/configure.zcml
===================================================================
--- z3c.locales/trunk/src/z3c/locales/configure.zcml	                        (rev 0)
+++ z3c.locales/trunk/src/z3c/locales/configure.zcml	2008-04-30 22:43:01 UTC (rev 85939)
@@ -0,0 +1,8 @@
+<configure
+    xmlns:i18n="http://namespaces.zope.org/i18n"
+    i18n_domain="z3c">
+
+  <!-- Translations -->
+  <i18n:registerTranslations directory="." />
+
+</configure>


Property changes on: z3c.locales/trunk/src/z3c/locales/configure.zcml
___________________________________________________________________
Name: svn:eol-style
   + native

Added: z3c.locales/trunk/src/z3c/locales/de/LC_MESSAGES/z3c.mo
===================================================================
(Binary files differ)


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

Added: z3c.locales/trunk/src/z3c/locales/de/LC_MESSAGES/z3c.po
===================================================================
--- z3c.locales/trunk/src/z3c/locales/de/LC_MESSAGES/z3c.po	                        (rev 0)
+++ z3c.locales/trunk/src/z3c/locales/de/LC_MESSAGES/z3c.po	2008-04-30 22:43:01 UTC (rev 85939)
@@ -0,0 +1,225 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"POT-Creation-Date: \n"
+"PO-Revision-Date: 2008-05-01 00:38+0100\n"
+"Last-Translator: Roger Ineichen <dev at projekt01.ch>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: e/column.py:133
+#: e/column.py:273
+msgid "Name"
+msgstr ""
+
+#: e/column.py:142
+#: e/column.py:174
+msgid "X"
+msgstr ""
+
+#: e/column.py:235
+msgid "Created"
+msgstr ""
+
+#: e/column.py:254
+msgid "Modified"
+msgstr ""
+
+#: e/interfaces.py:105
+msgid "Batch start index"
+msgstr ""
+
+#: e/interfaces.py:106
+msgid "Index the batch starts with"
+msgstr ""
+
+#: e/interfaces.py:110
+msgid "Batch size"
+msgstr ""
+
+#: e/interfaces.py:111
+msgid "The batch size"
+msgstr ""
+
+#: e/interfaces.py:115
+msgid "Batch start size"
+msgstr ""
+
+#: e/interfaces.py:116
+msgid "The minimal size the batch starts to get used"
+msgstr ""
+
+#: e/interfaces.py:201
+msgid "Id"
+msgstr ""
+
+#: e/interfaces.py:202
+msgid "The column id"
+msgstr ""
+
+#: e/interfaces.py:207
+msgid "Colspan"
+msgstr ""
+
+#: e/interfaces.py:208
+msgid "The colspan value"
+msgstr ""
+
+#: e/interfaces.py:212
+msgid "Weight"
+msgstr ""
+
+#: e/interfaces.py:213
+msgid "The column weight"
+msgstr ""
+
+#: e/interfaces.py:217
+msgid "Header name"
+msgstr ""
+
+#: e/interfaces.py:218
+msgid "The header name"
+msgstr ""
+
+#: e/interfaces.py:38
+#: e/interfaces.py:39
+msgid "Column counter"
+msgstr ""
+
+#: e/interfaces.py:55
+msgid "Prefix"
+msgstr ""
+
+#: e/interfaces.py:56
+msgid "The prefix of the table used to uniquely identify it."
+msgstr ""
+
+#: e/interfaces.py:84
+#: e/interfaces.py:85
+msgid "Sort on table index"
+msgstr ""
+
+#: e/interfaces.py:89
+msgid "Sort order"
+msgstr ""
+
+#: e/interfaces.py:90
+msgid "Row sort order"
+msgstr ""
+
+#: e/interfaces.py:97
+#: e/interfaces.py:98
+msgid "Reverse sort order name"
+msgstr ""
+
+#: s/browser.py:143
+msgid "No items selected for cut"
+msgstr ""
+
+#: s/browser.py:144
+msgid "Items selected for cut"
+msgstr ""
+
+#: s/browser.py:146
+msgid "Items choosen for copy"
+msgstr ""
+
+#: s/browser.py:147
+msgid "No items selected for copy"
+msgstr ""
+
+#: s/browser.py:148
+msgid "Data successfully copied"
+msgstr ""
+
+#: s/browser.py:150
+msgid "Could not delete the selected items"
+msgstr ""
+
+#: s/browser.py:151
+msgid "No items selected for delete"
+msgstr ""
+
+#: s/browser.py:152
+msgid "Data successfully deleted"
+msgstr ""
+
+#: s/browser.py:154
+msgid "Data successfully pasted"
+msgstr ""
+
+#: s/browser.py:156
+msgid "Could not rename all selected items"
+msgstr ""
+
+#: s/browser.py:157
+msgid "Duplicated item name"
+msgstr ""
+
+#: s/browser.py:158
+msgid "Item not found"
+msgstr ""
+
+#: s/browser.py:244
+msgid "Copy"
+msgstr ""
+
+#. Default: ""
+#: s/browser.py:259
+msgid "Object '${name}' (${name}) cannot be copied"
+msgstr ""
+
+#. Default: ""
+#: s/browser.py:263
+msgid "Object '${name}' cannot be copied"
+msgstr ""
+
+#: s/browser.py:274
+msgid "Cut"
+msgstr ""
+
+#. Default: ""
+#: s/browser.py:289
+msgid "Object '${name}' (${name}) cannot be moved"
+msgstr ""
+
+#. Default: ""
+#: s/browser.py:293
+msgid "Object '${name}' cannot be moved"
+msgstr ""
+
+#: s/browser.py:304
+msgid "Paste"
+msgstr ""
+
+#: s/browser.py:346
+msgid "The given name(s) %s is / are already being used"
+msgstr ""
+
+#: s/browser.py:354
+msgid "Delete"
+msgstr ""
+
+#: s/browser.py:374
+msgid "Rename"
+msgstr ""
+
+#: s/browser.py:398
+msgid "No name given"
+msgstr ""
+
+#: s/browser.py:400
+msgid "No new name given"
+msgstr ""
+
+#: s/browser.py:58
+#: s/browser.py:62
+msgid "Search"
+msgstr ""
+
+#: s/browser.py:59
+msgid "Search term"
+msgstr ""
+

Added: z3c.locales/trunk/src/z3c/locales/extract.zcml
===================================================================
--- z3c.locales/trunk/src/z3c/locales/extract.zcml	                        (rev 0)
+++ z3c.locales/trunk/src/z3c/locales/extract.zcml	2008-04-30 22:43:01 UTC (rev 85939)
@@ -0,0 +1,16 @@
+<configure
+    xmlns:i18n="http://namespaces.zope.org/i18n"
+    i18n_domain="z3c">
+
+  <include package="zope.app.component" file="meta.zcml" />
+  <include package="zope.app.component.browser" file="meta.zcml" />
+  <include package="zope.app.container.browser" file="meta.zcml" />
+  <include package="zope.app.pagetemplate" file="meta.zcml" />
+  <include package="zope.app.publication" file="meta.zcml" />
+  <include package="zope.app.publisher" file="meta.zcml" />
+  <include package="zope.app.security" file="meta.zcml" />
+  <include package="zope.i18n" file="meta.zcml" />
+  <include package="zope.security" file="meta.zcml" />
+  <include package="zope.viewlet" file="meta.zcml" />
+
+</configure>


Property changes on: z3c.locales/trunk/src/z3c/locales/extract.zcml
___________________________________________________________________
Name: svn:eol-style
   + native

Added: z3c.locales/trunk/src/z3c/locales/z3c.pot
===================================================================
--- z3c.locales/trunk/src/z3c/locales/z3c.pot	                        (rev 0)
+++ z3c.locales/trunk/src/z3c/locales/z3c.pot	2008-04-30 22:43:01 UTC (rev 85939)
@@ -0,0 +1,239 @@
+##############################################################################
+#
+# 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: Thu May 01 00:36:59 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"
+"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"
+
+#: e/column.py:133
+#: e/column.py:273
+msgid "Name"
+msgstr ""
+
+#: e/column.py:142
+#: e/column.py:174
+msgid "X"
+msgstr ""
+
+#: e/column.py:235
+msgid "Created"
+msgstr ""
+
+#: e/column.py:254
+msgid "Modified"
+msgstr ""
+
+#: e/interfaces.py:105
+msgid "Batch start index"
+msgstr ""
+
+#: e/interfaces.py:106
+msgid "Index the batch starts with"
+msgstr ""
+
+#: e/interfaces.py:110
+msgid "Batch size"
+msgstr ""
+
+#: e/interfaces.py:111
+msgid "The batch size"
+msgstr ""
+
+#: e/interfaces.py:115
+msgid "Batch start size"
+msgstr ""
+
+#: e/interfaces.py:116
+msgid "The minimal size the batch starts to get used"
+msgstr ""
+
+#: e/interfaces.py:201
+msgid "Id"
+msgstr ""
+
+#: e/interfaces.py:202
+msgid "The column id"
+msgstr ""
+
+#: e/interfaces.py:207
+msgid "Colspan"
+msgstr ""
+
+#: e/interfaces.py:208
+msgid "The colspan value"
+msgstr ""
+
+#: e/interfaces.py:212
+msgid "Weight"
+msgstr ""
+
+#: e/interfaces.py:213
+msgid "The column weight"
+msgstr ""
+
+#: e/interfaces.py:217
+msgid "Header name"
+msgstr ""
+
+#: e/interfaces.py:218
+msgid "The header name"
+msgstr ""
+
+#: e/interfaces.py:38
+#: e/interfaces.py:39
+msgid "Column counter"
+msgstr ""
+
+#: e/interfaces.py:55
+msgid "Prefix"
+msgstr ""
+
+#: e/interfaces.py:56
+msgid "The prefix of the table used to uniquely identify it."
+msgstr ""
+
+#: e/interfaces.py:84
+#: e/interfaces.py:85
+msgid "Sort on table index"
+msgstr ""
+
+#: e/interfaces.py:89
+msgid "Sort order"
+msgstr ""
+
+#: e/interfaces.py:90
+msgid "Row sort order"
+msgstr ""
+
+#: e/interfaces.py:97
+#: e/interfaces.py:98
+msgid "Reverse sort order name"
+msgstr ""
+
+#: s/browser.py:143
+msgid "No items selected for cut"
+msgstr ""
+
+#: s/browser.py:144
+msgid "Items selected for cut"
+msgstr ""
+
+#: s/browser.py:146
+msgid "Items choosen for copy"
+msgstr ""
+
+#: s/browser.py:147
+msgid "No items selected for copy"
+msgstr ""
+
+#: s/browser.py:148
+msgid "Data successfully copied"
+msgstr ""
+
+#: s/browser.py:150
+msgid "Could not delete the selected items"
+msgstr ""
+
+#: s/browser.py:151
+msgid "No items selected for delete"
+msgstr ""
+
+#: s/browser.py:152
+msgid "Data successfully deleted"
+msgstr ""
+
+#: s/browser.py:154
+msgid "Data successfully pasted"
+msgstr ""
+
+#: s/browser.py:156
+msgid "Could not rename all selected items"
+msgstr ""
+
+#: s/browser.py:157
+msgid "Duplicated item name"
+msgstr ""
+
+#: s/browser.py:158
+msgid "Item not found"
+msgstr ""
+
+#: s/browser.py:244
+msgid "Copy"
+msgstr ""
+
+#: s/browser.py:259
+#. Default: ""
+msgid "Object '${name}' (${name}) cannot be copied"
+msgstr ""
+
+#: s/browser.py:263
+#. Default: ""
+msgid "Object '${name}' cannot be copied"
+msgstr ""
+
+#: s/browser.py:274
+msgid "Cut"
+msgstr ""
+
+#: s/browser.py:289
+#. Default: ""
+msgid "Object '${name}' (${name}) cannot be moved"
+msgstr ""
+
+#: s/browser.py:293
+#. Default: ""
+msgid "Object '${name}' cannot be moved"
+msgstr ""
+
+#: s/browser.py:304
+msgid "Paste"
+msgstr ""
+
+#: s/browser.py:346
+msgid "The given name(s) %s is / are already being used"
+msgstr ""
+
+#: s/browser.py:354
+msgid "Delete"
+msgstr ""
+
+#: s/browser.py:374
+msgid "Rename"
+msgstr ""
+
+#: s/browser.py:398
+msgid "No name given"
+msgstr ""
+
+#: s/browser.py:400
+msgid "No new name given"
+msgstr ""
+
+#: s/browser.py:58
+#: s/browser.py:62
+msgid "Search"
+msgstr ""
+
+#: s/browser.py:59
+msgid "Search term"
+msgstr ""
+



More information about the Checkins mailing list