소스 검색

[core] i18n of the desktop libs

Fix non ASCII character in template
Romain Rigaux 13 년 전
부모
커밋
0b2f8b09a7
24개의 변경된 파일1209개의 추가작업 그리고 12개의 파일을 삭제
  1. 1 1
      Makefile
  2. 1 1
      apps/beeswax/src/beeswax/templates/watch_results.mako
  3. 4 4
      desktop/Makefile
  4. 1 0
      desktop/libs/hadoop/babel.cfg
  5. 6 6
      desktop/libs/hadoop/src/hadoop/fs/hadoopfs.py
  6. 61 0
      desktop/libs/hadoop/src/hadoop/locale/de/LC_MESSAGES/django.po
  7. 60 0
      desktop/libs/hadoop/src/hadoop/locale/en_US.pot
  8. 61 0
      desktop/libs/hadoop/src/hadoop/locale/es/LC_MESSAGES/django.po
  9. 61 0
      desktop/libs/hadoop/src/hadoop/locale/fr/LC_MESSAGES/django.po
  10. 61 0
      desktop/libs/hadoop/src/hadoop/locale/ja/LC_MESSAGES/django.po
  11. 61 0
      desktop/libs/hadoop/src/hadoop/locale/ko/LC_MESSAGES/django.po
  12. 61 0
      desktop/libs/hadoop/src/hadoop/locale/pt/LC_MESSAGES/django.po
  13. 61 0
      desktop/libs/hadoop/src/hadoop/locale/pt_BR/LC_MESSAGES/django.po
  14. 61 0
      desktop/libs/hadoop/src/hadoop/locale/zh_CN/LC_MESSAGES/django.po
  15. 1 0
      desktop/libs/liboozie/babel.cfg
  16. 72 0
      desktop/libs/liboozie/src/liboozie/locale/de/LC_MESSAGES/django.po
  17. 71 0
      desktop/libs/liboozie/src/liboozie/locale/en_US.pot
  18. 72 0
      desktop/libs/liboozie/src/liboozie/locale/es/LC_MESSAGES/django.po
  19. 72 0
      desktop/libs/liboozie/src/liboozie/locale/fr/LC_MESSAGES/django.po
  20. 72 0
      desktop/libs/liboozie/src/liboozie/locale/ja/LC_MESSAGES/django.po
  21. 72 0
      desktop/libs/liboozie/src/liboozie/locale/ko/LC_MESSAGES/django.po
  22. 72 0
      desktop/libs/liboozie/src/liboozie/locale/pt/LC_MESSAGES/django.po
  23. 72 0
      desktop/libs/liboozie/src/liboozie/locale/pt_BR/LC_MESSAGES/django.po
  24. 72 0
      desktop/libs/liboozie/src/liboozie/locale/zh_CN/LC_MESSAGES/django.po

+ 1 - 1
Makefile

@@ -214,7 +214,7 @@ install-env:
 # <<<< DEV ONLY
 .PHONY: locales
 locales:
-	@$(MAKE) -C desktop compile-locale
+	@$(MAKE) -C desktop compile-locales
 	@$(MAKE) -C apps compile-locales
 # END DEV ONLY >>>>
 

+ 1 - 1
apps/beeswax/src/beeswax/templates/watch_results.mako

@@ -186,7 +186,7 @@ ${layout.menubar(section='query')}
               </ul>
             </div>
             <div id="jumpToColumnAlert" class="alert hide" style="float:left;margin: 20px 0;">
-              <button type="button" class="close" data-dismiss="alert">×</button>
+              <button type="button" class="close" data-dismiss="alert">&times;</button>
               <strong>${_('Did you know?')}</strong> ${_('You can click on a row to select a column you want to jump to.')}
             </div>
             % endif

+ 4 - 4
desktop/Makefile

@@ -173,9 +173,9 @@ install-source-parts:
 ###################################
 # Internationalization
 ###################################
-.PHONY: compile-locale
-compile-locale:
-	@$(MAKE) -C core compile-locale
-
+COMPILE_LOCALE_TARGETS := $(APPS:%=.recursive-compile-locales/%)
+compile-locales: $(COMPILE_LOCALE_TARGETS)
+.recursive-compile-locales/%:
+	@$(MAKE) -C $* compile-locale
 # END DEV ONLY >>>>
 	

+ 1 - 0
desktop/libs/hadoop/babel.cfg

@@ -0,0 +1 @@
+[python: src/hadoop/**.py]

+ 6 - 6
desktop/libs/hadoop/src/hadoop/fs/hadoopfs.py

@@ -221,22 +221,22 @@ class Hdfs(object):
     return (schema, netloc, normpath(path), '', '')
 
   def exists(self):
-    raise NotImplementedError(_("exists has not been implemented."))
+    raise NotImplementedError(_("%(function)s has not been implemented.") % {'function': 'exists'})
 
   def do_as_user(self):
-    raise NotImplementedError(_("do_as_user has not been implemented."))
+    raise NotImplementedError(_("%(function)s has not been implemented.") % {'function': 'do_as_user'})
 
   def create(self):
-    raise NotImplementedError(_("exists has not been implemented."))
+    raise NotImplementedError(_("%(function)s has not been implemented.") % {'function': 'exists'})
 
   def append(self):
-    raise NotImplementedError(_("do_as_user has not been implemented."))
+    raise NotImplementedError(_("%(function)s has not been implemented.") % {'function': 'append'})
 
   def mkdir(self):
-    raise NotImplementedError(_("mkdir has not been implemented."))
+    raise NotImplementedError(_("%(function)s has not been implemented.") % {'function': 'mkdir'})
 
   def isdir(self):
-    raise NotImplementedError(_("isdir has not been implemented."))
+    raise NotImplementedError(_("%(function)s has not been implemented.") % {'function': 'isdir'})
 
   def copyFromLocal(self, local_src, remote_dst, mode=0755):
     remote_dst = remote_dst.endswith(posixpath.sep) and remote_dst[:-1] or remote_dst

+ 61 - 0
desktop/libs/hadoop/src/hadoop/locale/de/LC_MESSAGES/django.po

@@ -0,0 +1,61 @@
+# German translations for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: 2012-11-07 13:06-0800\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: de <LL@li.org>\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/hadoop/fs/hadoopfs.py:224 src/hadoop/fs/hadoopfs.py:230
+msgid "exists has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:227 src/hadoop/fs/hadoopfs.py:233
+msgid "do_as_user has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:236
+msgid "mkdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:239
+msgid "isdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:266
+#, python-format
+msgid "%(remote_dst)s already exists. Skipping."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:269
+#, python-format
+msgid "%(remote_dst)s does not exist. Trying to copy"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:279
+#, python-format
+msgid "Copied %s -> %s"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:281
+#, python-format
+msgid "Copying %s -> %s failed"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:286
+#, python-format
+msgid "Skipping %s (not a file)"
+msgstr ""
+

+ 60 - 0
desktop/libs/hadoop/src/hadoop/locale/en_US.pot

@@ -0,0 +1,60 @@
+# Translations template for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/hadoop/fs/hadoopfs.py:224 src/hadoop/fs/hadoopfs.py:230
+msgid "exists has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:227 src/hadoop/fs/hadoopfs.py:233
+msgid "do_as_user has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:236
+msgid "mkdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:239
+msgid "isdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:266
+#, python-format
+msgid "%(remote_dst)s already exists. Skipping."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:269
+#, python-format
+msgid "%(remote_dst)s does not exist. Trying to copy"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:279
+#, python-format
+msgid "Copied %s -> %s"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:281
+#, python-format
+msgid "Copying %s -> %s failed"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:286
+#, python-format
+msgid "Skipping %s (not a file)"
+msgstr ""
+

+ 61 - 0
desktop/libs/hadoop/src/hadoop/locale/es/LC_MESSAGES/django.po

@@ -0,0 +1,61 @@
+# Spanish translations for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: 2012-11-07 13:05-0800\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: es <LL@li.org>\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/hadoop/fs/hadoopfs.py:224 src/hadoop/fs/hadoopfs.py:230
+msgid "exists has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:227 src/hadoop/fs/hadoopfs.py:233
+msgid "do_as_user has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:236
+msgid "mkdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:239
+msgid "isdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:266
+#, python-format
+msgid "%(remote_dst)s already exists. Skipping."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:269
+#, python-format
+msgid "%(remote_dst)s does not exist. Trying to copy"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:279
+#, python-format
+msgid "Copied %s -> %s"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:281
+#, python-format
+msgid "Copying %s -> %s failed"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:286
+#, python-format
+msgid "Skipping %s (not a file)"
+msgstr ""
+

+ 61 - 0
desktop/libs/hadoop/src/hadoop/locale/fr/LC_MESSAGES/django.po

@@ -0,0 +1,61 @@
+# French translations for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: 2012-11-07 13:05-0800\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: fr <LL@li.org>\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/hadoop/fs/hadoopfs.py:224 src/hadoop/fs/hadoopfs.py:230
+msgid "exists has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:227 src/hadoop/fs/hadoopfs.py:233
+msgid "do_as_user has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:236
+msgid "mkdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:239
+msgid "isdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:266
+#, python-format
+msgid "%(remote_dst)s already exists. Skipping."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:269
+#, python-format
+msgid "%(remote_dst)s does not exist. Trying to copy"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:279
+#, python-format
+msgid "Copied %s -> %s"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:281
+#, python-format
+msgid "Copying %s -> %s failed"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:286
+#, python-format
+msgid "Skipping %s (not a file)"
+msgstr ""
+

+ 61 - 0
desktop/libs/hadoop/src/hadoop/locale/ja/LC_MESSAGES/django.po

@@ -0,0 +1,61 @@
+# Japanese translations for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: 2012-11-07 13:06-0800\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: ja <LL@li.org>\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/hadoop/fs/hadoopfs.py:224 src/hadoop/fs/hadoopfs.py:230
+msgid "exists has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:227 src/hadoop/fs/hadoopfs.py:233
+msgid "do_as_user has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:236
+msgid "mkdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:239
+msgid "isdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:266
+#, python-format
+msgid "%(remote_dst)s already exists. Skipping."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:269
+#, python-format
+msgid "%(remote_dst)s does not exist. Trying to copy"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:279
+#, python-format
+msgid "Copied %s -> %s"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:281
+#, python-format
+msgid "Copying %s -> %s failed"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:286
+#, python-format
+msgid "Skipping %s (not a file)"
+msgstr ""
+

+ 61 - 0
desktop/libs/hadoop/src/hadoop/locale/ko/LC_MESSAGES/django.po

@@ -0,0 +1,61 @@
+# Korean translations for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: 2012-11-07 13:06-0800\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: ko <LL@li.org>\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/hadoop/fs/hadoopfs.py:224 src/hadoop/fs/hadoopfs.py:230
+msgid "exists has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:227 src/hadoop/fs/hadoopfs.py:233
+msgid "do_as_user has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:236
+msgid "mkdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:239
+msgid "isdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:266
+#, python-format
+msgid "%(remote_dst)s already exists. Skipping."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:269
+#, python-format
+msgid "%(remote_dst)s does not exist. Trying to copy"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:279
+#, python-format
+msgid "Copied %s -> %s"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:281
+#, python-format
+msgid "Copying %s -> %s failed"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:286
+#, python-format
+msgid "Skipping %s (not a file)"
+msgstr ""
+

+ 61 - 0
desktop/libs/hadoop/src/hadoop/locale/pt/LC_MESSAGES/django.po

@@ -0,0 +1,61 @@
+# Portuguese translations for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: 2012-11-07 13:06-0800\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: pt <LL@li.org>\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/hadoop/fs/hadoopfs.py:224 src/hadoop/fs/hadoopfs.py:230
+msgid "exists has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:227 src/hadoop/fs/hadoopfs.py:233
+msgid "do_as_user has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:236
+msgid "mkdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:239
+msgid "isdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:266
+#, python-format
+msgid "%(remote_dst)s already exists. Skipping."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:269
+#, python-format
+msgid "%(remote_dst)s does not exist. Trying to copy"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:279
+#, python-format
+msgid "Copied %s -> %s"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:281
+#, python-format
+msgid "Copying %s -> %s failed"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:286
+#, python-format
+msgid "Skipping %s (not a file)"
+msgstr ""
+

+ 61 - 0
desktop/libs/hadoop/src/hadoop/locale/pt_BR/LC_MESSAGES/django.po

@@ -0,0 +1,61 @@
+# Portuguese (Brazil) translations for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: 2012-11-07 13:06-0800\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: pt_BR <LL@li.org>\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/hadoop/fs/hadoopfs.py:224 src/hadoop/fs/hadoopfs.py:230
+msgid "exists has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:227 src/hadoop/fs/hadoopfs.py:233
+msgid "do_as_user has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:236
+msgid "mkdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:239
+msgid "isdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:266
+#, python-format
+msgid "%(remote_dst)s already exists. Skipping."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:269
+#, python-format
+msgid "%(remote_dst)s does not exist. Trying to copy"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:279
+#, python-format
+msgid "Copied %s -> %s"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:281
+#, python-format
+msgid "Copying %s -> %s failed"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:286
+#, python-format
+msgid "Skipping %s (not a file)"
+msgstr ""
+

+ 61 - 0
desktop/libs/hadoop/src/hadoop/locale/zh_CN/LC_MESSAGES/django.po

@@ -0,0 +1,61 @@
+# Chinese (China) translations for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: 2012-11-07 13:06-0800\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: zh_CN <LL@li.org>\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/hadoop/fs/hadoopfs.py:224 src/hadoop/fs/hadoopfs.py:230
+msgid "exists has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:227 src/hadoop/fs/hadoopfs.py:233
+msgid "do_as_user has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:236
+msgid "mkdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:239
+msgid "isdir has not been implemented."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:266
+#, python-format
+msgid "%(remote_dst)s already exists. Skipping."
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:269
+#, python-format
+msgid "%(remote_dst)s does not exist. Trying to copy"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:279
+#, python-format
+msgid "Copied %s -> %s"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:281
+#, python-format
+msgid "Copying %s -> %s failed"
+msgstr ""
+
+#: src/hadoop/fs/hadoopfs.py:286
+#, python-format
+msgid "Skipping %s (not a file)"
+msgstr ""
+

+ 1 - 0
desktop/libs/liboozie/babel.cfg

@@ -0,0 +1 @@
+[python: src/liboozie/**.py]

+ 72 - 0
desktop/libs/liboozie/src/liboozie/locale/de/LC_MESSAGES/django.po

@@ -0,0 +1,72 @@
+# German translations for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: 2012-11-07 13:08-0800\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: de <LL@li.org>\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/liboozie/conf.py:25
+msgid "URL to Oozie server. This is required for job submission."
+msgstr ""
+
+#: src/liboozie/conf.py:31
+msgid "Whether Oozie requires client to perform Kerberos authentication"
+msgstr ""
+
+#: src/liboozie/conf.py:38
+msgid ""
+"Location on HDFS where the workflows/coordinator are deployed when "
+"submitted by a non owner."
+msgstr ""
+
+#: src/liboozie/conf.py:59
+msgid ""
+"The deployment directory of Oozie workflows does not exist. Please run "
+"\"Setup App\" on the Oozie workflow page."
+msgstr ""
+
+#: src/liboozie/conf.py:62
+msgid "Oozie Share Lib not installed in default location."
+msgstr ""
+
+#: src/liboozie/submittion.py:60
+#, python-format
+msgid "Submission already submitted (Oozie job id %s)"
+msgstr ""
+
+#: src/liboozie/submittion.py:84
+msgid "Failed to access deployment directory"
+msgstr ""
+
+#: src/liboozie/submittion.py:123
+#, python-format
+msgid "Path is not a directory: %s"
+msgstr ""
+
+#: src/liboozie/submittion.py:128
+#, python-format
+msgid "Error accessing directory '%s': %s"
+msgstr ""
+
+#: src/liboozie/types.py:273
+msgid "Insufficient permission"
+msgstr ""
+
+#: src/liboozie/types.py:274
+#, python-format
+msgid "Permission denied. User %(username)s cannot modify user %(user)s's job."
+msgstr ""
+

+ 71 - 0
desktop/libs/liboozie/src/liboozie/locale/en_US.pot

@@ -0,0 +1,71 @@
+# Translations template for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/liboozie/conf.py:25
+msgid "URL to Oozie server. This is required for job submission."
+msgstr ""
+
+#: src/liboozie/conf.py:31
+msgid "Whether Oozie requires client to perform Kerberos authentication"
+msgstr ""
+
+#: src/liboozie/conf.py:38
+msgid ""
+"Location on HDFS where the workflows/coordinator are deployed when "
+"submitted by a non owner."
+msgstr ""
+
+#: src/liboozie/conf.py:59
+msgid ""
+"The deployment directory of Oozie workflows does not exist. Please run "
+"\"Setup App\" on the Oozie workflow page."
+msgstr ""
+
+#: src/liboozie/conf.py:62
+msgid "Oozie Share Lib not installed in default location."
+msgstr ""
+
+#: src/liboozie/submittion.py:60
+#, python-format
+msgid "Submission already submitted (Oozie job id %s)"
+msgstr ""
+
+#: src/liboozie/submittion.py:84
+msgid "Failed to access deployment directory"
+msgstr ""
+
+#: src/liboozie/submittion.py:123
+#, python-format
+msgid "Path is not a directory: %s"
+msgstr ""
+
+#: src/liboozie/submittion.py:128
+#, python-format
+msgid "Error accessing directory '%s': %s"
+msgstr ""
+
+#: src/liboozie/types.py:273
+msgid "Insufficient permission"
+msgstr ""
+
+#: src/liboozie/types.py:274
+#, python-format
+msgid "Permission denied. User %(username)s cannot modify user %(user)s's job."
+msgstr ""
+

+ 72 - 0
desktop/libs/liboozie/src/liboozie/locale/es/LC_MESSAGES/django.po

@@ -0,0 +1,72 @@
+# Spanish translations for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: 2012-11-07 13:08-0800\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: es <LL@li.org>\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/liboozie/conf.py:25
+msgid "URL to Oozie server. This is required for job submission."
+msgstr ""
+
+#: src/liboozie/conf.py:31
+msgid "Whether Oozie requires client to perform Kerberos authentication"
+msgstr ""
+
+#: src/liboozie/conf.py:38
+msgid ""
+"Location on HDFS where the workflows/coordinator are deployed when "
+"submitted by a non owner."
+msgstr ""
+
+#: src/liboozie/conf.py:59
+msgid ""
+"The deployment directory of Oozie workflows does not exist. Please run "
+"\"Setup App\" on the Oozie workflow page."
+msgstr ""
+
+#: src/liboozie/conf.py:62
+msgid "Oozie Share Lib not installed in default location."
+msgstr ""
+
+#: src/liboozie/submittion.py:60
+#, python-format
+msgid "Submission already submitted (Oozie job id %s)"
+msgstr ""
+
+#: src/liboozie/submittion.py:84
+msgid "Failed to access deployment directory"
+msgstr ""
+
+#: src/liboozie/submittion.py:123
+#, python-format
+msgid "Path is not a directory: %s"
+msgstr ""
+
+#: src/liboozie/submittion.py:128
+#, python-format
+msgid "Error accessing directory '%s': %s"
+msgstr ""
+
+#: src/liboozie/types.py:273
+msgid "Insufficient permission"
+msgstr ""
+
+#: src/liboozie/types.py:274
+#, python-format
+msgid "Permission denied. User %(username)s cannot modify user %(user)s's job."
+msgstr ""
+

+ 72 - 0
desktop/libs/liboozie/src/liboozie/locale/fr/LC_MESSAGES/django.po

@@ -0,0 +1,72 @@
+# French translations for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: 2012-11-07 13:08-0800\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: fr <LL@li.org>\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/liboozie/conf.py:25
+msgid "URL to Oozie server. This is required for job submission."
+msgstr ""
+
+#: src/liboozie/conf.py:31
+msgid "Whether Oozie requires client to perform Kerberos authentication"
+msgstr ""
+
+#: src/liboozie/conf.py:38
+msgid ""
+"Location on HDFS where the workflows/coordinator are deployed when "
+"submitted by a non owner."
+msgstr ""
+
+#: src/liboozie/conf.py:59
+msgid ""
+"The deployment directory of Oozie workflows does not exist. Please run "
+"\"Setup App\" on the Oozie workflow page."
+msgstr ""
+
+#: src/liboozie/conf.py:62
+msgid "Oozie Share Lib not installed in default location."
+msgstr ""
+
+#: src/liboozie/submittion.py:60
+#, python-format
+msgid "Submission already submitted (Oozie job id %s)"
+msgstr ""
+
+#: src/liboozie/submittion.py:84
+msgid "Failed to access deployment directory"
+msgstr ""
+
+#: src/liboozie/submittion.py:123
+#, python-format
+msgid "Path is not a directory: %s"
+msgstr ""
+
+#: src/liboozie/submittion.py:128
+#, python-format
+msgid "Error accessing directory '%s': %s"
+msgstr ""
+
+#: src/liboozie/types.py:273
+msgid "Insufficient permission"
+msgstr ""
+
+#: src/liboozie/types.py:274
+#, python-format
+msgid "Permission denied. User %(username)s cannot modify user %(user)s's job."
+msgstr ""
+

+ 72 - 0
desktop/libs/liboozie/src/liboozie/locale/ja/LC_MESSAGES/django.po

@@ -0,0 +1,72 @@
+# Japanese translations for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: 2012-11-07 13:08-0800\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: ja <LL@li.org>\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/liboozie/conf.py:25
+msgid "URL to Oozie server. This is required for job submission."
+msgstr ""
+
+#: src/liboozie/conf.py:31
+msgid "Whether Oozie requires client to perform Kerberos authentication"
+msgstr ""
+
+#: src/liboozie/conf.py:38
+msgid ""
+"Location on HDFS where the workflows/coordinator are deployed when "
+"submitted by a non owner."
+msgstr ""
+
+#: src/liboozie/conf.py:59
+msgid ""
+"The deployment directory of Oozie workflows does not exist. Please run "
+"\"Setup App\" on the Oozie workflow page."
+msgstr ""
+
+#: src/liboozie/conf.py:62
+msgid "Oozie Share Lib not installed in default location."
+msgstr ""
+
+#: src/liboozie/submittion.py:60
+#, python-format
+msgid "Submission already submitted (Oozie job id %s)"
+msgstr ""
+
+#: src/liboozie/submittion.py:84
+msgid "Failed to access deployment directory"
+msgstr ""
+
+#: src/liboozie/submittion.py:123
+#, python-format
+msgid "Path is not a directory: %s"
+msgstr ""
+
+#: src/liboozie/submittion.py:128
+#, python-format
+msgid "Error accessing directory '%s': %s"
+msgstr ""
+
+#: src/liboozie/types.py:273
+msgid "Insufficient permission"
+msgstr ""
+
+#: src/liboozie/types.py:274
+#, python-format
+msgid "Permission denied. User %(username)s cannot modify user %(user)s's job."
+msgstr ""
+

+ 72 - 0
desktop/libs/liboozie/src/liboozie/locale/ko/LC_MESSAGES/django.po

@@ -0,0 +1,72 @@
+# Korean translations for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: 2012-11-07 13:08-0800\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: ko <LL@li.org>\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/liboozie/conf.py:25
+msgid "URL to Oozie server. This is required for job submission."
+msgstr ""
+
+#: src/liboozie/conf.py:31
+msgid "Whether Oozie requires client to perform Kerberos authentication"
+msgstr ""
+
+#: src/liboozie/conf.py:38
+msgid ""
+"Location on HDFS where the workflows/coordinator are deployed when "
+"submitted by a non owner."
+msgstr ""
+
+#: src/liboozie/conf.py:59
+msgid ""
+"The deployment directory of Oozie workflows does not exist. Please run "
+"\"Setup App\" on the Oozie workflow page."
+msgstr ""
+
+#: src/liboozie/conf.py:62
+msgid "Oozie Share Lib not installed in default location."
+msgstr ""
+
+#: src/liboozie/submittion.py:60
+#, python-format
+msgid "Submission already submitted (Oozie job id %s)"
+msgstr ""
+
+#: src/liboozie/submittion.py:84
+msgid "Failed to access deployment directory"
+msgstr ""
+
+#: src/liboozie/submittion.py:123
+#, python-format
+msgid "Path is not a directory: %s"
+msgstr ""
+
+#: src/liboozie/submittion.py:128
+#, python-format
+msgid "Error accessing directory '%s': %s"
+msgstr ""
+
+#: src/liboozie/types.py:273
+msgid "Insufficient permission"
+msgstr ""
+
+#: src/liboozie/types.py:274
+#, python-format
+msgid "Permission denied. User %(username)s cannot modify user %(user)s's job."
+msgstr ""
+

+ 72 - 0
desktop/libs/liboozie/src/liboozie/locale/pt/LC_MESSAGES/django.po

@@ -0,0 +1,72 @@
+# Portuguese translations for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: 2012-11-07 13:08-0800\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: pt <LL@li.org>\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/liboozie/conf.py:25
+msgid "URL to Oozie server. This is required for job submission."
+msgstr ""
+
+#: src/liboozie/conf.py:31
+msgid "Whether Oozie requires client to perform Kerberos authentication"
+msgstr ""
+
+#: src/liboozie/conf.py:38
+msgid ""
+"Location on HDFS where the workflows/coordinator are deployed when "
+"submitted by a non owner."
+msgstr ""
+
+#: src/liboozie/conf.py:59
+msgid ""
+"The deployment directory of Oozie workflows does not exist. Please run "
+"\"Setup App\" on the Oozie workflow page."
+msgstr ""
+
+#: src/liboozie/conf.py:62
+msgid "Oozie Share Lib not installed in default location."
+msgstr ""
+
+#: src/liboozie/submittion.py:60
+#, python-format
+msgid "Submission already submitted (Oozie job id %s)"
+msgstr ""
+
+#: src/liboozie/submittion.py:84
+msgid "Failed to access deployment directory"
+msgstr ""
+
+#: src/liboozie/submittion.py:123
+#, python-format
+msgid "Path is not a directory: %s"
+msgstr ""
+
+#: src/liboozie/submittion.py:128
+#, python-format
+msgid "Error accessing directory '%s': %s"
+msgstr ""
+
+#: src/liboozie/types.py:273
+msgid "Insufficient permission"
+msgstr ""
+
+#: src/liboozie/types.py:274
+#, python-format
+msgid "Permission denied. User %(username)s cannot modify user %(user)s's job."
+msgstr ""
+

+ 72 - 0
desktop/libs/liboozie/src/liboozie/locale/pt_BR/LC_MESSAGES/django.po

@@ -0,0 +1,72 @@
+# Portuguese (Brazil) translations for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: 2012-11-07 13:08-0800\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: pt_BR <LL@li.org>\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/liboozie/conf.py:25
+msgid "URL to Oozie server. This is required for job submission."
+msgstr ""
+
+#: src/liboozie/conf.py:31
+msgid "Whether Oozie requires client to perform Kerberos authentication"
+msgstr ""
+
+#: src/liboozie/conf.py:38
+msgid ""
+"Location on HDFS where the workflows/coordinator are deployed when "
+"submitted by a non owner."
+msgstr ""
+
+#: src/liboozie/conf.py:59
+msgid ""
+"The deployment directory of Oozie workflows does not exist. Please run "
+"\"Setup App\" on the Oozie workflow page."
+msgstr ""
+
+#: src/liboozie/conf.py:62
+msgid "Oozie Share Lib not installed in default location."
+msgstr ""
+
+#: src/liboozie/submittion.py:60
+#, python-format
+msgid "Submission already submitted (Oozie job id %s)"
+msgstr ""
+
+#: src/liboozie/submittion.py:84
+msgid "Failed to access deployment directory"
+msgstr ""
+
+#: src/liboozie/submittion.py:123
+#, python-format
+msgid "Path is not a directory: %s"
+msgstr ""
+
+#: src/liboozie/submittion.py:128
+#, python-format
+msgid "Error accessing directory '%s': %s"
+msgstr ""
+
+#: src/liboozie/types.py:273
+msgid "Insufficient permission"
+msgstr ""
+
+#: src/liboozie/types.py:274
+#, python-format
+msgid "Permission denied. User %(username)s cannot modify user %(user)s's job."
+msgstr ""
+

+ 72 - 0
desktop/libs/liboozie/src/liboozie/locale/zh_CN/LC_MESSAGES/django.po

@@ -0,0 +1,72 @@
+# Chinese (China) translations for Hue.
+# Copyright (C) 2012 Cloudera, Inc
+# This file is distributed under the same license as the Hue project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Hue VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2012-11-07 13:08-0800\n"
+"PO-Revision-Date: 2012-11-07 13:08-0800\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: zh_CN <LL@li.org>\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 0.9.6\n"
+
+#: src/liboozie/conf.py:25
+msgid "URL to Oozie server. This is required for job submission."
+msgstr ""
+
+#: src/liboozie/conf.py:31
+msgid "Whether Oozie requires client to perform Kerberos authentication"
+msgstr ""
+
+#: src/liboozie/conf.py:38
+msgid ""
+"Location on HDFS where the workflows/coordinator are deployed when "
+"submitted by a non owner."
+msgstr ""
+
+#: src/liboozie/conf.py:59
+msgid ""
+"The deployment directory of Oozie workflows does not exist. Please run "
+"\"Setup App\" on the Oozie workflow page."
+msgstr ""
+
+#: src/liboozie/conf.py:62
+msgid "Oozie Share Lib not installed in default location."
+msgstr ""
+
+#: src/liboozie/submittion.py:60
+#, python-format
+msgid "Submission already submitted (Oozie job id %s)"
+msgstr ""
+
+#: src/liboozie/submittion.py:84
+msgid "Failed to access deployment directory"
+msgstr ""
+
+#: src/liboozie/submittion.py:123
+#, python-format
+msgid "Path is not a directory: %s"
+msgstr ""
+
+#: src/liboozie/submittion.py:128
+#, python-format
+msgid "Error accessing directory '%s': %s"
+msgstr ""
+
+#: src/liboozie/types.py:273
+msgid "Insufficient permission"
+msgstr ""
+
+#: src/liboozie/types.py:274
+#, python-format
+msgid "Permission denied. User %(username)s cannot modify user %(user)s's job."
+msgstr ""
+