Update translate

develop
parent c7f782dfa2
commit dee244f9b2

File diff suppressed because it is too large Load Diff

@ -1131,3 +1131,16 @@ msgstr "Точка монтирования '%s' используется бол
msgid "Bind mount points does not use filesystem"
msgstr "Bind-точка монтирования не использует файловую систему"
msgid ""
"{device} should, but cannot be formatted, as it is mounted to {mountpoint} "
"on the current system"
msgstr ""
msgid ""
"{device} cannot be formatted, as it is mounted to {mountpoint} on the "
"current system"
msgstr ""
msgid "Failed to get user profile from domain"
msgstr ""

@ -662,3 +662,35 @@ msgstr "не найдена опция"
msgid "no such options"
msgstr "не найдены опции"
msgid "Each entry must contains %d field(s)"
msgstr ""
msgid "Wrong variable name %s"
msgstr ""
msgid ""
"Headers of directory templates and headers of files on the first level "
"should include the 'cl_name' variable or action variable."
msgstr ""
msgid "verbosity output"
msgstr ""
msgid "Verbosity output"
msgstr ""
msgid "username"
msgstr ""
msgid "User name"
msgstr ""
msgid "User %s does not exist"
msgstr ""
msgid "failed. (socket error: '%s')"
msgstr ""
msgid "Request timed out"
msgstr ""

@ -28,7 +28,7 @@ import distutils.command.build
import distutils.command.install
import distutils.command.install_egg_info
locales = ("ru","bg")
locales = ("ru","bg","fr")
def cout(string):
sys.stdout.write(string)
@ -66,7 +66,7 @@ class build( distutils.command.build.build ) :
distutils.command.build.build.run( self )
def has_po( self ) :
return len(glob.glob("ru/*.po")) > 0
return any(len(glob.glob("%s/*.po"%x))>0 for x in ("ru","fr"))
sub_commands = distutils.command.build.build.sub_commands + [
('build_po',has_po),
]

Loading…
Cancel
Save