diff --git a/.gitignore b/.gitignore index 6e4b9779..5549df25 100644 --- a/.gitignore +++ b/.gitignore @@ -210,3 +210,4 @@ urbackup/backup_client.db-journal session_idents.txt urbackup/server_ident.priv urbackup/server_ident.pub +urbackupserver/www/polib.pyc diff --git a/urbackupserver/www/.tx/config b/urbackupserver/www/.tx/config new file mode 100644 index 00000000..f135e637 --- /dev/null +++ b/urbackupserver/www/.tx/config @@ -0,0 +1,8 @@ +[main] +host = https://www.transifex.com + +[urbackup.webinterface] +file_filter = translations/urbackup.webinterface/.po +source_lang = en +type = PO + diff --git a/urbackupserver/www/polib.py b/urbackupserver/www/polib.py new file mode 100644 index 00000000..59a5f077 --- /dev/null +++ b/urbackupserver/www/polib.py @@ -0,0 +1,1817 @@ +# -* coding: utf-8 -*- +# +# License: MIT (see LICENSE file provided) +# vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: + +""" +**polib** allows you to manipulate, create, modify gettext files (pot, po and +mo files). You can load existing files, iterate through it's entries, add, +modify entries, comments or metadata, etc. or create new po files from scratch. + +**polib** provides a simple and pythonic API via the :func:`~polib.pofile` and +:func:`~polib.mofile` convenience functions. +""" + +__author__ = 'David Jean Louis ' +__version__ = '1.0.4' +__all__ = ['pofile', 'POFile', 'POEntry', 'mofile', 'MOFile', 'MOEntry', + 'default_encoding', 'escape', 'unescape', 'detect_encoding', ] + +import array +import codecs +import os +import re +import struct +import sys +import textwrap + +try: + import io +except ImportError: + # replacement of io.open() for python < 2.6 + # we use codecs instead + class io(object): + @staticmethod + def open(fpath, mode='r', encoding=None): + return codecs.open(fpath, mode, encoding) + + +# the default encoding to use when encoding cannot be detected +default_encoding = 'utf-8' + +# python 2/3 compatibility helpers {{{ + + +if sys.version_info[:2] < (3, 0): + PY3 = False + text_type = unicode + + def b(s): + return s + + def u(s): + return unicode(s, "unicode_escape") + +else: + PY3 = True + text_type = str + + def b(s): + return s.encode("latin-1") + + def u(s): + return s +# }}} +# _pofile_or_mofile {{{ + + +def _pofile_or_mofile(f, type, **kwargs): + """ + Internal function used by :func:`polib.pofile` and :func:`polib.mofile` to + honor the DRY concept. + """ + # get the file encoding + enc = kwargs.get('encoding') + if enc is None: + enc = detect_encoding(f, type == 'mofile') + + # parse the file + kls = type == 'pofile' and _POFileParser or _MOFileParser + parser = kls( + f, + encoding=enc, + check_for_duplicates=kwargs.get('check_for_duplicates', False), + klass=kwargs.get('klass') + ) + instance = parser.parse() + instance.wrapwidth = kwargs.get('wrapwidth', 78) + return instance +# }}} +# _is_file {{{ + + +def _is_file(filename_or_contents): + """ + Safely returns the value of os.path.exists(filename_or_contents). + + Arguments: + + ``filename_or_contents`` + either a filename, or a string holding the contents of some file. + In the latter case, this function will always return False. + """ + try: + return os.path.exists(filename_or_contents) + except (ValueError, UnicodeEncodeError): + return False +# }}} +# function pofile() {{{ + + +def pofile(pofile, **kwargs): + """ + Convenience function that parses the po or pot file ``pofile`` and returns + a :class:`~polib.POFile` instance. + + Arguments: + + ``pofile`` + string, full or relative path to the po/pot file or its content (data). + + ``wrapwidth`` + integer, the wrap width, only useful when the ``-w`` option was passed + to xgettext (optional, default: ``78``). + + ``encoding`` + string, the encoding to use (e.g. "utf-8") (default: ``None``, the + encoding will be auto-detected). + + ``check_for_duplicates`` + whether to check for duplicate entries when adding entries to the + file (optional, default: ``False``). + + ``klass`` + class which is used to instantiate the return value (optional, + default: ``None``, the return value with be a :class:`~polib.POFile` + instance). + """ + return _pofile_or_mofile(pofile, 'pofile', **kwargs) +# }}} +# function mofile() {{{ + + +def mofile(mofile, **kwargs): + """ + Convenience function that parses the mo file ``mofile`` and returns a + :class:`~polib.MOFile` instance. + + Arguments: + + ``mofile`` + string, full or relative path to the mo file or its content (data). + + ``wrapwidth`` + integer, the wrap width, only useful when the ``-w`` option was passed + to xgettext to generate the po file that was used to format the mo file + (optional, default: ``78``). + + ``encoding`` + string, the encoding to use (e.g. "utf-8") (default: ``None``, the + encoding will be auto-detected). + + ``check_for_duplicates`` + whether to check for duplicate entries when adding entries to the + file (optional, default: ``False``). + + ``klass`` + class which is used to instantiate the return value (optional, + default: ``None``, the return value with be a :class:`~polib.POFile` + instance). + """ + return _pofile_or_mofile(mofile, 'mofile', **kwargs) +# }}} +# function detect_encoding() {{{ + + +def detect_encoding(file, binary_mode=False): + """ + Try to detect the encoding used by the ``file``. The ``file`` argument can + be a PO or MO file path or a string containing the contents of the file. + If the encoding cannot be detected, the function will return the value of + ``default_encoding``. + + Arguments: + + ``file`` + string, full or relative path to the po/mo file or its content. + + ``binary_mode`` + boolean, set this to True if ``file`` is a mo file. + """ + PATTERN = r'"?Content-Type:.+? charset=([\w_\-:\.]+)' + rxt = re.compile(u(PATTERN)) + rxb = re.compile(b(PATTERN)) + + def charset_exists(charset): + """Check whether ``charset`` is valid or not.""" + try: + codecs.lookup(charset) + except LookupError: + return False + return True + + if not _is_file(file): + match = rxt.search(file) + if match: + enc = match.group(1).strip() + if charset_exists(enc): + return enc + else: + # For PY3, always treat as binary + if binary_mode or PY3: + mode = 'rb' + rx = rxb + else: + mode = 'r' + rx = rxt + f = open(file, mode) + for l in f.readlines(): + match = rx.search(l) + if match: + f.close() + enc = match.group(1).strip() + if not isinstance(enc, text_type): + enc = enc.decode('utf-8') + if charset_exists(enc): + return enc + f.close() + return default_encoding +# }}} +# function escape() {{{ + + +def escape(st): + """ + Escapes the characters ``\\\\``, ``\\t``, ``\\n``, ``\\r`` and ``"`` in + the given string ``st`` and returns it. + """ + return st.replace('\\', r'\\')\ + .replace('\t', r'\t')\ + .replace('\r', r'\r')\ + .replace('\n', r'\n')\ + .replace('\"', r'\"') +# }}} +# function unescape() {{{ + + +def unescape(st): + """ + Unescapes the characters ``\\\\``, ``\\t``, ``\\n``, ``\\r`` and ``"`` in + the given string ``st`` and returns it. + """ + def unescape_repl(m): + m = m.group(1) + if m == 'n': + return '\n' + if m == 't': + return '\t' + if m == 'r': + return '\r' + if m == '\\': + return '\\' + return m # handles escaped double quote + return re.sub(r'\\(\\|n|t|r|")', unescape_repl, st) +# }}} +# class _BaseFile {{{ + + +class _BaseFile(list): + """ + Common base class for the :class:`~polib.POFile` and :class:`~polib.MOFile` + classes. This class should **not** be instanciated directly. + """ + + def __init__(self, *args, **kwargs): + """ + Constructor, accepts the following keyword arguments: + + ``pofile`` + string, the path to the po or mo file, or its content as a string. + + ``wrapwidth`` + integer, the wrap width, only useful when the ``-w`` option was + passed to xgettext (optional, default: ``78``). + + ``encoding`` + string, the encoding to use, defaults to ``default_encoding`` + global variable (optional). + + ``check_for_duplicates`` + whether to check for duplicate entries when adding entries to the + file, (optional, default: ``False``). + """ + list.__init__(self) + # the opened file handle + pofile = kwargs.get('pofile', None) + if pofile and _is_file(pofile): + self.fpath = pofile + else: + self.fpath = kwargs.get('fpath') + # the width at which lines should be wrapped + self.wrapwidth = kwargs.get('wrapwidth', 78) + # the file encoding + self.encoding = kwargs.get('encoding', default_encoding) + # whether to check for duplicate entries or not + self.check_for_duplicates = kwargs.get('check_for_duplicates', False) + # header + self.header = '' + # both po and mo files have metadata + self.metadata = {} + self.metadata_is_fuzzy = 0 + + def __unicode__(self): + """ + Returns the unicode representation of the file. + """ + ret = [] + entries = [self.metadata_as_entry()] + \ + [e for e in self if not e.obsolete] + for entry in entries: + ret.append(entry.__unicode__(self.wrapwidth)) + for entry in self.obsolete_entries(): + ret.append(entry.__unicode__(self.wrapwidth)) + ret = u('\n').join(ret) + + assert isinstance(ret, text_type) + #if type(ret) != text_type: + # return unicode(ret, self.encoding) + return ret + + if PY3: + def __str__(self): + return self.__unicode__() + else: + def __str__(self): + """ + Returns the string representation of the file. + """ + return unicode(self).encode(self.encoding) + + def __contains__(self, entry): + """ + Overriden ``list`` method to implement the membership test (in and + not in). + The method considers that an entry is in the file if it finds an entry + that has the same msgid (the test is **case sensitive**) and the same + msgctxt (or none for both entries). + + Argument: + + ``entry`` + an instance of :class:`~polib._BaseEntry`. + """ + return self.find(entry.msgid, by='msgid', msgctxt=entry.msgctxt) \ + is not None + + def __eq__(self, other): + return str(self) == str(other) + + def append(self, entry): + """ + Overriden method to check for duplicates entries, if a user tries to + add an entry that is already in the file, the method will raise a + ``ValueError`` exception. + + Argument: + + ``entry`` + an instance of :class:`~polib._BaseEntry`. + """ + if self.check_for_duplicates and entry in self: + raise ValueError('Entry "%s" already exists' % entry.msgid) + super(_BaseFile, self).append(entry) + + def insert(self, index, entry): + """ + Overriden method to check for duplicates entries, if a user tries to + add an entry that is already in the file, the method will raise a + ``ValueError`` exception. + + Arguments: + + ``index`` + index at which the entry should be inserted. + + ``entry`` + an instance of :class:`~polib._BaseEntry`. + """ + if self.check_for_duplicates and entry in self: + raise ValueError('Entry "%s" already exists' % entry.msgid) + super(_BaseFile, self).insert(index, entry) + + def metadata_as_entry(self): + """ + Returns the file metadata as a :class:`~polib.POFile` instance. + """ + e = POEntry(msgid='') + mdata = self.ordered_metadata() + if mdata: + strs = [] + for name, value in mdata: + # Strip whitespace off each line in a multi-line entry + strs.append('%s: %s' % (name, value)) + e.msgstr = '\n'.join(strs) + '\n' + if self.metadata_is_fuzzy: + e.flags.append('fuzzy') + return e + + def save(self, fpath=None, repr_method='__unicode__'): + """ + Saves the po file to ``fpath``. + If it is an existing file and no ``fpath`` is provided, then the + existing file is rewritten with the modified data. + + Keyword arguments: + + ``fpath`` + string, full or relative path to the file. + + ``repr_method`` + string, the method to use for output. + """ + if self.fpath is None and fpath is None: + raise IOError('You must provide a file path to save() method') + contents = getattr(self, repr_method)() + if fpath is None: + fpath = self.fpath + if repr_method == 'to_binary': + fhandle = open(fpath, 'wb') + else: + fhandle = io.open(fpath, 'w', encoding=self.encoding) + if not isinstance(contents, text_type): + contents = contents.decode(self.encoding) + fhandle.write(contents) + fhandle.close() + # set the file path if not set + if self.fpath is None and fpath: + self.fpath = fpath + + def find(self, st, by='msgid', include_obsolete_entries=False, + msgctxt=False): + """ + Find the entry which msgid (or property identified by the ``by`` + argument) matches the string ``st``. + + Keyword arguments: + + ``st`` + string, the string to search for. + + ``by`` + string, the property to use for comparison (default: ``msgid``). + + ``include_obsolete_entries`` + boolean, whether to also search in entries that are obsolete. + + ``msgctxt`` + string, allows to specify a specific message context for the + search. + """ + if include_obsolete_entries: + entries = self[:] + else: + entries = [e for e in self if not e.obsolete] + for e in entries: + if getattr(e, by) == st: + if msgctxt is not False and e.msgctxt != msgctxt: + continue + return e + return None + + def ordered_metadata(self): + """ + Convenience method that returns an ordered version of the metadata + dictionary. The return value is list of tuples (metadata name, + metadata_value). + """ + # copy the dict first + metadata = self.metadata.copy() + data_order = [ + 'Project-Id-Version', + 'Report-Msgid-Bugs-To', + 'POT-Creation-Date', + 'PO-Revision-Date', + 'Last-Translator', + 'Language-Team', + 'MIME-Version', + 'Content-Type', + 'Content-Transfer-Encoding' + ] + ordered_data = [] + for data in data_order: + try: + value = metadata.pop(data) + ordered_data.append((data, value)) + except KeyError: + pass + # the rest of the metadata will be alphabetically ordered since there + # are no specs for this AFAIK + for data in sorted(metadata.keys()): + value = metadata[data] + ordered_data.append((data, value)) + return ordered_data + + def to_binary(self): + """ + Return the binary representation of the file. + """ + offsets = [] + entries = self.translated_entries() + + # the keys are sorted in the .mo file + def cmp(_self, other): + # msgfmt compares entries with msgctxt if it exists + self_msgid = _self.msgctxt and _self.msgctxt or _self.msgid + other_msgid = other.msgctxt and other.msgctxt or other.msgid + if self_msgid > other_msgid: + return 1 + elif self_msgid < other_msgid: + return -1 + else: + return 0 + # add metadata entry + entries.sort(key=lambda o: o.msgctxt or o.msgid) + mentry = self.metadata_as_entry() + #mentry.msgstr = mentry.msgstr.replace('\\n', '').lstrip() + entries = [mentry] + entries + entries_len = len(entries) + ids, strs = b(''), b('') + for e in entries: + # For each string, we need size and file offset. Each string is + # NUL terminated; the NUL does not count into the size. + msgid = b('') + if e.msgctxt: + # Contexts are stored by storing the concatenation of the + # context, a byte, and the original string + msgid = self._encode(e.msgctxt + '\4') + if e.msgid_plural: + msgstr = [] + for index in sorted(e.msgstr_plural.keys()): + msgstr.append(e.msgstr_plural[index]) + msgid += self._encode(e.msgid + '\0' + e.msgid_plural) + msgstr = self._encode('\0'.join(msgstr)) + else: + msgid += self._encode(e.msgid) + msgstr = self._encode(e.msgstr) + offsets.append((len(ids), len(msgid), len(strs), len(msgstr))) + ids += msgid + b('\0') + strs += msgstr + b('\0') + + # The header is 7 32-bit unsigned integers. + keystart = 7 * 4 + 16 * entries_len + # and the values start after the keys + valuestart = keystart + len(ids) + koffsets = [] + voffsets = [] + # The string table first has the list of keys, then the list of values. + # Each entry has first the size of the string, then the file offset. + for o1, l1, o2, l2 in offsets: + koffsets += [l1, o1 + keystart] + voffsets += [l2, o2 + valuestart] + offsets = koffsets + voffsets + + output = struct.pack( + "Iiiiiii", + # Magic number + MOFile.MAGIC, + # Version + 0, + # number of entries + entries_len, + # start of key index + 7 * 4, + # start of value index + 7 * 4 + entries_len * 8, + # size and offset of hash table, we don't use hash tables + 0, keystart + + ) + if PY3 and sys.version_info.minor > 1: # python 3.2 or superior + output += array.array("i", offsets).tobytes() + else: + output += array.array("i", offsets).tostring() + output += ids + output += strs + return output + + def _encode(self, mixed): + """ + Encodes the given ``mixed`` argument with the file encoding if and + only if it's an unicode string and returns the encoded string. + """ + if isinstance(mixed, text_type): + mixed = mixed.encode(self.encoding) + return mixed +# }}} +# class POFile {{{ + + +class POFile(_BaseFile): + """ + Po (or Pot) file reader/writer. + This class inherits the :class:`~polib._BaseFile` class and, by extension, + the python ``list`` type. + """ + + def __unicode__(self): + """ + Returns the unicode representation of the po file. + """ + ret, headers = '', self.header.split('\n') + for header in headers: + if header[:1] in [',', ':']: + ret += '#%s\n' % header + else: + ret += '# %s\n' % header + + if not isinstance(ret, text_type): + ret = ret.decode(self.encoding) + + return ret + _BaseFile.__unicode__(self) + + def save_as_mofile(self, fpath): + """ + Saves the binary representation of the file to given ``fpath``. + + Keyword argument: + + ``fpath`` + string, full or relative path to the mo file. + """ + _BaseFile.save(self, fpath, 'to_binary') + + def percent_translated(self): + """ + Convenience method that returns the percentage of translated + messages. + """ + total = len([e for e in self if not e.obsolete]) + if total == 0: + return 100 + translated = len(self.translated_entries()) + return int((100.00 / float(total)) * translated) + + def translated_entries(self): + """ + Convenience method that returns the list of translated entries. + """ + return [e for e in self if e.translated()] + + def untranslated_entries(self): + """ + Convenience method that returns the list of untranslated entries. + """ + return [e for e in self if not e.translated() and not e.obsolete + and not 'fuzzy' in e.flags] + + def fuzzy_entries(self): + """ + Convenience method that returns the list of fuzzy entries. + """ + return [e for e in self if 'fuzzy' in e.flags] + + def obsolete_entries(self): + """ + Convenience method that returns the list of obsolete entries. + """ + return [e for e in self if e.obsolete] + + def merge(self, refpot): + """ + Convenience method that merges the current pofile with the pot file + provided. It behaves exactly as the gettext msgmerge utility: + + * comments of this file will be preserved, but extracted comments and + occurrences will be discarded; + * any translations or comments in the file will be discarded, however, + dot comments and file positions will be preserved; + * the fuzzy flags are preserved. + + Keyword argument: + + ``refpot`` + object POFile, the reference catalog. + """ + # Store entries in dict/set for faster access + self_entries = dict((entry.msgid, entry) for entry in self) + refpot_msgids = set(entry.msgid for entry in refpot) + # Merge entries that are in the refpot + for entry in refpot: + e = self_entries.get(entry.msgid) + if e is None: + e = POEntry() + self.append(e) + e.merge(entry) + # ok, now we must "obsolete" entries that are not in the refpot anymore + for entry in self: + if entry.msgid not in refpot_msgids: + entry.obsolete = True +# }}} +# class MOFile {{{ + + +class MOFile(_BaseFile): + """ + Mo file reader/writer. + This class inherits the :class:`~polib._BaseFile` class and, by + extension, the python ``list`` type. + """ + MAGIC = 0x950412de + MAGIC_SWAPPED = 0xde120495 + + def __init__(self, *args, **kwargs): + """ + Constructor, accepts all keywords arguments accepted by + :class:`~polib._BaseFile` class. + """ + _BaseFile.__init__(self, *args, **kwargs) + self.magic_number = None + self.version = 0 + + def save_as_pofile(self, fpath): + """ + Saves the mofile as a pofile to ``fpath``. + + Keyword argument: + + ``fpath`` + string, full or relative path to the file. + """ + _BaseFile.save(self, fpath) + + def save(self, fpath=None): + """ + Saves the mofile to ``fpath``. + + Keyword argument: + + ``fpath`` + string, full or relative path to the file. + """ + _BaseFile.save(self, fpath, 'to_binary') + + def percent_translated(self): + """ + Convenience method to keep the same interface with POFile instances. + """ + return 100 + + def translated_entries(self): + """ + Convenience method to keep the same interface with POFile instances. + """ + return self + + def untranslated_entries(self): + """ + Convenience method to keep the same interface with POFile instances. + """ + return [] + + def fuzzy_entries(self): + """ + Convenience method to keep the same interface with POFile instances. + """ + return [] + + def obsolete_entries(self): + """ + Convenience method to keep the same interface with POFile instances. + """ + return [] +# }}} +# class _BaseEntry {{{ + + +class _BaseEntry(object): + """ + Base class for :class:`~polib.POEntry` and :class:`~polib.MOEntry` classes. + This class should **not** be instanciated directly. + """ + + def __init__(self, *args, **kwargs): + """ + Constructor, accepts the following keyword arguments: + + ``msgid`` + string, the entry msgid. + + ``msgstr`` + string, the entry msgstr. + + ``msgid_plural`` + string, the entry msgid_plural. + + ``msgstr_plural`` + list, the entry msgstr_plural lines. + + ``msgctxt`` + string, the entry context (msgctxt). + + ``obsolete`` + bool, whether the entry is "obsolete" or not. + + ``encoding`` + string, the encoding to use, defaults to ``default_encoding`` + global variable (optional). + """ + self.msgid = kwargs.get('msgid', '') + self.msgstr = kwargs.get('msgstr', '') + self.msgid_plural = kwargs.get('msgid_plural', '') + self.msgstr_plural = kwargs.get('msgstr_plural', {}) + self.msgctxt = kwargs.get('msgctxt', None) + self.obsolete = kwargs.get('obsolete', False) + self.encoding = kwargs.get('encoding', default_encoding) + + def __unicode__(self, wrapwidth=78): + """ + Returns the unicode representation of the entry. + """ + if self.obsolete: + delflag = '#~ ' + else: + delflag = '' + ret = [] + # write the msgctxt if any + if self.msgctxt is not None: + ret += self._str_field("msgctxt", delflag, "", self.msgctxt, + wrapwidth) + # write the msgid + ret += self._str_field("msgid", delflag, "", self.msgid, wrapwidth) + # write the msgid_plural if any + if self.msgid_plural: + ret += self._str_field("msgid_plural", delflag, "", + self.msgid_plural, wrapwidth) + if self.msgstr_plural: + # write the msgstr_plural if any + msgstrs = self.msgstr_plural + keys = list(msgstrs) + keys.sort() + for index in keys: + msgstr = msgstrs[index] + plural_index = '[%s]' % index + ret += self._str_field("msgstr", delflag, plural_index, msgstr, + wrapwidth) + else: + # otherwise write the msgstr + ret += self._str_field("msgstr", delflag, "", self.msgstr, + wrapwidth) + ret.append('') + ret = u('\n').join(ret) + return ret + + if PY3: + def __str__(self): + return self.__unicode__() + else: + def __str__(self): + """ + Returns the string representation of the entry. + """ + return unicode(self).encode(self.encoding) + + def __eq__(self, other): + return str(self) == str(other) + + def _str_field(self, fieldname, delflag, plural_index, field, + wrapwidth=78): + lines = field.splitlines(True) + if len(lines) > 1: + lines = [''] + lines # start with initial empty line + else: + escaped_field = escape(field) + specialchars_count = 0 + for c in ['\\', '\n', '\r', '\t', '"']: + specialchars_count += field.count(c) + # comparison must take into account fieldname length + one space + # + 2 quotes (eg. msgid "") + flength = len(fieldname) + 3 + if plural_index: + flength += len(plural_index) + real_wrapwidth = wrapwidth - flength + specialchars_count + if wrapwidth > 0 and len(field) > real_wrapwidth: + # Wrap the line but take field name into account + lines = [''] + [unescape(item) for item in wrap( + escaped_field, + wrapwidth - 2, # 2 for quotes "" + drop_whitespace=False, + break_long_words=False + )] + else: + lines = [field] + if fieldname.startswith('previous_'): + # quick and dirty trick to get the real field name + fieldname = fieldname[9:] + + ret = ['%s%s%s "%s"' % (delflag, fieldname, plural_index, + escape(lines.pop(0)))] + for mstr in lines: + #import pdb; pdb.set_trace() + ret.append('%s"%s"' % (delflag, escape(mstr))) + return ret +# }}} +# class POEntry {{{ + + +class POEntry(_BaseEntry): + """ + Represents a po file entry. + """ + + def __init__(self, *args, **kwargs): + """ + Constructor, accepts the following keyword arguments: + + ``comment`` + string, the entry comment. + + ``tcomment`` + string, the entry translator comment. + + ``occurrences`` + list, the entry occurrences. + + ``flags`` + list, the entry flags. + + ``previous_msgctxt`` + string, the entry previous context. + + ``previous_msgid`` + string, the entry previous msgid. + + ``previous_msgid_plural`` + string, the entry previous msgid_plural. + """ + _BaseEntry.__init__(self, *args, **kwargs) + self.comment = kwargs.get('comment', '') + self.tcomment = kwargs.get('tcomment', '') + self.occurrences = kwargs.get('occurrences', []) + self.flags = kwargs.get('flags', []) + self.previous_msgctxt = kwargs.get('previous_msgctxt', None) + self.previous_msgid = kwargs.get('previous_msgid', None) + self.previous_msgid_plural = kwargs.get('previous_msgid_plural', None) + + def __unicode__(self, wrapwidth=78): + """ + Returns the unicode representation of the entry. + """ + if self.obsolete: + return _BaseEntry.__unicode__(self, wrapwidth) + + ret = [] + # comments first, if any (with text wrapping as xgettext does) + comments = [('comment', '#. '), ('tcomment', '# ')] + for c in comments: + val = getattr(self, c[0]) + if val: + for comment in val.split('\n'): + if wrapwidth > 0 and len(comment) + len(c[1]) > wrapwidth: + ret += wrap( + comment, + wrapwidth, + initial_indent=c[1], + subsequent_indent=c[1], + break_long_words=False + ) + else: + ret.append('%s%s' % (c[1], comment)) + + # occurrences (with text wrapping as xgettext does) + if self.occurrences: + filelist = [] + for fpath, lineno in self.occurrences: + if lineno: + filelist.append('%s:%s' % (fpath, lineno)) + else: + filelist.append(fpath) + filestr = ' '.join(filelist) + if wrapwidth > 0 and len(filestr) + 3 > wrapwidth: + # textwrap split words that contain hyphen, this is not + # what we want for filenames, so the dirty hack is to + # temporally replace hyphens with a char that a file cannot + # contain, like "*" + ret += [l.replace('*', '-') for l in wrap( + filestr.replace('-', '*'), + wrapwidth, + initial_indent='#: ', + subsequent_indent='#: ', + break_long_words=False + )] + else: + ret.append('#: ' + filestr) + + # flags (TODO: wrapping ?) + if self.flags: + ret.append('#, %s' % ', '.join(self.flags)) + + # previous context and previous msgid/msgid_plural + fields = ['previous_msgctxt', 'previous_msgid', + 'previous_msgid_plural'] + for f in fields: + val = getattr(self, f) + if val: + ret += self._str_field(f, "#| ", "", val, wrapwidth) + + ret.append(_BaseEntry.__unicode__(self, wrapwidth)) + ret = u('\n').join(ret) + + assert isinstance(ret, text_type) + #if type(ret) != types.UnicodeType: + # return unicode(ret, self.encoding) + return ret + + def __cmp__(self, other): + """ + Called by comparison operations if rich comparison is not defined. + """ + + # First: Obsolete test + if self.obsolete != other.obsolete: + if self.obsolete: + return -1 + else: + return 1 + # Work on a copy to protect original + occ1 = sorted(self.occurrences[:]) + occ2 = sorted(other.occurrences[:]) + pos = 0 + for entry1 in occ1: + try: + entry2 = occ2[pos] + except IndexError: + return 1 + pos = pos + 1 + if entry1[0] != entry2[0]: + if entry1[0] > entry2[0]: + return 1 + else: + return -1 + if entry1[1] != entry2[1]: + if entry1[1] > entry2[1]: + return 1 + else: + return -1 + # Finally: Compare message ID + if self.msgid > other.msgid: + return 1 + elif self.msgid < other.msgid: + return -1 + return 0 + + def __gt__(self, other): + return self.__cmp__(other) > 0 + + def __lt__(self, other): + return self.__cmp__(other) < 0 + + def __ge__(self, other): + return self.__cmp__(other) >= 0 + + def __le__(self, other): + return self.__cmp__(other) <= 0 + + def __eq__(self, other): + return self.__cmp__(other) == 0 + + def __ne__(self, other): + return self.__cmp__(other) != 0 + + def translated(self): + """ + Returns ``True`` if the entry has been translated or ``False`` + otherwise. + """ + if self.obsolete or 'fuzzy' in self.flags: + return False + if self.msgstr != '': + return True + if self.msgstr_plural: + for pos in self.msgstr_plural: + if self.msgstr_plural[pos] == '': + return False + return True + return False + + def merge(self, other): + """ + Merge the current entry with the given pot entry. + """ + self.msgid = other.msgid + self.msgctxt = other.msgctxt + self.occurrences = other.occurrences + self.comment = other.comment + fuzzy = 'fuzzy' in self.flags + self.flags = other.flags[:] # clone flags + if fuzzy: + self.flags.append('fuzzy') + self.msgid_plural = other.msgid_plural + self.obsolete = other.obsolete + self.previous_msgctxt = other.previous_msgctxt + self.previous_msgid = other.previous_msgid + self.previous_msgid_plural = other.previous_msgid_plural + if other.msgstr_plural: + for pos in other.msgstr_plural: + try: + # keep existing translation at pos if any + self.msgstr_plural[pos] + except KeyError: + self.msgstr_plural[pos] = '' + + def __hash__(self): + return hash((self.msgid, self.msgstr)) +# }}} +# class MOEntry {{{ + + +class MOEntry(_BaseEntry): + """ + Represents a mo file entry. + """ + def __init__(self, *args, **kwargs): + """ + Constructor, accepts the following keyword arguments, + for consistency with :class:`~polib.POEntry`: + + ``comment`` + ``tcomment`` + ``occurrences`` + ``flags`` + ``previous_msgctxt`` + ``previous_msgid`` + ``previous_msgid_plural`` + + Note: even though these keyword arguments are accepted, + they hold no real meaning in the context of MO files + and are simply ignored. + """ + _BaseEntry.__init__(self, *args, **kwargs) + self.comment = '' + self.tcomment = '' + self.occurrences = [] + self.flags = [] + self.previous_msgctxt = None + self.previous_msgid = None + self.previous_msgid_plural = None + + def __hash__(self): + return hash((self.msgid, self.msgstr)) + +# }}} +# class _POFileParser {{{ + + +class _POFileParser(object): + """ + A finite state machine to parse efficiently and correctly po + file format. + """ + + def __init__(self, pofile, *args, **kwargs): + """ + Constructor. + + Keyword arguments: + + ``pofile`` + string, path to the po file or its content + + ``encoding`` + string, the encoding to use, defaults to ``default_encoding`` + global variable (optional). + + ``check_for_duplicates`` + whether to check for duplicate entries when adding entries to the + file (optional, default: ``False``). + """ + enc = kwargs.get('encoding', default_encoding) + if _is_file(pofile): + try: + self.fhandle = io.open(pofile, 'rt', encoding=enc) + except LookupError: + enc = default_encoding + self.fhandle = io.open(pofile, 'rt', encoding=enc) + else: + self.fhandle = pofile.splitlines() + + klass = kwargs.get('klass') + if klass is None: + klass = POFile + self.instance = klass( + pofile=pofile, + encoding=enc, + check_for_duplicates=kwargs.get('check_for_duplicates', False) + ) + self.transitions = {} + self.current_entry = POEntry() + self.current_state = 'st' + self.current_token = None + # two memo flags used in handlers + self.msgstr_index = 0 + self.entry_obsolete = 0 + # Configure the state machine, by adding transitions. + # Signification of symbols: + # * ST: Beginning of the file (start) + # * HE: Header + # * TC: a translation comment + # * GC: a generated comment + # * OC: a file/line occurence + # * FL: a flags line + # * CT: a message context + # * PC: a previous msgctxt + # * PM: a previous msgid + # * PP: a previous msgid_plural + # * MI: a msgid + # * MP: a msgid plural + # * MS: a msgstr + # * MX: a msgstr plural + # * MC: a msgid or msgstr continuation line + all = ['st', 'he', 'gc', 'oc', 'fl', 'ct', 'pc', 'pm', 'pp', 'tc', + 'ms', 'mp', 'mx', 'mi'] + + self.add('tc', ['st', 'he'], 'he') + self.add('tc', ['gc', 'oc', 'fl', 'tc', 'pc', 'pm', 'pp', 'ms', + 'mp', 'mx', 'mi'], 'tc') + self.add('gc', all, 'gc') + self.add('oc', all, 'oc') + self.add('fl', all, 'fl') + self.add('pc', all, 'pc') + self.add('pm', all, 'pm') + self.add('pp', all, 'pp') + self.add('ct', ['st', 'he', 'gc', 'oc', 'fl', 'tc', 'pc', 'pm', + 'pp', 'ms', 'mx'], 'ct') + self.add('mi', ['st', 'he', 'gc', 'oc', 'fl', 'ct', 'tc', 'pc', + 'pm', 'pp', 'ms', 'mx'], 'mi') + self.add('mp', ['tc', 'gc', 'pc', 'pm', 'pp', 'mi'], 'mp') + self.add('ms', ['mi', 'mp', 'tc'], 'ms') + self.add('mx', ['mi', 'mx', 'mp', 'tc'], 'mx') + self.add('mc', ['ct', 'mi', 'mp', 'ms', 'mx', 'pm', 'pp', 'pc'], 'mc') + + def parse(self): + """ + Run the state machine, parse the file line by line and call process() + with the current matched symbol. + """ + i = 0 + + keywords = { + 'msgctxt': 'ct', + 'msgid': 'mi', + 'msgstr': 'ms', + 'msgid_plural': 'mp', + } + prev_keywords = { + 'msgid_plural': 'pp', + 'msgid': 'pm', + 'msgctxt': 'pc', + } + + for line in self.fhandle: + i += 1 + line = line.strip() + if line == '': + continue + + tokens = line.split(None, 2) + nb_tokens = len(tokens) + + if tokens[0] == '#~|': + continue + + if tokens[0] == '#~' and nb_tokens > 1: + line = line[3:].strip() + tokens = tokens[1:] + nb_tokens -= 1 + self.entry_obsolete = 1 + else: + self.entry_obsolete = 0 + + # Take care of keywords like + # msgid, msgid_plural, msgctxt & msgstr. + if tokens[0] in keywords and nb_tokens > 1: + line = line[len(tokens[0]):].lstrip() + if re.search(r'([^\\]|^)"', line[1:-1]): + raise IOError('Syntax error in po file %s (line %s): ' + 'unescaped double quote found' % + (self.instance.fpath, i)) + self.current_token = line + self.process(keywords[tokens[0]], i) + continue + + self.current_token = line + is_real_entry = False + + if tokens[0] == '#:': + if nb_tokens <= 1: + continue + # we are on a occurrences line + self.process('oc', i) + + elif line[:1] == '"': + # we are on a continuation line + if re.search(r'([^\\]|^)"', line[1:-1]): + raise IOError('Syntax error in po file %s (line %s): ' + 'unescaped double quote found' % + (self.instance.fpath, i)) + self.process('mc', i) + + elif line[:7] == 'msgstr[': + # we are on a msgstr plural + self.process('mx', i) + + elif tokens[0] == '#,': + if nb_tokens <= 1: + continue + # we are on a flags line + self.process('fl', i) + + elif tokens[0] == '#' or tokens[0].startswith('##'): + if line == '#': + line += ' ' + # we are on a translator comment line + self.process('tc', i) + + elif tokens[0] == '#.': + if nb_tokens <= 1: + continue + # we are on a generated comment line + self.process('gc', i) + + elif tokens[0] == '#|': + if nb_tokens <= 1: + raise IOError('Syntax error in po file %s (line %s)' % + (self.instance.fpath, i)) + + # Remove the marker and any whitespace right after that. + line = line[2:].lstrip() + self.current_token = line + + if tokens[1].startswith('"'): + # Continuation of previous metadata. + self.process('mc', i) + continue + + if nb_tokens == 2: + # Invalid continuation line. + raise IOError('Syntax error in po file %s (line %s): ' + 'invalid continuation line' % + (self.instance.fpath, i)) + + # we are on a "previous translation" comment line, + if tokens[1] not in prev_keywords: + # Unknown keyword in previous translation comment. + raise IOError('Syntax error in po file %s (line %s): ' + 'unknown keyword %s' % + (self.instance.fpath, i, tokens[1])) + + # Remove the keyword and any whitespace + # between it and the starting quote. + line = line[len(tokens[1]):].lstrip() + self.current_token = line + self.process(prev_keywords[tokens[1]], i) + + else: + raise IOError('Syntax error in po file %s (line %s)' % + (self.instance.fpath, i)) + + if self.current_entry and not tokens[0].startswith('#'): + # since entries are added when another entry is found, we must add + # the last entry here (only if there are lines). Trailing comments + # are ignored + self.instance.append(self.current_entry) + + # before returning the instance, check if there's metadata and if + # so extract it in a dict + metadataentry = self.instance.find('') + if metadataentry: # metadata found + # remove the entry + self.instance.remove(metadataentry) + self.instance.metadata_is_fuzzy = metadataentry.flags + key = None + for msg in metadataentry.msgstr.splitlines(): + try: + key, val = msg.split(':', 1) + self.instance.metadata[key] = val.strip() + except (ValueError, KeyError): + if key is not None: + self.instance.metadata[key] += '\n' + msg.strip() + # close opened file + if not isinstance(self.fhandle, list): # must be file + self.fhandle.close() + return self.instance + + def add(self, symbol, states, next_state): + """ + Add a transition to the state machine. + + Keywords arguments: + + ``symbol`` + string, the matched token (two chars symbol). + + ``states`` + list, a list of states (two chars symbols). + + ``next_state`` + the next state the fsm will have after the action. + """ + for state in states: + action = getattr(self, 'handle_%s' % next_state) + self.transitions[(symbol, state)] = (action, next_state) + + def process(self, symbol, linenum): + """ + Process the transition corresponding to the current state and the + symbol provided. + + Keywords arguments: + + ``symbol`` + string, the matched token (two chars symbol). + + ``linenum`` + integer, the current line number of the parsed file. + """ + try: + (action, state) = self.transitions[(symbol, self.current_state)] + if action(): + self.current_state = state + except Exception: + raise IOError('Syntax error in po file (line %s)' % linenum) + + # state handlers + + def handle_he(self): + """Handle a header comment.""" + if self.instance.header != '': + self.instance.header += '\n' + self.instance.header += self.current_token[2:] + return 1 + + def handle_tc(self): + """Handle a translator comment.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry() + if self.current_entry.tcomment != '': + self.current_entry.tcomment += '\n' + tcomment = self.current_token.lstrip('#') + if tcomment.startswith(' '): + tcomment = tcomment[1:] + self.current_entry.tcomment += tcomment + return True + + def handle_gc(self): + """Handle a generated comment.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry() + if self.current_entry.comment != '': + self.current_entry.comment += '\n' + self.current_entry.comment += self.current_token[3:] + return True + + def handle_oc(self): + """Handle a file:num occurence.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry() + occurrences = self.current_token[3:].split() + for occurrence in occurrences: + if occurrence != '': + try: + fil, line = occurrence.split(':') + if not line.isdigit(): + fil = fil + line + line = '' + self.current_entry.occurrences.append((fil, line)) + except (ValueError, AttributeError): + self.current_entry.occurrences.append((occurrence, '')) + return True + + def handle_fl(self): + """Handle a flags line.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry() + self.current_entry.flags += [c.strip() for c in + self.current_token[3:].split(',')] + return True + + def handle_pp(self): + """Handle a previous msgid_plural line.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry() + self.current_entry.previous_msgid_plural = \ + unescape(self.current_token[1:-1]) + return True + + def handle_pm(self): + """Handle a previous msgid line.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry() + self.current_entry.previous_msgid = \ + unescape(self.current_token[1:-1]) + return True + + def handle_pc(self): + """Handle a previous msgctxt line.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry() + self.current_entry.previous_msgctxt = \ + unescape(self.current_token[1:-1]) + return True + + def handle_ct(self): + """Handle a msgctxt.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry() + self.current_entry.msgctxt = unescape(self.current_token[1:-1]) + return True + + def handle_mi(self): + """Handle a msgid.""" + if self.current_state in ['mc', 'ms', 'mx']: + self.instance.append(self.current_entry) + self.current_entry = POEntry() + self.current_entry.obsolete = self.entry_obsolete + self.current_entry.msgid = unescape(self.current_token[1:-1]) + return True + + def handle_mp(self): + """Handle a msgid plural.""" + self.current_entry.msgid_plural = unescape(self.current_token[1:-1]) + return True + + def handle_ms(self): + """Handle a msgstr.""" + self.current_entry.msgstr = unescape(self.current_token[1:-1]) + return True + + def handle_mx(self): + """Handle a msgstr plural.""" + index, value = self.current_token[7], self.current_token[11:-1] + self.current_entry.msgstr_plural[int(index)] = unescape(value) + self.msgstr_index = int(index) + return True + + def handle_mc(self): + """Handle a msgid or msgstr continuation line.""" + token = unescape(self.current_token[1:-1]) + if self.current_state == 'ct': + self.current_entry.msgctxt += token + elif self.current_state == 'mi': + self.current_entry.msgid += token + elif self.current_state == 'mp': + self.current_entry.msgid_plural += token + elif self.current_state == 'ms': + self.current_entry.msgstr += token + elif self.current_state == 'mx': + self.current_entry.msgstr_plural[self.msgstr_index] += token + elif self.current_state == 'pp': + token = token[3:] + self.current_entry.previous_msgid_plural += token + elif self.current_state == 'pm': + token = token[3:] + self.current_entry.previous_msgid += token + elif self.current_state == 'pc': + token = token[3:] + self.current_entry.previous_msgctxt += token + # don't change the current state + return False +# }}} +# class _MOFileParser {{{ + + +class _MOFileParser(object): + """ + A class to parse binary mo files. + """ + + def __init__(self, mofile, *args, **kwargs): + """ + Constructor. + + Keyword arguments: + + ``mofile`` + string, path to the mo file or its content + + ``encoding`` + string, the encoding to use, defaults to ``default_encoding`` + global variable (optional). + + ``check_for_duplicates`` + whether to check for duplicate entries when adding entries to the + file (optional, default: ``False``). + """ + self.fhandle = open(mofile, 'rb') + + klass = kwargs.get('klass') + if klass is None: + klass = MOFile + self.instance = klass( + fpath=mofile, + encoding=kwargs.get('encoding', default_encoding), + check_for_duplicates=kwargs.get('check_for_duplicates', False) + ) + + def __del__(self): + """ + Make sure the file is closed, this prevents warnings on unclosed file + when running tests with python >= 3.2. + """ + if self.fhandle: + self.fhandle.close() + + def parse(self): + """ + Build the instance with the file handle provided in the + constructor. + """ + # parse magic number + magic_number = self._readbinary(' 1: + entry = self._build_entry( + msgid=msgid_tokens[0], + msgid_plural=msgid_tokens[1], + msgstr_plural=dict((k, v) for k, v in + enumerate(msgstr.split(b('\0')))) + ) + else: + entry = self._build_entry(msgid=msgid, msgstr=msgstr) + self.instance.append(entry) + # close opened file + self.fhandle.close() + return self.instance + + def _build_entry(self, msgid, msgstr=None, msgid_plural=None, + msgstr_plural=None): + msgctxt_msgid = msgid.split(b('\x04')) + encoding = self.instance.encoding + if len(msgctxt_msgid) > 1: + kwargs = { + 'msgctxt': msgctxt_msgid[0].decode(encoding), + 'msgid': msgctxt_msgid[1].decode(encoding), + } + else: + kwargs = {'msgid': msgid.decode(encoding)} + if msgstr: + kwargs['msgstr'] = msgstr.decode(encoding) + if msgid_plural: + kwargs['msgid_plural'] = msgid_plural.decode(encoding) + if msgstr_plural: + for k in msgstr_plural: + msgstr_plural[k] = msgstr_plural[k].decode(encoding) + kwargs['msgstr_plural'] = msgstr_plural + return MOEntry(**kwargs) + + def _readbinary(self, fmt, numbytes): + """ + Private method that unpack n bytes of data using format . + It returns a tuple or a mixed value if the tuple length is 1. + """ + bytes = self.fhandle.read(numbytes) + tup = struct.unpack(fmt, bytes) + if len(tup) == 1: + return tup[0] + return tup +# }}} +# class TextWrapper {{{ + + +class TextWrapper(textwrap.TextWrapper): + """ + Subclass of textwrap.TextWrapper that backport the + drop_whitespace option. + """ + def __init__(self, *args, **kwargs): + drop_whitespace = kwargs.pop('drop_whitespace', True) + textwrap.TextWrapper.__init__(self, *args, **kwargs) + self.drop_whitespace = drop_whitespace + + def _wrap_chunks(self, chunks): + """_wrap_chunks(chunks : [string]) -> [string] + + Wrap a sequence of text chunks and return a list of lines of + length 'self.width' or less. (If 'break_long_words' is false, + some lines may be longer than this.) Chunks correspond roughly + to words and the whitespace between them: each chunk is + indivisible (modulo 'break_long_words'), but a line break can + come between any two chunks. Chunks should not have internal + whitespace; ie. a chunk is either all whitespace or a "word". + Whitespace chunks will be removed from the beginning and end of + lines, but apart from that whitespace is preserved. + """ + lines = [] + if self.width <= 0: + raise ValueError("invalid width %r (must be > 0)" % self.width) + + # Arrange in reverse order so items can be efficiently popped + # from a stack of chucks. + chunks.reverse() + + while chunks: + + # Start the list of chunks that will make up the current line. + # cur_len is just the length of all the chunks in cur_line. + cur_line = [] + cur_len = 0 + + # Figure out which static string will prefix this line. + if lines: + indent = self.subsequent_indent + else: + indent = self.initial_indent + + # Maximum width for this line. + width = self.width - len(indent) + + # First chunk on line is whitespace -- drop it, unless this + # is the very beginning of the text (ie. no lines started yet). + if self.drop_whitespace and chunks[-1].strip() == '' and lines: + del chunks[-1] + + while chunks: + l = len(chunks[-1]) + + # Can at least squeeze this chunk onto the current line. + if cur_len + l <= width: + cur_line.append(chunks.pop()) + cur_len += l + + # Nope, this line is full. + else: + break + + # The current line is full, and the next chunk is too big to + # fit on *any* line (not just this one). + if chunks and len(chunks[-1]) > width: + self._handle_long_word(chunks, cur_line, cur_len, width) + + # If the last chunk on this line is all whitespace, drop it. + if self.drop_whitespace and cur_line and not cur_line[-1].strip(): + del cur_line[-1] + + # Convert current line back to a string and store it in list + # of all lines (return value). + if cur_line: + lines.append(indent + ''.join(cur_line)) + + return lines +# }}} +# function wrap() {{{ + + +def wrap(text, width=70, **kwargs): + """ + Wrap a single paragraph of text, returning a list of wrapped lines. + """ + if sys.version_info < (2, 6): + return TextWrapper(width=width, **kwargs).wrap(text) + return textwrap.wrap(text, width=width, **kwargs) + +# }}} diff --git a/urbackupserver/www/translation.js b/urbackupserver/www/translation.js index d8ee8675..5e2a81e0 100644 --- a/urbackupserver/www/translation.js +++ b/urbackupserver/www/translation.js @@ -1,1776 +1,2068 @@ -if(!window.translations) translations=new Object(); -translations.en={ -"action_1": "Incremental file backup", -"action_2": "Full file backup", -"action_3": "Incremental image backup", -"action_4": "Full image backup", -"action_5": "Resumed incremental file backup", -"action_6": "Resumed full file backup", -"action_1_d": "Deleting incremental file backup", -"action_2_d": "Deleting full file backup", -"action_3_d": "Deleting incremental image backup", -"action_4_d": "Deleting full image backup", -"nav_item_6": "Status", -"nav_item_5": "Activities", -"nav_item_4": "Backups", -"nav_item_3": "Logs", -"nav_item_2": "Statistics", -"nav_item_1": "Settings", -"unknown": "Unknown", -"overview": "Overview", -"ok": "Ok", -"no_recent_backup": "No recent backup", -"backup_never": "Never", -"yes": "Yes", -"no": "No", -"users": "Users", -"general_settings": "General", -"admin": "Administrator", -"user": "User", -"username_empty": "Please enter a username", -"password_empty": "Please enter a password", -"password_differ": "The two passwords differ", -"user_n_exist": "User does not exist", -"password_wrong": "Wrong password", -"user_exists": "User with this name already exists", -"session_timeout": "Inactivity caused this session to become invalid. Please login again to proceed.", -"really_del_user": "Really remove this user?", -"user_add_done": "New user successfully added.", -"user_remove_done": "Successfully removed user.", -"user_update_right_done": "Successfully changed user rights.", -"user_pw_change_ok": "Successfully changed user password.", -"right_all": "All rights", -"right_none": "No Rights", -"filter": "Filter", -"all": "All", -"loglevel_0": "Info", -"loglevel_1": "Warnings", -"loglevel_2": "Errors", -"dir_error_text": "The directory where UrBackup will save backups is inaccessible. Please fix that by modifying this folder in 'Settings' or by giving UrBackup rights to access this directory.", -"tmpdir_error_text": "The directory where UrBackup will save temporary files is inaccessible. Please fix that by modifying this folder in 'Settings' or by giving UrBackup rights to access this directory.", -"starting": "Starting", -"ident_err": "Server rejected", -"enter_hostname": "Please enter a hostname or IP address", -"clients": "Clients", -"validate_text_empty": "Please enter a value for the {name}", -"validate_text_notint": "Please enter a numeric value for the {name}", -"validate_name_update_freq_incr": "interval for incremental file backups", -"validate_name_update_freq_full": "interval for full file backups", -"validate_name_update_freq_image_full": "interval for incremental image backups", -"validate_name_update_freq_image_incr": "interval for full image backups", -"validate_name_max_file_incr": "maximal number of incremental file backups", -"validate_name_min_file_incr": "minimal number of incremental file backups", -"validate_name_max_file_full": "maximal number of full file backups", -"validate_name_min_file_full": "minimal number of full file backups", -"validate_name_min_image_incr": "minimal number of incremental image backups", -"validate_name_max_image_incr": "maximal number of incremental image backups", -"validate_name_min_image_full": "minimal number of full image backups", -"validate_name_max_image_full": "maximal number of full image backups", -"validate_name_startup_backup_delay": "delay after system startup", -"validate_err_notregexp_backup_window": "Format for backup window wrong", -"validate_name_max_active_clients": "max number of recently active clients", -"validate_name_max_sim_backups": "max number of simultaneous backups", -"validate_name_backupfolder": "backup storage path", -"validate_name_computername": "computer name", -"too_many_clients_err": "Too many clients", -"really_remove_client": "Do you really want to remove this client? This means all its file and image backups will be deleted!", -"computername": "Computer name", -"storage_usage_pie_graph_title": "Storage usage", -"storage_usage_pie_graph_colname1": "Computer name", -"storage_usage_pie_graph_colname2": "Storage usage", -"storage_usage_bar_graph_title": "Storage usage", -"storage_usage_bar_graph_colname1": "Date", -"storage_usage_bar_graph_colname2": "Storage usage", -"validate_err_notregexp_cleanup_window": "Format for cleanup window wrong", -"mail_settings": "Mail", -"upgrade_error_text": "UrBackup is upgrading its internal database. This may take a while. The server is inaccessible and will not do any backups during this upgrade.", -"file_backup": "File backup", -"hours": "hours", -"days": "days", -"weeks": "weeks", -"months": "months", -"year": "year", -"hour": "hour", -"day": "day", -"week": "week", -"month": "month", -"year": "year", -"years": "years", -"min": "minute", -"mins": "minutes", -"validate_name_archive_every": "Archive every", -"validate_name_archive_for": "Archive for", -"forever": "forever", -"backup_in_progress": "Backup in progress...", -"really_remove_clients": "Do you really want to remove these clients? This means all their file and image backups will be deleted!", -"no_client_selected": "No client has been selected", -"queued_backup": "Queued backup", -"starting_backup_failed": "Starting backup failed", -"trying_to_stop_backup": "Trying to stop backup. This might take a while.", -"unarchived_in": "Will stop being archived in", -"validate_err_notregexp_archive_window": "Format for archive window wrong", -"wait_for_archive_window": "Waiting for window/next run", -"validate_err_notregexp_image_letters": "Format of image letters wrong", -"validate_name_global_local_speed": "total max backup speed for local network", -"validate_name_global_internet_speed": "total max backup speed for internet connection", -"validate_name_local_speed": "max backup speed for local network", -"validate_name_internet_speed": "max backup speed for internet connection", -"enter_clientname": "Please enter a client name", -"internet_client_added": "Added new client. You can see the client's auth key (or password) in the settings.", -"change_pw": "Change password", -"old_pw_wrong": "Old password is wrong", -"nospc_stalled_text": "There is currently not enough free space in the backup folder. UrBackup is deleting old image and file backups to free space, within the limits defined by the settings. During this process the backup performance is descreased and backups are stalled.", -"nospc_fatal_text": "There is currently not enough free space in the backup folder. UrBackup tried to delete old image and file backups but is now not allowed to delete more. Please change the settings to store less backups or increase the storage amount to allow UrBackup to continue to perform backups", -"really_recalculate": "Do you really want to recalculate all statistics? This might take a long time!", -"database_error_text": "An error occured while accessing or checking UrBackup's internal database. This means this database is probably damaged or there is not enough free space. If this error persists, please restore the database (the files urbackup_server.db and urbackup_server_settings.db) from a backup. See log file for details.", -"creating_filescache_text": "UrBackup is creating the file entry chache. This might take a while.", -"about_urbackup": "About UrBackup", -"loading": "Loading", -"authentication_err": "Error during server authentication" -} -translations.de={ -"action_1": "Inkrementelles Datei Backup", -"action_2": "Volles Datei Backup", -"action_3": "Inkrementelles Image Backup", -"action_4": "Volles Image Backup", -"action_1_d": "Lösche inkrementelles Datei Backup", -"action_2_d": "Lösche volles Datei Backup", -"action_3_d": "Lösche inkrementelles Image Backup", -"action_4_d": "Lösche volles Image Backup", -"nav_item_6": "Status", -"nav_item_5": "Vorgänge", -"nav_item_4": "Backups", -"nav_item_3": "Logs", -"nav_item_2": "Statistiken", -"nav_item_1": "Einstellungen", -"unknown": "Unbekannt", -"overview": "Überblick", -"ok": "OK", -"no_recent_backup": "Kein aktuelles", -"backup_never": "Nie", -"yes": "Ja", -"no": "Nein", -"users": "Benutzer", -"general_settings": "Allgemein", -"admin": "Administrator", -"user": "Benutzer", -"username_empty": "Bitte geben Sie einen Benutzernamen ein", -"password_empty": "Bitte geben Sie ein Passwort ein", -"password_differ": "Die Passwörter unterscheiden sich", -"user_n_exist": "Benutzer existiert nicht", -"password_wrong": "Falsches Passwort für diesen Benutzer", -"user_exists": "Ein Benutzer mit diesem Namen existiert bereits", -"session_timeout": "Durch Inaktivität ist ihre Session leider nicht mehr aktuell. Sie sollten sich erneut einloggen.", -"really_del_user": "Benutzer wirklich löschen?", -"user_add_done": "Der neue Benutzer wurde erfolgreich hinzugefügt.", -"user_remove_done": "Der Benutzer wurde erfolgreich gelöscht", -"user_update_right_done": "Die Rechte des Benutzers wurden erfolgreich geändert", -"user_pw_change_ok": "Passwort erfolgreich geändert", -"right_all": "Alle Rechte", -"right_none": "Keine Rechte", -"filter": "Filter", -"all": "Alle", -"loglevel_0": "Info", -"loglevel_1": "Warnung", -"loglevel_2": "Fehler", -"tActivities": "Aktive Vorgänge", -"tComputer name": "Computername", -"tAction": "Aktion", -"tFiles in queue": "Dateien in Warteschleife", -"tNo activities": "Keine Vorgänge", -"tBackup time": "Backupzeitpunkt", -"tErrors": "Fehler", -"tWarnings": "Warnungen", -"tLogs": "Logs", -"tNo entries for this filter": "Keine Einträge entsprechen den Filterkriterien", -"tAll": "Alle", -"tUsername": "Benutzername", -"tPassword": "Passwort", -"tLogin": "Einloggen", -"tInfos": "Informationen", -"tFilter": "Filter", -"tBack": "Zurück", -"tLog": "Log", -"tLevel": "Level", -"tTime": "Zeitpunkt", -"tMessage": "Nachricht", -"tLast activities": "Letzte Vorgänge", -"tID": "ID", -"tStarting time": "Startzeit", -"tRequired time": "Benötigte Zeit", -"tUsed Storage": "Speichernutzung", -"tClients": "Clients", -"tFile": "Datei", -"tSize": "Größe", -"tLast file backup": "Letztes Dateibackup", -"tIncremental": "Inkrementell", -"tBackup status": "Backup Status", -"tLast seen": "Letzter Onlinezeitpunkt", -"tLast file backup": "Letztes Dateibackup", -"tLast image backup": "Letztes Imagebackup", -"tFile backup status": "Dateibackup status", -"tImage backup status": "Imagebackup status", -"tLoading": "Lade", -"tStorage usage of": "Speichernutzungsverlauf von", -"tStorage allocation": "Speicherbelegung", -"tImages": "Images", -"tFiles": "Dateien", -"tSum": "Gesamt", -"tStorage usage": "Speichernutzungsverlauf", -"tNo Users": "Keine Benutzer", -"tRemove": "Löschen", -"tChange rights": "Rechte ändern", -"tChange password": "Passwort ändern", -"tRights": "Rechte", -"tActions": "Aktionen", -"tCreate user": "Benutzer erstellen", -"tDelete domain": "Domäne löschen", -"tChange rights for user": "Rechte ändern für Benutzer:", -"tDomain": "Domäne", -"tTranslation": "Übersetzung", -"tNew domain": "Neue Domäne", -"tAbort": "Abbrechen", -"tChange": "Ändern", -"tChange password for user": "Passwort ändern für Benutzer:", -"tRepeat password": "Passwort wiederholen", -"tRights for": "Rechte für", -"tCreate": "Erstellen", -"tSeparate settings for this client": "Separate Einstellungen für diesen Client", -"tSave": "Speichern", -"tSaved settings successfully": "Speichern der Einstellungen erfolgreich", -"tInterval for incremental file backups": "Intervall für inkrementelle Datei Backups", -"tInterval for full file backups": "Intervall für volle Backups", -"thours": "Stunden", -"tdays": "Tage", -"tInterval for incremental image backups": "Intervall für inkrementelle Image-Backups", -"tInterval for full image backups": "Intervall für volle Image-Backups", -"tMaximal number of incremental file backups": "Maximale Anzahl an inkrementellen Backups", -"tMinimal number of incremental file backups": "Minimale Anzahl an inkrementellen Backups", -"tMaximal number of full file backups": "Maximale Anzahl an vollen Datei Backups", -"tMinimal number of full file backups": "Minimale Anzahl an vollen Datei Backups", -"tMaximal number of incremental image backups": "Maximale Anzahl an inkrementellen Image-Backups", -"tMinimal number of incremental image backups": "Minimale Anzahl an inkrementellen Image-Backups", -"tMaximal number of full image backups": "Maximale Anzahl an vollen Image-Backups", -"tMinimal number of full image backups": "Minimale Anzahl an vollen Image-Backups", -"tDelay after system startup": "Verzögerung bei Systemstart", -"tmin": "min", -"tAllow client-side changing of settings": "Clients erlauben Einstellungen zu verändern", -"tBackup storage path": "Speicherort für Backups", -"tDo not do image backups": "Keine Imagebackups ausführen", -"tAutomatically shut down server": "Server automatisch herunterfahren", -"dir_error_text": "Auf das Verzeichnis in dem UrBackup die Backups speichern soll kann nicht zugegriffen werden. Bitte verändern Sie in den Einstellungen das Verzeichnis oder geben Sie UrBackup Zugriffsrechte.", -"tmpdir_error_text": "Auf das Verzeichnis in dem UrBackup die temporären Dateien speichern soll kann nicht zugegriffen werden. Bitte verändern Sie in den Einstellungen das Verzeichnis oder geben Sie UrBackup Zugriffsrechte.", -"starting": "Starte", -"ident_err": "Server abgelehnt", -"tNo extra clients": "Keine zusätzlichen Clients", -"tShow details": "Details anzeigen", -"tAutoupdate clients": "Clientprogramme automatisch aktualisieren", -"enter_hostname": "Bitte geben Sie eine IP-Adresse oder einen Hostenamen ein", -"clients": "Clients", -"tMax number of simultaneous backups": "Maximale Anzahl simultaner Backups", -"tMax number of recently active clients": "Maximale Anzahl aktiver Clients", -"tBackup window": "Backup Zeitfenster", -"validate_text_empty": "Bitte geben Sie einen Wert für {name} ein", -"validate_text_notint": "Bitte geben Sie einen numerischen Wert für {name} ein", -"validate_name_update_freq_incr": "Intervall für inkrementelle Datei Backups", -"validate_name_update_freq_full": "Intervall für volle Datei Backups", -"validate_name_update_freq_image_full": "Intervall für inkrementelle Image-Backups", -"validate_name_update_freq_image_incr": "Intervall für volle Image-Backups", -"validate_name_max_file_incr": "Maximale Anzahl an inkrementellen Backups", -"validate_name_min_file_incr": "Minimale Anzahl an inkrementellen Backups", -"validate_name_max_file_full": "Maximale Anzahl an vollen Datei Backups", -"validate_name_min_file_full": "Minimale Anzahl an vollen Datei Backups", -"validate_name_min_image_incr": "Minimale Anzahl an inkrementellen Image-Backups", -"validate_name_max_image_incr": "Maximale Anzahl an inkrementellen Image-Backups", -"validate_name_min_image_full": "Minimale Anzahl an vollen Image-Backups", -"validate_name_max_image_full": "Maximale Anzahl an vollen Image-Backups", -"validate_name_startup_backup_delay": "Verzögerung bei Systemstart", -"validate_err_notregexp_backup_window": "Falsches Format für Backup Zeitfenster", -"validate_name_max_active_clients": "Maximale Anzahl aktiver Clients", -"validate_name_max_sim_backups": "Maximale Anzahl simultaner Backups", -"validate_name_backupfolder": "Speicherort für Backups", -"too_many_clients_err": "Zu viele clients", -"validate_name_computername": "Computername", -"tExcluded files (with wildcards)": "Ausgeschlossene Dateien (mit Wildcards)", -"tComputer name": "Computername", -"tDefault directories to backup": "Standarmäßig gesicherte Verzeichnisse:", -"really_remove_client": "Wollen Sie wirklich diesen Client löschen? Das bedeutet, dass alle Datei- und Imagebackups dieses Clients gelöscht werden!", -"tThis client is going to be removed.": "Dieser Client wird entfernt.", -"tStop removing client": "Entfernen stoppen", -"Computername": "Computername", -"storage_usage_pie_graph_title": "Speichernutzung", -"storage_usage_pie_graph_colname1": "Computername", -"storage_usage_pie_graph_colname2": "Speichernutzung", -"storage_usage_bar_graph_title": "Speichernutzungsverlauf", -"storage_usage_bar_graph_colname1": "Datum", -"storage_usage_bar_graph_colname2": "Speichernutzung", -"tServer identity": "Serveridentität", -"tNondefault temporary file directory": "Vom Standard abweichender temporärer Dateiordner", -"tCleanup time window": "Aufräum Zeitfenster", -"validate_err_notregexp_cleanup_window": "Falsches Format für das Aufräum Zeitfenster", -"mail_settings": "E-Mail", -"tReports": "Reports", -"tSend reports to": "Reports senden an", -"tSend": "Sende", -"tBackups with a log message of at least log level": "Backups mit Benachrichtigungen mit wenigstens Wichtigkeit", -"tFailed": "Fehlgeschlagene", -"tSuccessfull": "Erfolgreiche", -"tInfo": "Info", -"tError": "Fehler", -"tWarning": "Warnung", -"tMail server name": "Mailserver Name/IP", -"tMail server port": "Mailserver Port", -"tMail server username (empty for none)": "Benutzername (leer für keinen)", -"tMail server password": "Passwort", -"tSender E-Mail Address": "Absender E-Mail Adresse", -"tSend mails only with SSL/TLS": "E-Mails nur mit SSL/TLS Sicherung schicken", -"tCheck SSL/TLS certificate": "SSL/TLS Zertifikat prüfen", -"tSend test mail to this email address after saving the settings (leave empty to not send a test mail)": "Sende Test E-Mail an diese Adresse nach Speichern der Einstellungen (leer lassen um keine Test E-Mail zu senden)", -"tTest Mail sent successfully": "Test E-Mail erfolgreich gesendet", -"tSending test mail failed. Error:": "Senden der Test E-Mail fehlgeschlagen. Fehler:", -"tAllow client-side changing of the directories to backup": "Clients das Ändern der zu sichernden Verzeichnisse erlauben", -"tAllow client-side starting of file backups": "Clients erlauben Dateibackups zu starten", -"tAllow client-side starting of image backups": "Clients erlauben Imagebackups zu starten", -"tAllow client-side viewing of backup logs": "Clients erlauben Logs anzuschauen", -"tAllow client-side pausing of backups": "Clients erlauben Backups zu pausieren", -"tAutomatically backup UrBackup database": "Automatisch UrBackup Datenbank sichern", -"tDo not do file backups": "Keine Dateibackups ausführen", -"upgrade_error_text": "UrBackup aktualisiert seine interne Datenbank. Das könnte eine Weile dauern. Während der Aktualisierung ist das Webinterface nicht erreichbar und keine Backups werden durchgeführt.", -"tCurrent version": "Momentane version", -"tTarget version": "Zielversion", -"tVolumes to backup": "Zu sichernde Laufwerke", -"internet_server_settings": "Internetzugriff", -"tIncluded files (with wildcards)": "Eingeschlossene Dateien (mit Wildcards)", -"tWarning: The settings configured on the client will overwrite the settings configured here. If you want to change this behaviour do not allow the client to change settings.": "Warnung: Die Clientkonfiguration wird die Einstellungen hier überschreiben. Um dieses Verhalten zu ändern erlauben Sie dem Client nicht Einstellungen zu ändern.", -"change_pw": "Passwort ändern", -"old_pw_wrong": "Altes passwort stimmt nicht", -"hours": "Stunden", -"days": "Tage", -"weeks": "Wochen", -"months": "Monate", -"year": "Jahr", -"hour": "Stunde", -"day": "Tag", -"week": "Woche", -"month": "Monat", -"years": "Jahre", -"min": "Minute", -"mins": "Minuten", -"validate_name_archive_every": "Archiviere alle", -"validate_name_archive_for": "Archiviere für", -"forever": "Für immer", -"backup_in_progress": "Backup läuft...", -"really_remove_clients": "Wollen Sie wirklich diese Clients entfernen? Das bedeutet dass alle zugehörigen Datei- und Imagebackups gelöscht werden!", -"no_client_selected": "Kein Client wurde ausgewählt", -"queued_backup": "Backup in Warteschlange", -"starting_backup_failed": "Starten fehlgeschlagen", -"trying_to_stop_backup": "Versuche Backup zu stoppen. Dies könnte eine Weile dauern.", -"unarchived_in": "Wird nicht mehr archiviert sein in", -"validate_err_notregexp_archive_window": "Format für das Archivierungszeitfenster falsch", -"wait_for_archive_window": "Warte für nächstes Fenster/Ausführen", -"validate_err_notregexp_image_letters": "Format der Volumenbezeichnungen falsch", -"validate_name_global_local_speed": "Gesamtgeschwindigkeit für lokales Netzwerk", -"validate_name_global_internet_speed": "Gesamtgeschwindigkeit für Internetverbindung", -"validate_name_local_speed": "Maximale Geschwindigkiet für lokales Netzwerk", -"validate_name_internet_speed": "Maximale Geschwindigkiet für Internetverbindung", -"enter_clientname": "Bitte geben sie einen Clientnamen ein", -"internet_client_added": "Client hinzugefügt. Sie können den Schlüssel (auch Passwort) in den Einstellungen einsehen.", -"tArchive every": "Archiviere alle", -"tArchive for": "Archiviere für", -"tArchive window": "Archivierungs-zeitfenster", -"tBackup type": "Backuptyp", -"tNext archival": "Nächste Archivierung", -"tweeks": "Wochen", -"tmonth": "Monate", -"tyears": "Jahre", -"tforever": "Für immer", -"tFile backup": "Dateibackup", -"tIncremental file backup": "Inkrementelles Dateibackup", -"tFull file backup": "Volles Dateibackup", -"tMax backup speed for local network": "Maximale Geschwindigkeit für lokales Netzwerk", -"tTotal max backup speed for local network": "Maximale Gesamtgeschwindigkeit für lokales Netzwerk", -"tMax backup speed for internet connection": "Maximale Geschwindigkeit für Internetverbindung", -"tTotal max backup speed for internet connection": "Maximale Gesamtgeschwindigkeit für Internetverbindung", -"tEnable internet mode (requires server restart)": "Internetmodus aktivieren (benötigt Serverneustart)", -"tInternet server name/IP": "Internet Servername/IP", -"tInternet server port": "Internet Port", -"tEnable internet mode": "Internetmodus aktivieren", -"tInternet auth key": "Internet Schlüssel", -"tDo image backups over internet": "Imagebackups über das Internet durchführen", -"tDo full file backups over internet": "Volle Dateibackups über das Internet durchführen", -"tEncrypted transfer": "Transfers verschlüsseln", -"tCompressed transfer": "Transfers komprimieren", -"tArchival": "Archivieren", -"tPermissions": "Berechtigungen", -"tImage backups": "Imagebackups", -"tFile backups": "Dateibackups", -"tServer": "Server", -"tSelect all": "Alle auswählen", -"tSelect none": "Keinen auswählen", -"tRemove selected": "Ausgewählte löschen", -"tIncremental image backup": "Inkrementelles Imagebackup", -"tFull image backup": "Volles Imagebackup", -"tStart for selected": "Für ausgewählte starten", -"tExtra clients": "Zusätzliche Clients", -"tHostname/IP": "Name/IP", -"tOnline": "Online", -"tActions": "Aktionen", -"tAdd": "Hinzufügen", -"tClients are removed during the cleanup in the cleanup time window.": "Clients werden beim Aufräumen im Aufräumzeitfenster gelöscht.", -"tPerform autoupdates silently": "Autoupdates im Hintergrund ausführen", -"tArchived": "Archiviert", -"nospc_stalled_text": "Es is momentan nicht genügend Speicherplatz für Backups vorhanden. UrBackup löscht gerade alte Datei- und Image-Backups innerhalb der Grenzen die in den Einstellungen festgelegt sind. Wärend dieses Vorgangs ist die Performanz des Backupservers eventuell eingeschränkt; Laufende Backups sind eventuell pausiert.", -"nospc_fatal_text": "Es is momentan nicht genügend Speicherplatz für Backups vorhanden. UrBackup hat versucht alte Datei- und Image-Backups zu löschen, kann aber jetzt nicht weiteren Speicherplatz freimachen. Bitte ändern Sie die Einstellungen insofern, dass weniger Backups gespeichert werden, oder fügen Sie weiteren Backupspeicher hinzu, so dass UrBackup weiterhin Backups durchführen kann.", -"about_urbackup": "Über UrBackup", -"loading": "Loading", -"authentication_err": "Fehler bei der Serverauthentifizierung" -} -translations.ru={ -"action_1": "Добавочный файловый бэкап", -"action_2": "Полный файловый бэкап", -"action_3": "Добавочный образ", -"action_4": "Полный образ", -"action_1_d": "Удалить добавочный файловый бэкап", -"action_2_d": "Удалить полный файловый бэкап", -"action_3_d": "Удалить добавочный образ", -"action_4_d": "Удалить образ", -"nav_item_6": "Статус", -"nav_item_5": "В работе", -"nav_item_4": "Бэкапы", -"nav_item_3": "Логи", -"nav_item_2": "Статистика", -"nav_item_1": "Настройки", -"unknown": "Неизвестный", -"overview": "Обзор", -"ok": "Ok", -"no_recent_backup": "Нет резервной копии", -"backup_never": "Никогда", -"yes": "Да", -"no": "Нет", -"tBackup status": "Статус бэкапов", -"tComputer name": "Имя компьютера", -"tLast seen": "Последняя активность", -"tLast file backup": "Последний файловый бэкап", -"tLast image backup": "Последний образ", -"tFile backup status": "Файловый бэкап", -"tImage backup status": "Образ", -"tShow details": "Подробнее", -"tExtra clients": "Дополнительные клиенты", -"tNo extra clients": "Нет дополнительных клиентов", -"tActions": "Действия", -"tOnline": "Онлайн", -"tHostname/IP": "Имя/IP", -"tServer identity": "Идентификация сервера", -"users": "Пользователи", -"general_settings": "Главные", -"admin": "Administrator", -"user": "User", -"username_empty": "Пожалуйста введите имя", -"password_empty": "Пожалуйста введите пароль", -"password_differ": "Пароли не совпадают", -"user_n_exist": "Пользователя не существует", -"password_wrong": "Неправильный пароль", -"user_exists": "Пользователь с этим именем уже существует", -"session_timeout": "Сессия устарела. Пожалуйста войтиде снова.", -"really_del_user": "Действительно удалить пользователя?", -"user_add_done": "Новый пользователь успешно добавлен.", -"user_remove_done": "Пользователь успешно удален.", -"user_update_right_done": "Права пользователя успешно изменены.", -"user_pw_change_ok": "Пароль пользователя успешно изменен.", -"right_all": "Все права", -"right_none": "Без прав", -"filter": "Фильтр", -"all": "Все", -"loglevel_0": "Инфо", -"loglevel_1": "Предупреждения", -"loglevel_2": "Ошибки", -"dir_error_text": "Каталог, где UrBackup будет сохранять резервные копии недоступен. Пожалуйста исправьте это изменив путь в 'Настройках', либо путем придания UrBackup прав на доступ к этой папке.", -"tmpdir_error_text": "Каталог, где UrBackup будет сохранять временные файлы недоступен. Пожалуйста исправьте это изменив путь в 'Настройках', либо путем придания UrBackup прав на доступ к этой папке.", -"starting": "Запуск", -"ident_err": "Отклонено сервером", -"enter_hostname": "Пожалуйста введите Имя компьютера или IP адрес", -"clients": "Клиенты", -"validate_text_empty": "Пожалуйста введите значение для {name}", -"validate_text_notint": "Пожалуйста введите цифру для {name}", -"validate_name_update_freq_incr": "интервала добавочных файловых бэкапов", -"validate_name_update_freq_full": "интервала полных файловых бэкапов", -"validate_name_update_freq_image_full": "интервала создания добавочных образов", -"validate_name_update_freq_image_incr": "интервала создания полных образов", -"validate_name_max_file_incr": "максимального количества добавочных файловых бэкапов", -"validate_name_min_file_incr": "минимального количества добавочных файловых бэкапов", -"validate_name_max_file_full": "максимального количества полных файловых бэкапов", -"validate_name_min_file_full": "минимального количества полных файловых бэкапов", -"validate_name_min_image_incr": "минимального количества добавочных образов", -"validate_name_max_image_incr": "максимального количества добавочных образов", -"validate_name_min_image_full": "минимального количества полных образов", -"validate_name_max_image_full": "максимального количества полных образов", -"validate_name_startup_backup_delay": "задержки после старта системы", -"validate_err_notregexp_backup_window": "Формат для расписания неверный", -"validate_name_max_active_clients": "максимального количества активных клиентов", -"validate_name_max_sim_backups": "максимального количества резервных копий", -"validate_name_backupfolder": "путь к хранилищу бэкапов", -"validate_name_computername": "имя компьютера", -"too_many_clients_err": "Слишком много клиентов", -"really_remove_client": "Вы действительно хотите удалить этого клиента? Это означает, что все его резервные копии будут удалены!", -"computername": "Имя компьютера", -"storage_usage_pie_graph_title": "Использование памяти", -"storage_usage_pie_graph_colname1": "Имя компьютера", -"storage_usage_pie_graph_colname2": "Использование памяти", -"storage_usage_bar_graph_title": "Использование памяти", -"storage_usage_bar_graph_colname1": "Дата", -"storage_usage_bar_graph_colname2": "Использование памяти", -"tImages": "Образы", -"tFiles": "Файлы", -"tSum": "Итого", -"validate_err_notregexp_cleanup_window": "Формат расписания очистки неверен", -"mail_settings": "Почта", -"upgrade_error_text": "UrBackup обновляет свою базу данных. Это может занять некоторое время. Сервер недоступен и не будет делать никаких резервных копий во время обновления.", -"tActivities": "В работе", -"tAction": "Действие", -"tProgress": "Прогресс", -"tFiles in queue": "Файлов в очереди", -"tLast activities": "Последняя активность", -"tStarting time": "Время начала", -"tRequired time": "Продолжительность", -"tUsed Storage": "Использовано памяти", -"tClients": "Клиенты", -"tLogs": "Логи", -"tReports": "Отчеты", -"tSend reports to": "Отправить отчеты", -"tSend": "Отправить", -"tBackups with a log message of at least log level": "Логи уровня", -"tBackup time": "Время бэкапа", -"tErrors": "Ошибки", -"tWarnings": "Предупреждения", -"tStorage allocation": "Выделенная память", -"tStorage usage": "Использование памяти", -"tAll": "Все", -"tBackup storage path": "Путь для хранения бэкапов", -"tDo not do image backups": "Не делать бэкап образа", -"tDo not do file backups": "Не делать файловый бэкап", -"tAutomatically shut down server": "Автоматически выключать сервер", -"tAutoupdate clients": "Автоматическое обновление клиентов", -"tMax number of simultaneous backups": "Максимум одновременно выполняющихся бэкапов", -"tMax number of recently active clients": "Максимальное количество активных клиентов", -"tCleanup time window": "Расписание очистки бэкапов", -"tAutomatically backup UrBackup database": "Автоматически бэкапить базу данных UrBackup", -"tInterval for incremental file backups": "Интервал создания добавочных файловых бэкапов", -"tInterval for full file backups": "Интервал создания полных бэкапов файлов", -"tInterval for incremental image backups": "Интервал создания добавочных образов", -"tInterval for full image backups": "Интервал создания полных образов", -"tMaximal number of incremental file backups": "Максимальное количество добавочных бэкапов файлов", -"tMinimal number of incremental file backups": "Минимальное количество добавочных бэкапов файлов", -"tMaximal number of full file backups": "Максимальное количество полных бэкапов файлов", -"tMinimal number of full file backups": "Минимальное количество полных бэкапов файлов", -"tMaximal number of incremental image backups": "Максимальное количество добавочных образов", -"tMinimal number of incremental image backups": "Минимальное количество добавочных образов", -"tMaximal number of full image backups": "Максимальное количество полных образов", -"tMinimal number of full image backups": "Минимальное количество полных образов", -"tDelay after system startup": "Задержка после старта системы", -"tBackup window": "Расписание", -"tExcluded files (with wildcards)": "Исключить из бэкапа (по маске)", -"tIncluded files (with wildcards)": "Включить в бэкап (по маске)", -"tDefault directories to backup": "Каталоги по умолчанию для бэкапа", -"tVolumes to backup": "Разделы для бэкапа", -"tAllow client-side changing of the directories to backup": "Разрешить клиенту менять каталоги для бэкапа", -"tAllow client-side starting of file backups": "Разрешить клиенту запускать файловый бэкап", -"tAllow client-side starting of image backups": "Разрешить клиенту запускать создание образа", -"tAllow client-side viewing of backup logs": "Разрешить клиенту просматриват логи", -"tAllow client-side pausing of backups": "Разрешить клиенту приостанавливать бэкап", -"tAllow client-side changing of settings": "Разрешить клиенту менять настройки", -"tdays": "дней", -"thours": "часов", -"tmin": "минут", -"tMail server name": "Имя почтового сервера", -"tMail server port": "Порт сервера", -"tMail server username (empty for none)": "Учетная запись (если нет - оставить пустым)", -"tMail server password": "Пароль", -"tSender E-Mail Address": "Адрес отправителя", -"tSend mails only with SSL/TLS": "Отправить письмо только с использованием SSL/TLS", -"tCheck SSL/TLS certificate": "Проверить SSL/TLS сертификат", -"tSend test mail to this email address after saving the settings (leave empty to not send a test mail)": "Отправить тестовое письмо после сохранения настроек (оставить пустым, чтобы не отправлять)", -"tTest Mail sent successfully": "Тестовое сообщение отправлено", -"tSending test mail failed. Error:": "Тестовое сообщение не отправлено. Ошибка: ", -"tFilter": "Фильтр", -"tBack": "Назад", -"tAdd": "Добавить", -"tRemove": "Удалить", -"tSave": "Сохранить", -"tLevel": "Уровень", -"tTime": "Время", -"tMessage": "Сообщение", -"tLog": "Лог", -"tUsername": "Имя", -"tRights": "Права", -"tNo Users": "Нет пользователей", -"tCreate user": "Добавить пользователя", -"tPassword": "Пароль", -"tRepeat password": "Повторить пароль", -"tRights for": "Права", -"tAbort": "Отмена", -"tCreate": "Добавить", -"tChange rights": "Изменить права", -"tChange password": "Изменить пароль", -"tLogin": "Войти", -"tInfos": "Инфо", -"tSeparate settings for this client": "Отдельные настройки для данного клиента", -"tServer": "Сервер", -"tFile backups": "Файловый бэкап", -"tImage backups": "Образы", -"tPermissions": "Права доступа", -"tClient": "Клиент", -"tArchival": "Архивация", -"tInternet": "Интернет", -"tPerform autoupdates silently": "Тихое автообновление", -"tMax backup speed for local network": "Максимальная скорость для локальной сети", -"tInternet": "Интернет", -"tNo activities": "Нет активности", -"tSelect all": "Отметить все", -"tSelect none": "Снять отметки", -"tRemove selected": "Удалить отмеченных", -"tStart for selected": "Начать бэкап выделенных", -"tInternet clients": "Интернет клиенты", -"tAdd additional internet clients": "Добавить интернет клиентов", -"tClient name": "Имя клиента", -"tNo entries for this filter": "Нет записей для этого фильтра", -"tNo data": "Нет данных", -"tTotal max backup speed for local network": "Общая максимальная скорость для локальной сети", -"tArchive every": "Архивировать каждые", -"tArchive for": "Архивировать за", -"tArchive window": "Расписание архивации", -"tBackup type": "Тип бэкапа", -"tEnable internet mode (requires server restart)": "Активировать интернет режим (потребуется перезагрузка сервера)", -"tInternet server name/IP": "Имя сервера/IP", -"tInternet server port": "Порт", -"tDo image backups over internet": "Разрешить создавать образы", -"tDo full file backups over internet": "Разрешить создавать полный файловый бэкап", -"tMax backup speed for internet connection": "Максимальная скорость для интернет бэкапа", -"tTotal max backup speed for internet connection": "Общая максимальная скорость для интернет бэкапа", -"tEncrypted transfer": "Шифрованная передача", -"tCompressed transfer": "Сжатие" -} -translations.es={ -"action_1": "Copia incremental de archivos", -"action_2": "Copia completa de archivos", -"action_3": "Copia imagen incremental", -"action_4": "Copia imagen completa", -"action_1_d": "Eliminando copia incremental de archivos", -"action_2_d": "Eliminando copia completa de archivos", -"action_3_d": "Eliminando copia imagen incremental", -"action_4_d": "Eliminando copia imagen completa", -"nav_item_6": "Estado", -"nav_item_5": "Actividades", -"nav_item_4": "Copias", -"nav_item_3": "Logs", -"nav_item_2": "Estadisticas", -"nav_item_1": "Ajustes", -"unknown": "Desconocido", -"overview": "Introducción", -"ok": "Ok", -"no_recent_backup": "No hay copia reciente", -"backup_never": "Nunca", -"yes": "Si", -"no": "No", -"users": "Usuarios", -"general_settings": "General", -"admin": "Administrador", -"user": "Usuario", -"username_empty": "Introduzca un nombre de usuario", -"password_empty": "Introduzca una contraseña", -"password_differ": "Las contraseñas no coinciden", -"user_n_exist": "El usuario no existe", -"password_wrong": "Contraseña incorrecta", -"user_exists": "Ya existe otro usuario con ese nombre", -"session_timeout": "La sesión ha expirado. Por favor, identifíquese de nuevo.", -"really_del_user": "¿Seguro que desea eliminar éste usuario?", -"user_add_done": "Nuevo usuario creado.", -"user_remove_done": "Usuario eliminado.", -"user_update_right_done": "Cambio de privilegios realizado.", -"user_pw_change_ok": "Contraseña cambiada.", -"right_all": "Todos los accesos", -"right_none": "Ningún acceso", -"filter": "Filtro", -"all": "Todo", -"loglevel_0": "Informativos", -"loglevel_1": "Avisos", -"loglevel_2": "Errores", -"dir_error_text": "La carpeta designada para guardar las copias no está accesible. Por favor, solucione este problema modificando la carpeta en 'Ajustes' o garantizando a UrBackup privilegios de escritura en esa carpeta.", -"tmpdir_error_text": "La carpeta en la que se guardan los archivos temporales no está accesible. Por favor, solucione este problema modificando la carpeta en 'Ajustes' o garantizando a UrBackup privilegios de escritura en esa carpeta.", -"starting": "Comenzando", -"ident_err": "Servidor rechazado", -"enter_hostname": "Introduzca un nombre de nodo o una dirección IP", -"clients": "Clientes", -"validate_text_empty": "Por favor, introduzca un valor para {name}", -"validate_text_notint": "Por favor, introduzca un valor numérico para {name}", -"validate_name_update_freq_incr": "intervalo para copias incrementales de ficheros", -"validate_name_update_freq_full": "intervalo para copias totales de ficheros", -"validate_name_update_freq_image_full": "invervalo para copias imagen incrementales", -"validate_name_update_freq_image_incr": "invervalo para copias imagen completas", -"validate_name_max_file_incr": "máximo número de copias incrementales de ficheros", -"validate_name_min_file_incr": "mínimo número de copias incrementales de ficheros", -"validate_name_max_file_full": "máximo número de copias completas de ficheros", -"validate_name_min_file_full": "mínimo número de copias completas de ficheros", -"validate_name_min_image_incr": "máximo número de copias imagen incrementales", -"validate_name_max_image_incr": "mínimo número de copias imagen incrementales", -"validate_name_min_image_full": "máximo número de copias imagen completas", -"validate_name_max_image_full": "mínimo número de copias imagen completas", -"validate_name_startup_backup_delay": "espera tras el inicio del sistema", -"validate_err_notregexp_backup_window": "Formato de la ventana de copias erróneo", -"validate_name_max_active_clients": "número máximo de clientes activos recientes", -"validate_name_max_sim_backups": "número máximo de copias simultáneas", -"validate_name_backupfolder": "camino de almacenamiento de copias", -"validate_name_computername": "nombre de equipo", -"too_many_clients_err": "Demasiados clientes", -"really_remove_client": "¿Seguro que desea eliminar éste cliente? Se eliminarán también todas sus copias", -"computername": "Nombre de equipo", -"storage_usage_pie_graph_title": "Uso de almacenamiento", -"storage_usage_pie_graph_colname1": "Nombre de equipo", -"storage_usage_pie_graph_colname2": "Uso de almacenamiento", -"storage_usage_bar_graph_title": "Uso de almacenamiento", -"storage_usage_bar_graph_colname1": "Fecha", -"storage_usage_bar_graph_colname2": "Uso de almacenamiento", -"validate_err_notregexp_cleanup_window": "Formato de la ventana de limpieza erróneo", -"mail_settings": "Correo-e", -"upgrade_error_text": "UrBackup está actualizando su base de datos interna. Esto puede llevar cierto tiempo. El servidor estará inaccesible y sin hacer copias durante la actualización.", -"file_backup": "Copia de ficheros", -"hours": "horas", -"days": "días", -"weeks": "semanas", -"months": "meses", -"year": "año", -"hour": "hora", -"day": "día", -"week": "semana", -"month": "mes", -"year": "año", -"years": "años", -"min": "minuto", -"mins": "minutos", -"validate_name_archive_every": "Archivar cada", -"validate_name_archive_for": "Archive durante", -"forever": "siempre", -"backup_in_progress": "Copiando ahora...", -"really_remove_clients": "¿Seguro que quiere eliminar estos clientes? Se eliminarán todas sus copias", -"no_client_selected": "No se ha seleccionado ningún cliente", -"queued_backup": "Copia encolada", -"starting_backup_failed": "Arranque de copia fallido", -"trying_to_stop_backup": "Tratando de parar la copia. Esto puede llevar cierto tiempo.", -"unarchived_in": "Parará el archivado en ", -"validate_err_notregexp_archive_window": "Formato de ventana de archivado errónea", -"wait_for_archive_window": "Esperando para ventana/siguiente ejecución", -"validate_err_notregexp_image_letters": "Formato de letras para imagen errónea", -"validate_name_global_local_speed": "velocidad máxima total para copias por la red local", -"validate_name_global_internet_speed": "velocidad máxima total para copias por internet", -"validate_name_local_speed": "velocidad máxima para copias por red local", -"validate_name_internet_speed": "velocidad máxima total para copias por internet", -"enter_clientname": "Introduzca un nombre de cliente", -"internet_client_added": "Nuevo cliente añadido. Puede obtener su clave de autorización o contraseña en los ajustes.", -"change_pw": "Cambiar contraseña", -"old_pw_wrong": "LA contraseña actual es errónea", -"tActivities": "Actividades", -"tComputer name": "Equipo", -"tAction": "Acción", -"tFiles in queue": "Archivos en cola", -"tNo activities": "Sin actividad", -"tBackup time": "Tiempo de copia", -"tErrors": "Errores", -"tWarnings": "Avisos", -"tLogs": "Logs", -"tNo entries for this filter": "No hay entradas para este filtro", -"tAll": "Todos", -"tUsername": "Usuario", -"tPassword": "Contraseña", -"tLogin": "Acceso", -"tInfos": "Información", -"tFilter": "Filtro", -"tBack": "Atrás", -"tLog": "Log", -"tLevel": "Nivel", -"tTime": "Hora", -"tMessage": "Mensaje", -"tLast activities": "Últimas actividades", -"tID": "ID", -"tStarting time": "Comienzo", -"tRequired time": "Tiempo requerido", -"tUsed Storage": "Espacio utilizado", -"tClients": "Clientes", -"tFile": "Archivo", -"tSize": "Tamaño", -"tLast file backup": "Ultima copia de archivos", -"tIncremental": "Incremental", -"tBackup status": "Estado de la copia", -"tLast seen": "Ultima conexión", -"tLast file backup": "Última copia de archivos", -"tLast image backup": "última copia imagen", -"tFile backup status": "Estado de la copia de archivos", -"tImage backup status": "Estado de la copia imagen", -"tLoading": "Cargando", -"tStorage usage of": "Almacenamiento utilizado por", -"tStorage allocation": "Almacenamiento reservado", -"tImages": "Imagenes", -"tFiles": "Archivos", -"tSum": "Suma", -"tStorage usage": "Almacenamiento usado", -"tNo Users": "Sin usuarios", -"tRemove": "Eliminar", -"tChange rights": "Cambiar permisos", -"tChange password": "Cambiar contraseña", -"tRights": "Permisos", -"tActions": "Acciones", -"tCreate user": "Crear usuario", -"tDelete domain": "Eliminar dominio", -"tChange rights for user": "Cambiar permisos al usuario:", -"tDomain": "Dominio", -"tTranslation": "Traducción", -"tNew domain": "Nuevo Dominio", -"tAbort": "Cancelar", -"tChange": "Cambiar", -"tChange password for user": "Cambiar contraseña del usuario:", -"tRepeat password": "confirme la contraseña", -"tRights for": "Derechos para", -"tCreate": "Crear", -"tSeparate settings for this client": "Configuración especial para este cliente", -"tSave": "Guardar", -"tSaved settings successfully": "Configuración guardada correctamente", -"tInterval for incremental file backups": "Intervalo para las copias incrementales de archivos", -"tInterval for full file backups": "Intervalo para las copias continuas de archivos", -"thours": "Horas", -"tdays": "Días", -"tInterval for incremental image backups": "Intervalo para las copias imagen incrementales", -"tInterval for full image backups": "Intervalo para las copias imagen completas", -"tMaximal number of incremental file backups": "Máximo número de copias incrementales de archivos", -"tMinimal number of incremental file backups": "Mínimo número de copias incrementales de archivos", -"tMaximal number of full file backups": "Máximo número de copias totales de archivos", -"tMinimal number of full file backups": "Mínimo número de copias totales de archivos", -"tMaximal number of incremental image backups": "Maximo número de copias imagen incrementales", -"tMinimal number of incremental image backups": "Mínimo número de copias imagen incrementales", -"tMaximal number of full image backups": "Maximo número de copias imagen completas", -"tMinimal number of full image backups": "Mínimo número de copias imagen completas", -"tDelay after system startup": "Espera desde el inicio del sistema", -"tmin": "min", -"tAllow client-side changing of settings": "Permitir la configuración de la copia desde el cliente", -"tBackup storage path": "Ruta de almacenamiento de las copias", -"tDo not do image backups": "No haga copiaas imagen", -"tAutomatically shut down server": "Apague automáticamente el servidor", -"dir_error_text": "No se encuentra la carpeta de copias o no tiene permiso de escritura sobre ella.", -"tmpdir_error_text": "No se encuentra la carpeta tempopral o no tiene permiso de escritura sobre ella.", -"tNo extra clients": "No hay clientes extra", -"tShow details": "Ver detalles", -"tAutoupdate clients": "Actualizar los clientes automáticamente", -"tMax number of simultaneous backups": "Número máximo de copias simultáneas", -"tMax number of recently active clients": "Número máximo de clientes activos recientemente", -"tBackup window": "Ventana de backup", -"tExcluded files (with wildcards)": "Archivos excluidos (admite comodines)", -"tComputer name": "Equipo", -"tDefault directories to backup": "Carpetas a copiar por defecto:", -"tThis client is going to be removed.": "Este cliente va a ser eliminado.", -"tStop removing client": "No eliminar", -"tReports": "Informes", -"tSend reports to": "Enviar informes a", -"tSend": "Enviar", -"tBackups with a log message of at least log level": "Copias que hayan terminado con un mensaje al menos", -"tFailed": "Fallido", -"tSuccessfull": "Realizado", -"tInfo": "Info", -"tError": "Error", -"tWarning": "Aviso", -"tMail server name": "Servidor de correo/IP", -"tMail server port": "Puerto del servidor de correo", -"tMail server username (empty for none)": "Usuario (puede estar vacío)", -"tMail server password": "Contraseña", -"tSender E-Mail Address": "Correo del emisor", -"tSend mails only with SSL/TLS": "Enviar correos sólo con conexión SSL/TLS", -"tCheck SSL/TLS certificate": "Comprobar el certificado SSL/TLS", -"tSend test mail to this email address after saving the settings (leave empty to not send a test mail)": "Enviar un mensaje de prueba al siguiente correo (si no quiere enviar una prueba, deje el campo vacío)", -"tTest Mail sent successfully": "Mensaje de prueba enviado correctamente", -"tSending test mail failed. Error:": "No se ha popdido enviar el mensaje de prueba. Error:", -"tAllow client-side changing of the directories to backup": "Permitir al cliente cambiar la carpeta a copiar", -"tAllow client-side starting of file backups": "Permitir al cliente comenzar una copia de ficheros", -"tAllow client-side starting of image backups": "Permitir al cliente comenzar una copia imagen", -"tAllow client-side viewing of backup logs": "Permitir al cliente ver los logs de copia", -"tAllow client-side pausing of backups": "Permitir al cliente pausar una copia", -"tAutomatically backup UrBackup database": "Copiar automáticamente la base de datos de UrBackup", -"tDo not do file backups": "No hacer copia de ficheros", -"upgrade_error_text": "UrBackup aktualisiert seine interne Datenbank. Das könnte eine Weile dauern. Während der Aktualisierung ist das Webinterface nicht erreichbar und keine Backups werden durchgeführt.", -"tCurrent version": "Versión actual", -"tTarget version": "Versión objetivo", -"tVolumes to backup": "Volúmenes a copiar", -"tIncluded files (with wildcards)": "Archivos incluidos (admite comodines)", -"tWarning: The settings configured on the client will overwrite the settings configured here. If you want to change this behaviour do not allow the client to change settings.": "¡Atención!: si el cliente hace cambios en su equio, prevalecerán sobre esta configuración. Puede prohibir al cliente hacer cambios.", -"tArchive every": "Archivar cada", -"tArchive for": "Archivar durante", -"tArchive window": "Ventana de archivo", -"tBackup type": "Tipo de copia", -"tNext archival": "Siguiente archivado", -"tweeks": "Semanas", -"tmonth": "Meses", -"tyears": "Años", -"tforever": "Para siempre", -"tFile backup": "Copia de ficheros", -"tIncremental file backup": "Copia incremental de ficheros", -"tFull file backup": "Copia total de ficheros", -"tMax backup speed for local network": "Velocidad máxima de copia para archivos en la red local", -"tTotal max backup speed for local network": "Velocidad máxima de backup en la red local", -"tMax backup speed for internet connection": "Velocidad máxima de backup a través de internet", -"tTotal max backup speed for internet connection": "Velocidad máxima total de backup a través de internet", -"tEnable internet mode (requires server restart)": "Activar la copia por internet (requiere reinicio)", -"tInternet server name/IP": "Servidor internet/IP", -"tInternet server port": "Puerto de internet", -"tEnable internet mode": "Activar modo Internet", -"tInternet auth key": "Clave de copia por Internet", -"tDo image backups over internet": "Permitir copias Imagen por internet", -"tDo full file backups over internet": "Peermitir copias totales de ficheros por Internet", -"tEncrypted transfer": "Transferencia encriptada", -"tCompressed transfer": "Transferencias comprimidas", -"tArchival": "Archivar", -"tPermissions": "Permisos", -"tImage backups": "Copias Imagen", -"tFile backups": "Copias de archivos", -"tServer": "Servidor", -"tSelect all": "Seleccionar todo", -"tSelect none": "Deseleccionar todo", -"tRemove selected": "Eliminar seleccionados", -"tIncremental image backup": "Copia imagen incremental", -"tFull image backup": "Copia imagen completa", -"tStart for selected": "Comenzar en los seleccionados", -"tExtra clients": "Clientes extra", -"tHostname/IP": "Nombre/IP", -"tOnline": "Online", -"tActions": "Acción", -"tAdd": "Añadir", -"tClients are removed during the cleanup time window, if they are offline.": "Los Clientes serán eliminados durante la ventana de limpieza.", -"tPerform autoupdates silently": "Actualizaciones automáticas silenciosas", -"tArchived": "Archivado" -} -translations.zh_CN={ -"action_1": "增量备份文件", -"action_2": "完全备份文件", -"action_3": "增量备份磁盘映像", -"action_4": "完全备份磁盘映像", -"action_1_d": "正在删除文件增量备份", -"action_2_d": "正在删除文件完全备份", -"action_3_d": "正在删除磁盘映像增量备份", -"action_4_d": "正在删除磁盘映像完全备份", -"nav_item_6": "状态", -"nav_item_5": "活动", -"nav_item_4": "备份", -"nav_item_3": "日志", -"nav_item_2": "统计", -"nav_item_1": "设置", -"unknown": "未知", -"overview": "概览", -"ok": "Ok", -"no_recent_backup": "近期没有备份", -"backup_never": "从不", -"yes": "是", -"no": "否", -"users": "用户", -"general_settings": "常规", -"admin": "管理员", -"user": "用户", -"username_empty": "请输入用户名", -"password_empty": "请输入密码", -"password_differ": "两个密码不同", -"user_n_exist": "用户不存在", -"password_wrong": "密码错误", -"user_exists": "用户已存在", -"session_timeout": "因长时间不操作,此次连接已自动断开。请重新登录。", -"really_del_user": "确定要删除此用户吗?", -"user_add_done": "成功添加新用户。", -"user_remove_done": "成功删除用户。", -"user_update_right_done": "成功变更用户权限。", -"user_pw_change_ok": "成功变更用户密码。", -"right_all": "全权", -"right_none": "无权", -"filter": "过滤器", -"all": "全部", -"loglevel_0": "信息", -"loglevel_1": "警告", -"loglevel_2": "错误", -"dir_error_text": "无法访问UrBackup保存备份的文件夹。在“设置”中修改此文件夹的位置,或赋予UrBackup对此文件夹的访问权限可解决此问题。", -"tmpdir_error_text": "无法访问UrBackup保存临时文件的文件夹。在“设置”中修改此文件夹的位置,或赋予UrBackup对此文件夹的访问权限可解决此问题。", -"starting": "启动中", -"ident_err": "服务器拒绝", -"enter_hostname": "请输入主机名或IP地址", -"clients": "客户端", -"validate_text_empty": "{name}需要一个值", -"validate_text_notint": "{name}需要一个数字值", -"validate_name_update_freq_incr": "增量备份文件的时间间隔", -"validate_name_update_freq_full": "完全备份文件的时间间隔", -"validate_name_update_freq_image_full": "增量备份磁盘映像的时间间隔", -"validate_name_update_freq_image_incr": "完全备份磁盘映像的时间间隔", -"validate_name_max_file_incr": "文件增量备份数上限", -"validate_name_min_file_incr": "文件增量备份数下限", -"validate_name_max_file_full": "文件完全备份数上限", -"validate_name_min_file_full": "文件完全备份数下限", -"validate_name_min_image_incr": "磁盘映像增量备份数下限", -"validate_name_max_image_incr": "磁盘映像增量备份数上限", -"validate_name_min_image_full": "磁盘映像完全备份数下限", -"validate_name_max_image_full": "磁盘映像完全备份数上限", -"validate_name_startup_backup_delay": "系统启动后延迟", -"validate_err_notregexp_backup_window": "备份窗口格式错误", -"validate_name_max_active_clients": "近期活动客户端峰值", -"validate_name_max_sim_backups": "同时备份峰值", -"validate_name_backupfolder": "保存备份的路径", -"validate_name_computername": "计算机名", -"too_many_clients_err": "客户端过多", -"really_remove_client": "确定删除此客户端吗?文件和磁盘映像备份将被全部删除!", -"computername": "计算机名", -"storage_usage_pie_graph_title": "存储空间使用情况", -"storage_usage_pie_graph_colname1": "计算机名", -"storage_usage_pie_graph_colname2": "存储空间使用情况", -"storage_usage_bar_graph_title": "存储空间使用情况", -"storage_usage_bar_graph_colname1": "日期", -"storage_usage_bar_graph_colname2": "存储空间使用情况", -"validate_err_notregexp_cleanup_window": "清理窗口格式错误", -"mail_settings": "邮件", -"upgrade_error_text": "UrBackup正在升级内部数据库并需要一些时间。升级期间服务器无法访问并暂停全部备份任务。", -"file_backup": "文件备份", -"hours": "小时", -"days": "天", -"weeks": "星期", -"months": "月", -"year": "年", -"hour": "小时", -"day": "日", -"week": "星期", -"month": "月", -"year": "年", -"years": "年", -"min": "分", -"mins": "分", -"validate_name_archive_every": "归档周期", -"validate_name_archive_for": "归档", -"forever": "长期", -"backup_in_progress": "备份进行中……", -"really_remove_clients": "确定删除此客户端吗?文件和磁盘映像备份将被全部删除!", -"no_client_selected": "未选择客户端", -"queued_backup": "在队列中等待的备份任务", -"starting_backup_failed": "备份任务启动失败", -"trying_to_stop_backup": "正在终止备份任务,可能需要一些时间", -"unarchived_in": "将终止归档于", -"validate_err_notregexp_archive_window": "归档窗口格式错误", -"wait_for_archive_window": "正在等待窗口或下次运行", -"validate_err_notregexp_image_letters": "磁盘映像字母格式错误", -"validate_name_global_local_speed": "通过局域网备份的总速率上限", -"validate_name_global_internet_speed": "通过互联网备份的总速率上限", -"validate_name_local_speed": "通过局域网备份的速率上限", -"validate_name_internet_speed": "通过互联网备份的速率上限", -"enter_clientname": "请输入客户端名称", -"internet_client_added": "新客户端已添加,身份验证密钥或密码请参见“设置”。", -"change_pw": "更改密码", -"old_pw_wrong": "旧密码错误", -"nospc_stalled_text": "备份文件夹空间不足,UrBackup正根据设置值删除旧的磁盘映像和文件备份数据。此期间的备份性能降低,备份数据被隔离。", -"nospc_fatal_text": "备份文件夹空间不足,UrBackup已根据设置值删除了旧的磁盘映像和文件备份数据,但当前设置值已不允许继续删除。通过更改“设置”保存更少的备份数或增加备份存储空间后UrBackup方可继续执行备份任务。" - -} -translations.zh_TW={ -"action_1": "增量備份檔案", -"action_2": "完整備份檔案", -"action_3": "增量備份磁碟鏡像", -"action_4": "完整備份磁碟鏡像", -"action_1_d": "正在移除檔案增量備份", -"action_2_d": "正在移除檔案完整備份", -"action_3_d": "正在移除磁碟鏡像增量備份", -"action_4_d": "正在移除磁碟鏡像完整備份", -"nav_item_6": "狀態", -"nav_item_5": "活動", -"nav_item_4": "備份", -"nav_item_3": "日志", -"nav_item_2": "統計", -"nav_item_1": "設定", -"unknown": "未知", -"overview": "概覽", -"ok": "Ok", -"no_recent_backup": "近期沒有備份", -"backup_never": "從不", -"yes": "是", -"no": "否", -"users": "用戶", -"general_settings": "一般", -"admin": "管理員", -"user": "用戶", -"username_empty": "請鍵入用戶名", -"password_empty": "請鍵入口令", -"password_differ": "兩個口令不同", -"user_n_exist": "用戶不存在", -"password_wrong": "口令錯誤", -"user_exists": "用戶已存在", -"session_timeout": "因長時間不操作,此次連接已自動斷開。請重新登錄。", -"really_del_user": "確定要移除此用戶嗎?", -"user_add_done": "成功添加新用戶。", -"user_remove_done": "成功移除用戶。", -"user_update_right_done": "成功變更用戶權限。", -"user_pw_change_ok": "成功變更用戶口令。", -"right_all": "全權", -"right_none": "無權", -"filter": "過濾器", -"all": "全部", -"loglevel_0": "情報", -"loglevel_1": "警告", -"loglevel_2": "錯誤", -"dir_error_text": "無法訪問UrBackup保存備份的資料夾。在“設定”中修改此資料夾的位置,或賦予UrBackup對此資料夾的訪問權限可解決此問題。", -"tmpdir_error_text": "無法訪問UrBackup保存臨時檔案的資料夾。在“設定”中修改此資料夾的位置,或賦予UrBackup對此資料夾的訪問權限可解決此問題。", -"starting": "啓動中", -"ident_err": "伺服器拒絕", -"enter_hostname": "請鍵入主機名或IP地址", -"clients": "用戶端", -"validate_text_empty": "{name}需要一個值", -"validate_text_notint": "{name}需要一個數字值", -"validate_name_update_freq_incr": "增量備份檔案的時間間隔", -"validate_name_update_freq_full": "完整備份檔案的時間間隔", -"validate_name_update_freq_image_full": "增量備份磁碟鏡像的時間間隔", -"validate_name_update_freq_image_incr": "完整備份磁碟鏡像的時間間隔", -"validate_name_max_file_incr": "檔案增量備分數之上限", -"validate_name_min_file_incr": "檔案增量備分數之下限", -"validate_name_max_file_full": "檔案完整備分數之上限", -"validate_name_min_file_full": "檔案完整備分數之下限", -"validate_name_min_image_incr": "磁碟鏡像增量備分數之下限", -"validate_name_max_image_incr": "磁碟鏡像增量備分數之上限", -"validate_name_min_image_full": "磁碟鏡像完整備分數之下限", -"validate_name_max_image_full": "磁碟鏡像完整備分數之上限", -"validate_name_startup_backup_delay": "系統啓動後延遲", -"validate_err_notregexp_backup_window": "備份視窗格式錯誤", -"validate_name_max_active_clients": "近期活動用戶端峰值", -"validate_name_max_sim_backups": "同時備份峰值", -"validate_name_backupfolder": "保存備份的路徑", -"validate_name_computername": "計算機名", -"too_many_clients_err": "用戶端過多", -"really_remove_client": "確定移除此用戶端嗎?檔案和磁碟鏡像備份將被全部移除!", -"computername": "計算機名", -"storage_usage_pie_graph_title": "儲存空間使用情況", -"storage_usage_pie_graph_colname1": "計算機名", -"storage_usage_pie_graph_colname2": "儲存空間使用情況", -"storage_usage_bar_graph_title": "儲存空間使用情況", -"storage_usage_bar_graph_colname1": "日期", -"storage_usage_bar_graph_colname2": "儲存空間使用情況", -"validate_err_notregexp_cleanup_window": "清理視窗格式錯誤", -"mail_settings": "郵件", -"upgrade_error_text": "UrBackup正在升級內部數據庫並需要一些時間。升級期間伺服器無法訪問並暫停全部備份任務。", -"file_backup": "檔案備份", -"hours": "小時", -"days": "天", -"weeks": "星期", -"months": "月", -"year": "年", -"hour": "小時", -"day": "日", -"week": "星期", -"month": "月", -"year": "年", -"years": "年", -"min": "分", -"mins": "分", -"validate_name_archive_every": "歸檔周期", -"validate_name_archive_for": "歸檔", -"forever": "長期", -"backup_in_progress": "備份進行中……", -"really_remove_clients": "確定移除此用戶端嗎?檔案和磁碟鏡像備份將被全部移除!", -"no_client_selected": "未選擇用戶端", -"queued_backup": "在佇列中等待的備份任務", -"starting_backup_failed": "備份任務啓動失敗", -"trying_to_stop_backup": "正在終止備份任務,可能需要一些時間", -"unarchived_in": "將終止歸檔于", -"validate_err_notregexp_archive_window": "歸檔視窗格式錯誤", -"wait_for_archive_window": "正在等待視窗或下次執行", -"validate_err_notregexp_image_letters": "磁碟鏡像字母格式錯誤", -"validate_name_global_local_speed": "通過本地網路備份的總速率上限", -"validate_name_global_internet_speed": "通過互聯網備份的總速率上限", -"validate_name_local_speed": "通過本地網路備份的速率上限", -"validate_name_internet_speed": "通過互聯網備份的速率上限", -"enter_clientname": "請鍵入用戶端名稱", -"internet_client_added": "新用戶端已添加,身份驗證密鑰或口令請參見“設定”。", -"change_pw": "更改口令", -"old_pw_wrong": "舊口令錯誤", -"nospc_stalled_text": "備份資料夾空間不足,UrBackup正根據設定值移除舊的磁碟鏡像和檔案備份數據。此期間的備份性能降低,備份數據被隔離。", -"nospc_fatal_text": "備份資料夾空間不足,UrBackup已根據設定值移除了舊的磁碟鏡像和檔案備份數據,但當前設定值已不允許繼續移除。通過更改“設定”保存更少的備份數或增加備份儲存空間後UrBackup方可繼續執行備份任務。" -} -translations.fr={ -"action_1": "Sauvegarde incrémentielle", -"action_2": "Sauvegarde complète", -"action_3": "Image incrémentielle", -"action_4": "Image complète", -"action_1_d": "Effacement Sauvegarde incrémentielle", -"action_2_d": "Effacement Sauvegarde complète", -"action_3_d": "Effacement Image incrémentielle", -"action_4_d": "Effacement Image complète", -"nav_item_6": "Etats", -"nav_item_5": "Activités", -"nav_item_4": "Sauvegardes", -"nav_item_3": "Journaux", -"nav_item_2": "Stats", -"nav_item_1": "Réglages", -"unknown": "inconnu", -"overview": "Résumé", -"ok": "Ok", -"no_recent_backup": "Pas de sauvegarde récente", -"backup_never": "Jamais", -"yes": "Oui", -"no": "Non", -"users": "Utilisateurs", -"general_settings": "Général", -"admin": "Administrateur", -"user": "Utilisateur", -"username_empty": "Merci d'entrer votre nom", -"password_empty": "Merci d'entrer votre mot de passe", -"password_differ": "Les deux mots de passe sont différents", -"user_n_exist": "l'utilisateur n'existe pas", -"password_wrong": "Mauvais mot de passe", -"user_exists": "Un utilisateur avec ce nom existe déjà", -"session_timeout": "La session n'est plus valide. Merci de vous reconnecter.", -"really_del_user": "Etes vous sûr de vouloir supprimer cet utilisateur?", -"user_add_done": "Nouvel utilisateur créé avec succès.", -"user_remove_done": "Utilisateur supprimé avec succès .", -"user_update_right_done": "Droits changés avec succès.", -"user_pw_change_ok": "Mot de passe de l'utilisateur changé avec succès.", -"right_all": "Tous les droits", -"right_none": "Aucun droit", -"filter": "Filtrer", -"all": "Tous", -"loglevel_0": "Information", -"loglevel_1": "Alertes", -"loglevel_2": "Erreurs", -"tActivities": "Activités", -"tComputer name": "Nom du PC", -"tAction": "Action", -"tFiles in queue": "Fichier en cours", -"tNo activities": "Pas d'activité", -"tBackup time": "Durée", -"tErrors": "Erreurs", -"tWarnings": "Alertes", -"tLogs": "Journaux", -"tNo entries for this filter": "Pas d'entrée dans cette vue", -"tAll": "Tous", -"tUsername": "Nom utilisateur", -"tPassword": "Mot de passe", -"tLogin": "Login", -"tInfos": "Information", -"tFilter": "Filtre", -"tBack": "Précédent", -"tLog": "Journaux", -"tLevel": "Niveau", -"tTime": "Temps", -"tMessage": "Message", -"tLast activities": "Dernières activités", -"tID": "ID", -"tStarting time": "Lancement", -"tRequired time": "Temps nécessaire", -"tUsed Storage": "Espace utilisé", -"tClients": "Clients", -"tFile": "Fichier", -"tSize": "Taille", -"tLast file backup": "Dernière Sauvegarde", -"tIncremental": "Incrémentielle", -"tBackup status": "Statut de Sauvegarde", -"tLast seen": "Vu récemment", -"tLast file backup": "Dernière Sauvegarde de fichiers", -"tLast image backup": "Dernière Sauvegarde Image", -"tFile backup status": "Statut de la Sauvegarde fichiers", -"tImage backup status": "Statut de la Sauvegarde Image", -"tLoading": "Chargement", -"tStorage usage of": "Espace utilisé pour", -"tStorage allocation": "Espace alloué", -"tImages": "Images", -"tFiles": "Fichiers", -"tSum": "Total", -"tStorage usage": "Utilisation d'espace", -"tNo Users": "Aucun utilisateur", -"tRemove": "Enlever", -"tChange rights": "Changer les droits", -"tChange password": "Changer le mot de passe", -"tRights": "Droits", -"tActions": "Actions", -"tCreate user": "Créer un utilisateur", -"tDelete domain": "Détruire un domaine", -"tChange rights for user": "Changer les droits pour l'utilisateur:", -"tDomain": "Domaine", -"tTranslation": "Traduction", -"tNew domain": "Nouveau Domaine", -"tAbort": "Abandonner", -"tChange": "Changer", -"tChange password for user": "Changer le mot de passe pour l'utilisateur:", -"tRepeat password": "Répéter le mot de passe", -"tRights for": "Droits pour", -"tCreate": "Créer", -"tSeparate settings for this client": "Paramétrage individuel pour ce client", -"tSave": "Enregistrer", -"tSaved settings successfully": "Enregistré avec succès", -"tInterval for incremental file backups": "Intervalle pour la sauvegarde incrémentielle de fichiers", -"tInterval for full file backups": "Intervalle pour la sauvegarde complète de fichiers", -"thours": "Heures", -"tdays": "Jours", -"tInverval for incremental image backups": "Intervalle pour la sauvegarde Image incrémentielle", -"tInterval for full image backups": "Intervalle pour la sauvegarde Image complète", -"tMaximal number of incremental file backups": "Nombre maximal de sauvegardes fichiers incrémentielles", -"tMinimal number of incremental file backups": "Nombre minimal de sauvegardes fichiers incrémentielles", -"tMaximal number of full file backups": "Nombre maximal de sauvegardes fichiers complètes", -"tMinimal number of full file backups": "Nombre minimal de sauvegardes fichiers complètes", -"tMaximal number of incremental image backups": "Nombre maximal de sauvegardes image incrémentielles", -"tMinimal number of incremental image backups": "Nombre minimal de sauvegardes image incrémentielles", -"tMaximal number of full image backups": "Nombre maximal de sauvegardes image complètes", -"tMinimal number of full image backups": "Nombre minimal de sauvegardes image complètes", -"tDelay after system startup": "Délai après lancement", -"tmin": "min", -"tAllow client-side changing of settings": "Permettre au client de changer les réglages", -"tBackup storage path": "Chemin du répertoire de sauvegarde", -"tDo not do image backups": "Désactiver la sauvegarde Image ", -"tAutomatically shut down server": "Eteindre automatiquement le serveur", -"dir_error_text": "Le dossier de sauvegarde UrBackup est inaccessible. Merci de changer le chemin dans 'Réglages' ou en donnant à UrBackup les droits d'accès à ce répertoire.", -"tmpdir_error_text": "Le dossier de sauvegarde temporaire UrBackup est inaccessible. Merci de changer le chemin dans 'Réglages' ou en donnant à UrBackup les droits d'accès à ce répertoire.", -"starting": "Démarrage", -"ident_err": "Serveur rejeté", -"enter_hostname": "Merci d'entrer un nom d'hôte ou une adresse IP.", -"clients": "Clients", -"tMax number of simultaneous backups": "Nombre maximal de sauvegardes simultanées", -"tMax number of recently active clients": "Nombre maximal de clients actifs", -"validate_text_empty": "Merci d'entrer une valeur pour le {name}", -"validate_text_notint": "Merci d'entrer une valeur numérique pour le {name}", -"validate_name_update_freq_incr": "Tranche horaire pour la sauvegarde incrémentielle", -"validate_name_update_freq_full": "Tranche horaire pour la sauvegarde complète", -"validate_name_update_freq_image_full": "Tranche horaire pour l'image incrémentielle", -"validate_name_update_freq_image_incr": "Tranche horaire pour l'image complète", -"validate_name_max_file_incr": "Nombre maximal de sauvegardes incrémentielles", -"validate_name_min_file_incr": "Nombre minimal de sauvegardes incrémentielles", -"validate_name_max_file_full": "Nombre maximal de sauvegardes complètes", -"validate_name_min_file_full": "Nombre minimal de sauvegardes complètes", -"validate_name_min_image_incr": "Nombre minimal d'images incrémentielles", -"validate_name_max_image_incr": "Nombre maximal d'images incrémentielles", -"validate_name_min_image_full": "Nombre minimal d'images complètes", -"validate_name_max_image_full": "Nombre maximal d'images complètes", -"validate_name_startup_backup_delay": "Délai après démarrage du système", -"validate_err_notregexp_backup_window": "Erreur dans le format de l'intervalle", -"validate_name_max_active_clients": "Nombre maximal de client récents actifs", -"validate_name_max_sim_backups": "Nombre maximal de sauvegardes simultanées", -"validate_name_backupfolder": "Chemin du répertoire de sauvegarde", -"validate_name_computername": "Nom de l'ordinateur", -"too_many_clients_err": "Trop de clients", -"validate_name_computername": "Nom de l'ordinateur", -"tExcluded files (with wildcards)": "Fichiers exclus (avec Wildcards)", -"tComputer name": "Nom de l'ordinateur", -"tDefault directories to backup": "Répertoires par défaut à sauvegarder ", -"really_remove_client": "Etes vous sûr de vouloir supprimer ce client ? Cela implique que tous les fichiers et images sauvegardés seront supprimés !", -"computername": "Nom de l'ordinateur", -"storage_usage_pie_graph_title": "Utilisation d'espace", -"storage_usage_pie_graph_colname1": "Nom de l'ordinateur", -"storage_usage_pie_graph_colname2": "Utilisation d'espace", -"storage_usage_bar_graph_title": "Utilisation d'espace", -"storage_usage_bar_graph_colname1": "Date", -"storage_usage_bar_graph_colname2": "Utilisation d'espace", -"tServer identity": "Identité du serveur", -"tNondefault temporary file directory": "Répertoire temporaire", -"tCleanup time window": "Intervalle de purge", -"validate_err_notregexp_cleanup_window": "Format de l'intervalle de purge erroné", -"mail_settings": "Email", -"tReports": "Rapports", -"tSend reports to": "Envoyer les rapports à ", -"tSend": "Envoyer", -"tBackups with a log message of at least log level": "Afficher les journaux au niveau ", -"tFailed": "Echec", -"tSuccessfull": "Succès", -"tInfo": "Info", -"tError": "Erreurs", -"tWarning": "Alertes", -"tBackup window": "Intervalle de sauvegarde", -"tMail server name": "Adresse du serveur SMTP", -"tMail server port": "Port du serveur SMTP", -"tMail server username (empty for none)": "Nom du compte email", -"tMail server password": "Mot de passe", -"tSender E-Mail Address": "Emetteur de l'email", -"tSend mails only with SSL/TLS": "N'envoyer qu'avec SSL/TLS", -"tCheck SSL/TLS certificate": "Vérifier le certificat SSL/TLS", -"tSend test mail to this email address after saving the settings (leave empty to not send a test mail)": "Envoyer un email TEST à cette adresse après avoir sauvé les paramètres (laisser vide pour ignorer l'envoi)", -"tTest Mail sent successfully": "Succès d'envoi de l'email TEST", -"tSending test mail failed. Error:": "Echec d'envoi de l'email TEST avec l'erreur :", -"tAllow client-side changing of the directories to backup": "Permettre au client de définir les répertoires de sauvegarde", -"tAllow client-side starting of file backups": "Permettre au client de lancer une sauvegarde fichiers", -"tAllow client-side starting of image backups": "Permettre au client de lancer une sauvegarde Image", -"tAllow client-side viewing of backup logs": "Permettre au client de consulter les journaux", -"tAllow client-side pausing of backups": "Permettre au client de mettre en pause les sauvegardes", -"tAutomatically backup UrBackup database": "Sauvegarder automatiquement la base de données du serveur", -"tDo not do file backups": "Désactiver la sauvegarde de fichiers", -"upgrade_error_text": "UrBackup met à jour sa base interne. Cela peut prendre du temps. Le serveur est ainsi inaccessible et ne fera aucune sauvegarde durant cet intervalle .", -"tCurrent version": "Version actuelle", -"tTarget version": "Version cible", -"tVolumes to backup": "Volumes à sauvegarder", -"internet_server_settings": "Paramètres internet du serveur", -"tIncluded files (with wildcards)": "Fichiers inclus (avec Wildcards)", -"tWarning: The settings configured on the client will overwrite the settings configured here. If you want to change this behaviour do not allow the client to change settings.": "Alerte: Les paramètres configurés sur le client seront ceux pris en compte. Si vous ne le voulez pas, désactiver les droits de paramétrage pour le client. ", -"change_pw": "Changer le mot de passe", -"old_pw_wrong": "Ancien mot de passe erroné", -"hours": "heures", -"days": "jours", -"weeks": "semaines", -"months": "mois", -"year": "années", -"hour": "heure", -"day": "jour", -"week": "semaine", -"month": "mois", -"year": "année", -"years": "années", -"min": "minute", -"mins": "minutes", -"validate_name_archive_every": "Archiver tous les", -"validate_name_archive_for": "Archives pour", -"forever": "Pour toujours", -"backup_in_progress": "Sauvegarde en cours...", -"really_remove_clients": "Etes vous sûr de vouloir supprimer ce client ? Cela implique que tous les fichiers et images sauvegardés seront supprimés !", -"no_client_selected": "Aucun client n'a été sélectionné", -"queued_backup": "Sauvegarde planifiée", -"starting_backup_failed": "Le lancement de la sauvegarde a échoué", -"trying_to_stop_backup": "Tentative d'interruption de la sauvegarde. Cela peut prendre du temps.", -"unarchived_in": "Ne sera plus archivé dans", -"validate_err_notregexp_archive_window": "Le format pour l'intervalle d'archivage est mauvais", -"wait_for_archive_window": "Attente du prochain lancement", -"validate_err_notregexp_image_letters": "Le format pour la lettre de disque est mauvais", -"validate_name_global_local_speed": "Vitesse max totale pour la sauvegarde en réseau local", -"validate_name_global_internet_speed": "Vitesse max totale pour la sauvegarde via internet", -"validate_name_local_speed": "Vitesse maximale pour la sauvegarde en réseau local", -"validate_name_internet_speed": "Vitesse maximale pour la sauvegarde via internet", -"enter_clientname": "Merci d'entrer un nom de client", -"internet_client_added": "Client ajouté. Vous pouvez voir la clef du client (ou mot de passe) dans le menu Réglages.", -"tArchive every": "Archiver tous les", -"tArchive for": "Archives pour", -"tArchive window": "Intervalle d'archivage", -"tBackup type": "Type de sauvegarde", -"tNext archival": "Prochain archivage", -"tweeks": "Semaines", -"tmonth": "Mois", -"tyears": "Années", -"tforever": "Pour toujours", -"tFile backup": "Sauvegarde de fichiers", -"tIncremental file backup": "Sauvegarde de fichiers incrémentielle", -"tFull file backup": "Sauvegarde de fichiers complète", -"tMax backup speed for local network": "Vitesse maximale du réseau local", -"tTotal max backup speed for local network": "Somme totale de la vitesse maximale pour le réseau local", -"tMax backup speed for internet connection": "Vitesse maximale du réseau internet", -"tTotal max backup speed for internet connection": "Somme totale de la vitesse maximale pour le réseau internet", -"tEnable internet mode (requires server restart)": "Activer le mode internet (nécessite un redémarrage du serveur)", -"tInternet server name/IP": "Adresse internet du serveur HOTE/IP", -"tInternet server port": "Port du serveur Internet", -"tEnable internet mode": "Activer le mode internet", -"tInternet auth key": "Clé d'authentification du serveur internet", -"tDo image backups over internet": "Activer la sauvegarde Image via Internet", -"tDo full file backups over internet": "Activer les sauvegardes complètes par internet", -"tEncrypted transfer": "Encrypter les échanges", -"tCompressed transfer": "Compresser les échanges", -"tArchival": "Archivage", -"tPermissions": "Droits", -"tImage backups": "Sauvegarde Image", -"tFile backups": "Sauvegarde Fichiers", -"tServer": "Serveur", -"tSelect all": "Tout sélectionner", -"tSelect none": "Ne rien sélectionner", -"tRemove selected": "Supprimer sélectionnés", -"tIncremental image backup": "Sauvegarde image incrémentielle", -"tFull image backup": "Sauvegarde image complète", -"tStart for selected": "Lancer les sélectionnés", -"tExtra clients": "Clients supplémentaires", -"tHostname/IP": "HOTE/IP", -"tOnline": "En ligne", -"tActions": "Action", -"tAdd": "Ajouter", -"tShow details": "Plus de détails", -"tNo extra clients": "Pas de clients supplémentaires", -"tAutoupdate clients": "Mettre à jour les clients", -"tClients are removed during the cleanup time window, if they are offline.": "Les clients seront supprimés durant l'intervalle de purge, si ils ne sont pas en ligne.", -"tPerform autoupdates silently": "Appliquer les mises à jour automatiques en silence", -"tArchived": "Archivés", -"nospc_stalled_text": "Il n' y a plus d'espace disponible dans le répertoire de sauvegarde. UrBackup efface les anciennes sauvegardes de fichiers et image pour faire de l'espace, selon les paramètres définis dans Réglages. Pendant cette phase, les performances de la sauvegarde diminuent, et les sauvegardes sont stoppées .", -"nospc_fatal_text": "Il n' y a plus d'espace disponible dans le répertoire de sauvegarde. UrBackup a tenté de purger les anciennes sauvegardes mais ne peut en effacer plus à cause des paramètres définis. Merci de changer ces paramètres à la baisse ou d'augmenter l'espace de stockage alloué afin de permettre à UrBackup de poursuivre." -} -translations.fa={ -"action_1": "پشتیبان گیری افزایشی فایل", -"action_2": "پشتیبان گیری کامل فایل", -"action_3": "پشتیبان گیری افزایشی تصویر", -"action_4": "پشتیبان گیری کامل تصویر", -"action_1_d": "حذف پشتیبان گیری افزایشی فایل", -"action_2_d": "حذف پشتیبان گیری کامل فایل", -"action_3_d": "حذف پشتیبان گیری افزایشی تصویر", -"action_4_d": "حذف پشتیبان گیری کامل تصویر", -"nav_item_6": "وضعیت", -"nav_item_5": "عملیات", -"nav_item_4": "پشتیبان گیری ها", -"nav_item_3": "لاگ ها", -"nav_item_2": "ارقام", -"nav_item_1": "تنظیمات", -"unknown": "ناشناخته", -"overview": "بازبینی", -"ok": "تایید", -"no_recent_backup": "بدون پشتیبان گیری", -"backup_never": "هرگز", -"yes": "بله", -"no": "خیر", -"users": "کاربران", -"general_settings": "تنظیمات عمومی", -"admin": "مدیر", -"user": "کاربر", -"username_empty": "لطفا نام کاربری را وارد کنید", -"password_empty": "لطفا کلمه عبور را وارد کنید", -"password_differ": "کلمات عبور متفاوت هستند", -"user_n_exist": "کاربر وجود ندارد", -"password_wrong": "کلمه عبور اشتباه است", -"user_exists": "کاربری با این نام از قبل وجود دارد", -"session_timeout": "با توجه به عدم فعالیت، شما باید مجدد وارد شوید", -"really_del_user": "از حذف کاربر مطمئن هستید؟", -"user_add_done": "کاربر جدید با موفقیت اضافه شد", -"user_remove_done": "کاربر با موفقیت حذف شد", -"user_update_right_done": "کاربر با موفقیت به روز شد", -"user_pw_change_ok": "کلمه عبور با موفقیت تغییر کرد", -"right_all": "تمام حقوق", -"right_none": "بدون حقوق", -"filter": "فیلتر", -"all": "همه", -"loglevel_0": "اطلاعات", -"loglevel_1": "هشدار", -"loglevel_2": "خطا", -"tActivities": "فعالیت ها", -"tComputer name": "نام کامپیوتر", -"tAction": "عملیات", -"tFiles in queue": "فایل های در صف", -"tNo activities": "بدون فعالیت", -"tBackup time": "زمان پشتیبان گیری", -"tErrors": "خطا", -"tWarnings": "هشدار", -"tLogs": "لاگ ها", -"tNo entries for this filter": "چیزی مطابق با معیارهای این فیلتر وجود ندارد", -"tAll": "همه", -"tUsername": "نام کاربری", -"tPassword": "کلمه عبور", -"tLogin": "ورود", -"tInfos": "اطلاعات", -"tFilter": "فیلتر", -"tBack": "بازگشت", -"tLog": "لاگ", -"tLevel": "مرحله", -"tTime": "زمان", -"tMessage": "پیام", -"tLast activities": "فعالیت های اخیر", -"tID": "شناسه", -"tStarting time": "زمان شروع", -"tRequired time": "زمان درخواستی", -"tUsed Storage": "فضای استفاده شده", -"tClients": "مشتریان", -"tFile": "فایل", -"tSize": "حجم", -"tLast file backup": "آخرین پشتیبان گیری فایل", -"tIncremental": "افزایشی", -"tBackup status": "وضعیت پشتیبان گیری", -"tLast seen": "آخرین دیدار", -"tLast file backup": "آخرین پشتیبان گیری فایل", -"tLast image backup": "آخرین پشتیبان گیری تصویر", -"tFile backup status": "وضعیت پشتیبان گیری فایل", -"tImage backup status": "وضعیت پشتیبان گیری تصویر", -"tLoading": "بارگیری", -"tStorage usage of": "فضای استفاده شده از", -"tStorage allocation": "تخصیص فضا", -"tImages": "تصاویر", -"tFiles": "فایل ها", -"tSum": "مجموع", -"tStorage usage": "مصرف حافظه", -"tNo Users": "هیچ کاربری", -"tRemove": "برداشتن", -"tChange rights": "تغییر حقوق", -"tChange password": "تفییر کلمه عبور", -"tRights": "حقوق", -"tActions": "عملیات", -"tCreate user": "ایجاد کاربر", -"tDelete domain": "حذف دامین", -"tChange rights for user": "تغییر حقوق برای کاربر", -"tDomain": "دامین", -"tTranslation": "ترجمه", -"tNew domain": "دامین جدید", -"tAbort": "لغو", -"tChange": "تغییر", -"tChange password for user": "تغییر کلمه عبور برای کاربر", -"tRepeat password": "کلمه عبور را تکرار کنید", -"tRights for": "حقوق برای", -"tCreate": "ایجاد", -"tSeparate settings for this client": "تنظیمات جداگانه برای این مشتری", -"tSave": "ذخیره", -"tSaved settings successfully": "تنظیمات با موفقیت ذخیره شدند", -"tInterval for incremental file backups": "بازه پشتیبان گیری افزایشی فایل", -"tInterval for full file backups": "بازه پشتیبان گیری کامل فایل", -"thours": "ساعات", -"tdays": "روزها", -"tInterval for incremental image backups": "بازه پشتیبان گیری افزایشی تصویر", -"tInterval for full image backups": "بازه پشتیبان گیری کامل تصویر", -"tMaximal number of incremental file backups": "بیشترین تعداد پشتیبان گیری افزایشی فایل", -"tMinimal number of incremental file backups": "کمترین تعداد پشتیبان گیری افزایشی فایل", -"tMaximal number of full file backups": "بیشترین تعداد پشتیبان گیری کامل فایل", -"tMinimal number of full file backups": "کمترین تعداد پشتیبان گیری کامل فایل", -"tMaximal number of incremental image backups": "بیشترین تعداد پشتیبان گیری افزایشی تصویر", -"tMinimal number of incremental image backups": "کمترین تعداد پشتیبان گیری افزایشی تصویر", -"tMaximal number of full image backups": "بیشترین تعداد پشتیبان گیری کامل تصویر", -"tMinimal number of full image backups": "کمترین تعداد پشتیبان گیری کامل تصویر", -"tDelay after system startup": "تاخیر در راه اندازی سیستم", -"tmin": "دقیقه", -"tAllow client-side changing of settings": "به مشتریان اجازه تغییر تنظیمات را میدهد", -"tBackup storage path": "مسیر پشتیبان گیری", -"tDo not do image backups": "پشتیبان گیری تصویر وجود ندارد", -"tAutomatically shut down server": "خاموش کردن سرور به صورت خودکار", -"dir_error_text": "دایرکتوری ذخیره پشتیبان ها در دسترس نیست.لطفا تنظیمات دایرکتوری را تغییر داده و یا حقوق دسترسی برنامه را عوض کنید", -"tmpdir_error_text": "دایرکتوری ذخیره فایل های موقت در دسترس نیست.لطفا تنظیمات دایرکتوری را تغییر داده و یا حقوق دسترسی برنامه را عوض کنید", -"starting": "شروع", -"ident_err": "سرور رد کرد", -"tNo extra clients": "بدون مشتریان اضافی", -"tShow details": "نمایش جزییات", -"tAutoupdate clients": "به روزرسانی خودکار مشتریان", -"enter_hostname": "را وارد کنید IP لطفا نام میزبان و یا", -"clients": "مشتریان", -"tMax number of simultaneous backups": "بیشترین تعداد پشتیبان گیری همزمان", -"tMax number of recently active clients": "بیشترین تعداد مشتریان فعال", -"tBackup window": "پنجره پشتیبان گیری", -"validate_text_empty": "Please enter a value for # {name}", -"validate_text_notint": "Please enter a numeric value for # {name}", -"validate_name_update_freq_incr": "بازه پشتیبان گیری افزایشی فایل", -"validate_name_update_freq_full": "بازه پشتیبان گیری کامل فایل", -"validate_name_update_freq_image_full": "بازه پشتیبان گیری کامل تصویر", -"validate_name_update_freq_image_incr": "بازه پشتیبان گیری افزایشی تصویر", -"validate_name_max_file_incr": "بیشترین تعداد پشتیبان گیری افزایشی فایل", -"validate_name_min_file_incr": "کمترین تعداد پشتیبان گیری افزایشی فایل", -"validate_name_max_file_full": "بیشترین تعداد پشتیبان گیری کامل فایل", -"validate_name_min_file_full": "کمترین تعداد پشتیبان گیری کامل فایل", -"validate_name_min_image_incr": "کمترین تعداد پشتیبان گیری افزایشی تصویر", -"validate_name_max_image_incr": "بیشترین تعداد پشتیبان گیری افزایشی تصویر", -"validate_name_min_image_full": "کمترین تعداد پشتیبان گیری کامل تصویر", -"validate_name_max_image_full": "بیشترین تعداد پشتیبان گیری کامل تصویر", -"validate_name_startup_backup_delay": "تاخیر در راه اندازی سیستم", -"validate_err_notregexp_backup_window": "فرمت اشتباه", -"validate_name_max_active_clients": "بیشترین تعداد مشتریان فعال", -"validate_name_max_sim_backups": "بیشترین تعداد پشتیبان گیری همزمان", -"validate_name_backupfolder": "نام فولدر پشتیبان گیری", -"too_many_clients_err": "تعداد مشتریان بیش از حد مجاز است", -"validate_name_computername": "نام کامپیوتر", -"tExcluded files (with wildcards)": "(Wildcardsفایل های محروم (با", -"tComputer name": "نام کامپیوتر", -"tDefault directories to backup": "دایرکتوری پیش فرض برای پشتیبان گیری", -"really_remove_client": "آیا از حذف این مشتری مطمئن هستید؟ با حذف آن تمام فایل ها و تصاویر پشتیبان مربوط به آن حذف میشوند", -"tThis client is going to be removed.": "این مشتری برداشته میشوند", -"tStop removing client": "توقف برداشتن مشتری", -"Computername": "نام کامپیوتر", -"storage_usage_pie_graph_title": "استفاده از فضا", -"storage_usage_pie_graph_colname1": "نام کامپیوتر", -"storage_usage_pie_graph_colname2": "استفاده از فضا", -"storage_usage_bar_graph_title": "تاریخچه استفاده از فضا", -"storage_usage_bar_graph_colname1": "تاریخ", -"storage_usage_bar_graph_colname2": "استفاده از فضا", -"tServer identity": "هویت سرور", -"tNondefault temporary file directory": "دایرکتوری پیش فرضی برای فایل های موقت وجود ندارد", -"tCleanup time window": "پنجره زمان پاکسازی", -"validate_err_notregexp_cleanup_window": "فرمت پنجره زمان پاکسازی اشتباه است", -"mail_settings": "ایمیل", -"tReports": "گزارش ها", -"tSend reports to": "ارسال گزارش ها برای", -"tSend": "ارسال", -"tBackups with a log message of at least log level": "پشتیبان گیری با پیام لاگ از کمترین سطح", -"tFailed": "ناموفق", -"tSuccessfull": "موفق", -"tInfo": "اطلاعات", -"tError": "خطا", -"tWarning": "هشدار", -"tMail server name": "نام سرور ایمیل", -"tMail server port": "پورت سرور ایمیل", -"tMail server username (empty for none)": "(نام کاربری سرور ایمیل (برای هیچ خالی بگذارید", -"tMail server password": "کلمه عبور سرور ایمیل", -"tSender E-Mail Address": "آدرس فرستنده ایمیل", -"tSend mails only with SSL/TLS": "ارسال کن SSL/TLSایمیل ها را تنها با ", -"tCheck SSL/TLS certificate": "SSL/TLS بررسی اعتبار", -"tSend test mail to this email address after saving the settings (leave empty to not send a test mail)": "پس از ذخیره تنظیمات یک ایمیل آزمایشی به این آدرس ارسال کن", -"tTest Mail sent successfully": "ایمیل آزمایشی با موفقیت ارسال شد", -"tSending test mail failed. Error:": "ارسال ایمیل آزمایشی شکست خورد", -"tAllow client-side changing of the directories to backup": "به مشتریان مجوز تغییر دایرکتوری پشتیبان گیری را بده", -"tAllow client-side starting of file backups": "به مشتریان مجوز شروع پشتیبان گیری فایل را میدهد", -"tAllow client-side starting of image backups": "به مشتریان مجوز شروع پشتیبان گیری تصویر را میدهد", -"tAllow client-side viewing of backup logs": "به مشتریان مجوز مشاهده لاگ پشتیبان گیری را میدهد", -"tAllow client-side pausing of backups": "به مشتریان مجوز توقف پشتیبان گیری را میدهد", -"tAutomatically backup UrBackup database": "بانک اطلاعاتی پشتیبان گیری خودکار برنامه", -"tDo not do file backups": "پشتیبان گیری فایل اجرا نشود", -"upgrade_error_text": "دیتابیس برنامه داخلی است به همین دلیل ارتقا کمی طول میکشد. در حین ارتقا رابط کاربری برنامه غیرفعال بوده و هیچ پشتیبان گیری انجام نمیشود", -"tCurrent version": "نسخه فعلی", -"tTarget version": "نسخه هدف", -"tVolumes to backup": "مقدار پشتیبان گیری", -"internet_server_settings": "تنظیمات سرور داخلی", -"tIncluded files (with wildcards)": "(Wildcardsفایل های مشمول (با", -"tWarning: The settings configured on the client will overwrite the settings configured here. If you want to change this behaviour do not allow the client to change settings.": "هشدار : تنظیمات مشتری بر تنظیماتی که اینجا انجام میشود تاثیر میگذرد. اگر نمیخواهید این اتفاق افتد مجوز تغییر تنظیمات کاربر را لغو کنید", -"change_pw": "تغییر کلمه عبور", -"old_pw_wrong": "کلمه عبور قبلی اشتباه است", -"hours": "ساعات", -"days": "روزها", -"weeks": "هفته ها", -"months": "ماه ها", -"year": "سال", -"hour": "ساعت", -"day": "روز", -"week": "هفته", -"month": "ماه", -"years": "سال ها", -"min": "دقیقه", -"mins": "دقایق", -"validate_name_archive_every": "بایگانی", -"validate_name_archive_for": "بایگانی برای", -"forever": "همیشه", -"backup_in_progress": "در حال پشتیبان گیری", -"really_remove_clients": "آیا از حذف این مشتری مطمئن هستید؟ با این کار تمام فایل ها و تصاویر پشتیبان مربوط به او حذف میشوند", -"no_client_selected": "مشتری انتخاب نشده است", -"queued_backup": "پشتیبان گیری در صف", -"starting_backup_failed": "پشتیبان گیری شروع نشد", -"trying_to_stop_backup": "پشتیبان گیری را متوقف کنید", -"unarchived_in": "بایگانی نشده در", -"validate_err_notregexp_archive_window": "فرمت اشتباه برای پنجره بایگانی", -"wait_for_archive_window": "در انتظار پنجره بایگانی", -"validate_err_notregexp_image_letters": "فرمت نام حجم اشتباه است", -"validate_name_global_local_speed": "سرعت اتصال به شبکه محلی", -"validate_name_global_internet_speed": "سرعت اتصال به اینترنت", -"validate_name_local_speed": "بیشترین سرعت اتصال به شبکه محلی", -"validate_name_internet_speed": "بیشترین سرعت اتصال به اینترن", -"enter_clientname": "نام مشتری را وارد کنید", -"internet_client_added": "مشتری اضافه شد. برای تغییر کلمه عبور به بخش تنظیمات بروید", -"tArchive every": "بایگانی در هر", -"tArchive for": "بایگانی برای", -"tArchive window": "پنجره بایگانی", -"tBackup type": "نوع پشتیبان گیری", -"tNext archival": "بایگانی بعدی", -"tweeks": "هفته ها", -"tmonth": "ماه", -"tyears": "سال ها", -"tforever": "همیشه", -"tFile backup": "فایل پشتیبان", -"tIncremental file backup": "فایل پشتیبان افزایشی", -"tFull file backup": "فایل پشتیبان کامل", -"tMax backup speed for local network": "بیشترین سرعت اتصال به شبکه محلی", -"tTotal max backup speed for local network": "حداکثر سرعت کلی شبکه محلی", -"tMax backup speed for internet connection": "بیشترین سرعت اتصال به اینترنت", -"tTotal max backup speed for internet connection": "حداکثر سرعت کلی اینترنت", -"tEnable internet mode (requires server restart)": "(فعال سازی حالت اینترنت (سرور باید ریست شود", -"tInternet server name/IP": "نام سرور اینترنت", -"tInternet server port": "پورت اینترنت", -"tEnable internet mode": "فعال سازی حالت اینترنت", -"tInternet auth key": "اینترنت کلیدی", -"tDo image backups over internet": "انجام پشتیبان گیری تصویر بر روی اینترنت", -"tDo full file backups over internet": "انجام پشتیبان گیری فایل بر روی اینترنت", -"tEncrypted transfer": "رمزنگاری انتقال", -"tCompressed transfer": "انتقال فشرده", -"tArchival": "بایگانی", -"tPermissions": "مجوز", -"tImage backups": "پشتیبان گیری تصویر", -"tFile backups": "پشتیبان گیری فایل", -"tServer": "سرور", -"tSelect all": "انتخاب همه", -"tSelect none": "انتخاب هیچ کدام", -"tRemove selected": "برداشتن انتخاب شدگان", -"tIncremental image backup": "پشتیبان گیری افزایشی تصویر", -"tFull image backup": "پشتیبان گیری کامل تصویر", -"tStart for selected": "شروغ انتخاب شوندگان", -"tExtra clients": "مشتریان اضافی", -"tHostname/IP": "IP/نام", -"tOnline": "برخط", -"tActions": "فعالیت ها", -"tAdd": "افزودن", -"tClients are removed during the cleanup time window, if they are offline.": "مشتریان در حین پاکسازی اگر آفلاین باشند حذف میشوند", -"tPerform autoupdates silently": "انجام به روز رسانی خودکار در پس زمینه", -"tArchived": "بایگانی شده", -"nospc_stalled_text": "فضای لازم برای پشتیبان گیری وجود ندارد.برنامه فایل ها و تصاویر پشتیبان قدیمی را حذف میکند.", -"nospc_fatal_text": "فضای لازم برای پشتیبان گیری وجود ندارد.برنامه فایل ها و تصاویر پشتیبان قدیمی را حذف میکند. ولی همچنان فضا کم است. لطفا در بخش تنظیمات فضای بیشتری به پشتیبان گیری اختصاص دهید.", -"about_urbackup": "درباره برنامه" -} +if(!window.translations) translations=new Object(); +translations.de = { +"action_1": "Inkrementelles Datei Backup", +"action_2": "Volles Datei Backup", +"action_3": "Inkrementelles Image Backup", +"action_4": "Volles Image Backup", +"action_1_d": "Lösche inkrementelles Datei Backup", +"action_2_d": "Lösche volles Datei Backup", +"action_3_d": "Lösche inkrementelles Image Backup", +"action_4_d": "Lösche volles Image Backup", +"nav_item_6": "Status", +"nav_item_5": "Vorgänge", +"nav_item_4": "Backups", +"nav_item_3": "Logs", +"nav_item_2": "Statistiken", +"nav_item_1": "Einstellungen", +"unknown": "Unbekannt", +"overview": "Überblick", +"ok": "OK", +"no_recent_backup": "Kein aktuelles", +"backup_never": "Nie", +"yes": "Ja", +"no": "Nein", +"tBackup status": "Backup Status", +"tComputer name": "Computername", +"tLast seen": "Letzter Onlinezeitpunkt", +"tLast file backup": "Letztes Dateibackup", +"tLast image backup": "Letztes Imagebackup", +"tFile backup status": "Dateibackup status", +"tImage backup status": "Imagebackup status", +"tShow details": "Details anzeigen", +"tExtra clients": "Zusätzliche Clients", +"tNo extra clients": "Keine zusätzlichen Clients", +"tActions": "Aktionen", +"tOnline": "Online", +"tHostname/IP": "Name/IP", +"tServer identity": "Serveridentität", +"users": "Benutzer", +"general_settings": "Allgemein", +"admin": "Administrator", +"user": "Benutzer", +"username_empty": "Bitte geben Sie einen Benutzernamen ein", +"password_empty": "Bitte geben Sie ein Passwort ein", +"password_differ": "Die Passwörter unterscheiden sich", +"user_n_exist": "Benutzer existiert nicht", +"password_wrong": "Falsches Passwort für diesen Benutzer", +"user_exists": "Ein Benutzer mit diesem Namen existiert bereits", +"session_timeout": "Durch Inaktivität ist ihre Session leider nicht mehr aktuell. Sie sollten sich erneut einloggen.", +"really_del_user": "Benutzer wirklich löschen?", +"user_add_done": "Der neue Benutzer wurde erfolgreich hinzugefügt.", +"user_remove_done": "Der Benutzer wurde erfolgreich gelöscht", +"user_update_right_done": "Die Rechte des Benutzers wurden erfolgreich geändert", +"user_pw_change_ok": "Passwort erfolgreich geändert", +"right_all": "Alle Rechte", +"right_none": "Keine Rechte", +"filter": "Filter", +"all": "Alle", +"loglevel_0": "Info", +"loglevel_1": "Warnung", +"loglevel_2": "Fehler", +"dir_error_text": "Auf das Verzeichnis in dem UrBackup die Backups speichern soll kann nicht zugegriffen werden. Bitte verändern Sie in den Einstellungen das Verzeichnis oder geben Sie UrBackup Zugriffsrechte.", +"tmpdir_error_text": "Auf das Verzeichnis in dem UrBackup die temporären Dateien speichern soll kann nicht zugegriffen werden. Bitte verändern Sie in den Einstellungen das Verzeichnis oder geben Sie UrBackup Zugriffsrechte.", +"starting": "Starte", +"ident_err": "Server abgelehnt", +"enter_hostname": "Bitte geben Sie eine IP-Adresse oder einen Hostenamen ein", +"clients": "Clients", +"validate_text_empty": "Bitte geben Sie einen Wert für {name} ein", +"validate_text_notint": "Bitte geben Sie einen numerischen Wert für {name} ein", +"validate_name_update_freq_incr": "Intervall für inkrementelle Datei Backups", +"validate_name_update_freq_full": "Intervall für volle Datei Backups", +"validate_name_update_freq_image_full": "Intervall für inkrementelle Image-Backups", +"validate_name_update_freq_image_incr": "Intervall für volle Image-Backups", +"validate_name_max_file_incr": "Maximale Anzahl an inkrementellen Backups", +"validate_name_min_file_incr": "Minimale Anzahl an inkrementellen Backups", +"validate_name_max_file_full": "Maximale Anzahl an vollen Datei Backups", +"validate_name_min_file_full": "Minimale Anzahl an vollen Datei Backups", +"validate_name_min_image_incr": "Minimale Anzahl an inkrementellen Image-Backups", +"validate_name_max_image_incr": "Maximale Anzahl an inkrementellen Image-Backups", +"validate_name_min_image_full": "Minimale Anzahl an vollen Image-Backups", +"validate_name_max_image_full": "Maximale Anzahl an vollen Image-Backups", +"validate_name_startup_backup_delay": "Verzögerung bei Systemstart", +"validate_err_notregexp_backup_window": "Falsches Format für Backup Zeitfenster", +"validate_name_max_active_clients": "Maximale Anzahl aktiver Clients", +"validate_name_max_sim_backups": "Maximale Anzahl simultaner Backups", +"validate_name_backupfolder": "Speicherort für Backups", +"validate_name_computername": "Computername", +"too_many_clients_err": "Zu viele clients", +"really_remove_client": "Wollen Sie wirklich diesen Client löschen? Das bedeutet, dass alle Datei- und Imagebackups dieses Clients gelöscht werden!", +"computername": "Computername", +"storage_usage_pie_graph_title": "Speichernutzung", +"storage_usage_pie_graph_colname1": "Computername", +"storage_usage_pie_graph_colname2": "Speichernutzung", +"storage_usage_bar_graph_title": "Speichernutzungsverlauf", +"storage_usage_bar_graph_colname1": "Datum", +"storage_usage_bar_graph_colname2": "Speichernutzung", +"tImages": "Images", +"tFiles": "Dateien", +"tSum": "Gesamt", +"validate_err_notregexp_cleanup_window": "Falsches Format für das Aufräum Zeitfenster", +"mail_settings": "E-Mail", +"upgrade_error_text": "UrBackup aktualisiert seine interne Datenbank. Das könnte eine Weile dauern. Während der Aktualisierung ist das Webinterface nicht erreichbar und keine Backups werden durchgeführt.", +"tActivities": "Aktive Vorgänge", +"tAction": "Aktion", +"tProgress": "Fortschritt", +"tFiles in queue": "Dateien in Warteschleife", +"tLast activities": "Letzte Vorgänge", +"tStarting time": "Startzeit", +"tRequired time": "Benötigte Zeit", +"tUsed Storage": "Speichernutzung", +"tClients": "Clients", +"tLogs": "Logs", +"tReports": "Reports", +"tSend reports to": "Reports senden an", +"tSend": "Sende", +"tBackups with a log message of at least log level": "Backups mit Benachrichtigungen mit wenigstens Wichtigkeit", +"tBackup time": "Backupzeitpunkt", +"tErrors": "Fehler", +"tWarnings": "Warnungen", +"tStorage allocation": "Speicherbelegung", +"tStorage usage": "Speichernutzungsverlauf", +"tAll": "Alle", +"tBackup storage path": "Speicherort für Backups", +"tDo not do image backups": "Keine Imagebackups ausführen", +"tDo not do file backups": "Keine Dateibackups ausführen", +"tAutomatically shut down server": "Server automatisch herunterfahren", +"tAutoupdate clients": "Clientprogramme automatisch aktualisieren", +"tMax number of simultaneous backups": "Maximale Anzahl simultaner Backups", +"tMax number of recently active clients": "Maximale Anzahl aktiver Clients", +"tCleanup time window": "Aufräum Zeitfenster", +"tAutomatically backup UrBackup database": "Automatisch UrBackup Datenbank sichern", +"tInterval for incremental file backups": "Intervall für inkrementelle Datei Backups", +"tInterval for full file backups": "Intervall für volle Backups", +"tInterval for incremental image backups": "Intervall für inkrementelle Image-Backups", +"tInterval for full image backups": "Intervall für volle Image-Backups", +"tMaximal number of incremental file backups": "Maximale Anzahl an inkrementellen Backups", +"tMinimal number of incremental file backups": "Minimale Anzahl an inkrementellen Backups", +"tMaximal number of full file backups": "Maximale Anzahl an vollen Datei Backups", +"tMinimal number of full file backups": "Minimale Anzahl an vollen Datei Backups", +"tMaximal number of incremental image backups": "Maximale Anzahl an inkrementellen Image-Backups", +"tMinimal number of incremental image backups": "Minimale Anzahl an inkrementellen Image-Backups", +"tMaximal number of full image backups": "Maximale Anzahl an vollen Image-Backups", +"tMinimal number of full image backups": "Minimale Anzahl an vollen Image-Backups", +"tDelay after system startup": "Verzögerung bei Systemstart", +"tBackup window": "Backup Zeitfenster", +"tExcluded files (with wildcards)": "Ausgeschlossene Dateien (mit Wildcards)", +"tIncluded files (with wildcards)": "Eingeschlossene Dateien (mit Wildcards)", +"tDefault directories to backup": "Standarmäßig gesicherte Verzeichnisse:", +"tVolumes to backup": "Zu sichernde Laufwerke", +"tAllow client-side changing of the directories to backup": "Clients das Ändern der zu sichernden Verzeichnisse erlauben", +"tAllow client-side starting of file backups": "Clients erlauben Dateibackups zu starten", +"tAllow client-side starting of image backups": "Clients erlauben Imagebackups zu starten", +"tAllow client-side viewing of backup logs": "Clients erlauben Logs anzuschauen", +"tAllow client-side pausing of backups": "Clients erlauben Backups zu pausieren", +"tAllow client-side changing of settings": "Clients erlauben Einstellungen zu verändern", +"tdays": "Tage", +"thours": "Stunden", +"tmin": "min", +"tMail server name": "Mailserver Name/IP", +"tMail server port": "Mailserver Port", +"tMail server username (empty for none)": "Benutzername (leer für keinen)", +"tMail server password": "Passwort", +"tSender E-Mail Address": "Absender E-Mail Adresse", +"tSend mails only with SSL/TLS": "E-Mails nur mit SSL/TLS Sicherung schicken", +"tCheck SSL/TLS certificate": "SSL/TLS Zertifikat prüfen", +"tSend test mail to this email address after saving the settings (leave empty to not send a test mail)": "Sende Test E-Mail an diese Adresse nach Speichern der Einstellungen (leer lassen um keine Test E-Mail zu senden)", +"tTest Mail sent successfully": "Test E-Mail erfolgreich gesendet", +"tSending test mail failed. Error:": "Senden der Test E-Mail fehlgeschlagen. Fehler:", +"tFilter": "Filter", +"tBack": "Zurück", +"tAdd": "Hinzufügen", +"tRemove": "Löschen", +"tSave": "Speichern", +"tLevel": "Level", +"tTime": "Zeitpunkt", +"tMessage": "Nachricht", +"tLog": "Log", +"tUsername": "Benutzername", +"tRights": "Rechte", +"tNo Users": "Keine Benutzer", +"tCreate user": "Benutzer erstellen", +"tPassword": "Passwort", +"tRepeat password": "Passwort wiederholen", +"tRights for": "Rechte für", +"tAbort": "Abbrechen", +"tCreate": "Erstellen", +"tChange rights": "Rechte ändern", +"tChange password": "Passwort ändern", +"tLogin": "Einloggen", +"tInfos": "Informationen", +"tSeparate settings for this client": "Separate Einstellungen für diesen Client", +"tServer": "Server", +"tFile backups": "Dateibackups", +"tImage backups": "Imagebackups", +"tPermissions": "Berechtigungen", +"tClient": "Client", +"tArchival": "Archivieren", +"tInternet": "Internet", +"tPerform autoupdates silently": "Autoupdates im Hintergrund ausführen", +"tMax backup speed for local network": "Maximale Geschwindigkeit für lokales Netzwerk", +"tNo activities": "Keine Vorgänge", +"tSelect all": "Alle auswählen", +"tSelect none": "Keinen auswählen", +"tRemove selected": "Ausgewählte löschen", +"tStart for selected": "Für ausgewählte starten", +"tInternet clients": "Internet Clients", +"tAdd additional internet clients": "Zusätzliche Internet clients hinzufügen", +"tClient name": "Clientname", +"tNo entries for this filter": "Keine Einträge entsprechen den Filterkriterien", +"tNo data": "Keine Daten", +"tTotal max backup speed for local network": "Maximale Gesamtgeschwindigkeit für lokales Netzwerk", +"tArchive every": "Archiviere alle", +"tArchive for": "Archiviere für", +"tArchive window": "Archivierungs-zeitfenster", +"tBackup type": "Backuptyp", +"tEnable internet mode (requires server restart)": "Internetmodus aktivieren (benötigt Serverneustart)", +"tInternet server name/IP": "Internet Servername/IP", +"tInternet server port": "Internet Port", +"tDo image backups over internet": "Imagebackups über das Internet durchführen", +"tDo full file backups over internet": "Volle Dateibackups über das Internet durchführen", +"tMax backup speed for internet connection": "Maximale Geschwindigkeit für Internetverbindung", +"tTotal max backup speed for internet connection": "Maximale Gesamtgeschwindigkeit für Internetverbindung", +"tEncrypted transfer": "Transfers verschlüsseln", +"tCompressed transfer": "Transfers komprimieren", +"file_backup": "Datei-Backup", +"hours": "Stunden", +"days": "Tage", +"weeks": "Wochen", +"months": "Monate", +"year": "Jahr", +"hour": "Stunde", +"day": "Tag", +"week": "Woche", +"month": "Monat", +"years": "Jahre", +"min": "Minute", +"mins": "Minuten", +"validate_name_archive_every": "Archiviere alle", +"validate_name_archive_for": "Archiviere für", +"forever": "Für immer", +"backup_in_progress": "Backup läuft...", +"really_remove_clients": "Wollen Sie wirklich diese Clients entfernen? Das bedeutet dass alle zugehörigen Datei- und Imagebackups gelöscht werden!", +"no_client_selected": "Kein Client wurde ausgewählt", +"queued_backup": "Backup in Warteschlange", +"starting_backup_failed": "Starten fehlgeschlagen", +"trying_to_stop_backup": "Versuche Backup zu stoppen. Dies könnte eine Weile dauern.", +"unarchived_in": "Wird nicht mehr archiviert sein in", +"validate_err_notregexp_archive_window": "Format für das Archivierungszeitfenster falsch", +"wait_for_archive_window": "Warte für nächstes Fenster/Ausführen", +"validate_err_notregexp_image_letters": "Format der Volumenbezeichnungen falsch", +"validate_name_global_local_speed": "Gesamtgeschwindigkeit für lokales Netzwerk", +"validate_name_global_internet_speed": "Gesamtgeschwindigkeit für Internetverbindung", +"validate_name_local_speed": "Maximale Geschwindigkiet für lokales Netzwerk", +"validate_name_internet_speed": "Maximale Geschwindigkiet für Internetverbindung", +"enter_clientname": "Bitte geben sie einen Clientnamen ein", +"internet_client_added": "Client hinzugefügt. Sie können den Schlüssel (auch Passwort) in den Einstellungen einsehen.", +"change_pw": "Passwort ändern", +"old_pw_wrong": "Altes passwort stimmt nicht", +"tID": "ID", +"tFile": "Datei", +"tSize": "Größe", +"tIncremental": "Inkrementell", +"tLoading": "Lade", +"tStorage usage of": "Speichernutzungsverlauf von", +"tDelete domain": "Domäne löschen", +"tChange rights for user": "Rechte ändern für Benutzer:", +"tDomain": "Domäne", +"tTranslation": "Übersetzung", +"tNew domain": "Neue Domäne", +"tChange": "Ändern", +"tChange password for user": "Passwort ändern für Benutzer:", +"tSaved settings successfully": "Speichern der Einstellungen erfolgreich", +"tThis client is going to be removed.": "Dieser Client wird entfernt.", +"tStop removing client": "Entfernen stoppen", +"tFailed": "Fehlgeschlagene", +"tSuccessfull": "Erfolgreiche", +"tInfo": "Info", +"tError": "Fehler", +"tWarning": "Warnung", +"tCurrent version": "Momentane version", +"tTarget version": "Zielversion", +"tWarning: The settings configured on the client will overwrite the settings configured here. If you want to change this behaviour do not allow the client to change settings.": "Warnung: Die Clientkonfiguration wird die Einstellungen hier überschreiben. Um dieses Verhalten zu ändern erlauben Sie dem Client nicht Einstellungen zu ändern.", +"tNext archival": "Nächste Archivierung", +"tweeks": "Wochen", +"tmonth": "Monate", +"tyears": "Jahre", +"tforever": "Für immer", +"tFile backup": "Dateibackup", +"tIncremental file backup": "Inkrementelles Dateibackup", +"tFull file backup": "Volles Dateibackup", +"tEnable internet mode": "Internetmodus aktivieren", +"tInternet auth key": "Internet Schlüssel", +"tIncremental image backup": "Inkrementelles Imagebackup", +"tFull image backup": "Volles Imagebackup", +"tClients are removed during the cleanup time window, if they are offline.": "Clients werden im Aufräumzeitfenster gelöscht, wenn sie nicht mehr online sind.", +"tArchived": "Archiviert", +"nospc_stalled_text": "Es is momentan nicht genügend Speicherplatz für Backups vorhanden. UrBackup löscht gerade alte Datei- und Image-Backups innerhalb der Grenzen die in den Einstellungen festgelegt sind. Wärend dieses Vorgangs ist die Performanz des Backupservers eventuell eingeschränkt; Laufende Backups sind eventuell pausiert.", +"nospc_fatal_text": "Es is momentan nicht genügend Speicherplatz für Backups vorhanden. UrBackup hat versucht alte Datei- und Image-Backups zu löschen, kann aber jetzt nicht weiteren Speicherplatz freimachen. Bitte ändern Sie die Einstellungen insofern, dass weniger Backups gespeichert werden, oder fügen Sie weiteren Backupspeicher hinzu, so dass UrBackup weiterhin Backups durchführen kann.", +"tNondefault temporary file directory": "Vom Standard abweichender temporärer Dateiordner", +"tClients are removed during the cleanup in the cleanup time window.": "Clients werden beim Aufräumen im Aufräumzeitfenster gelöscht.", +"about_urbackup": "Über UrBackup", +"loading": "Loading", +"authentication_err": "Fehler bei der Serverauthentifizierung", +"tInverval for incremental image backups": "Intervall für inkrementelle Image-Backups", +"action_5": "Fortgesetztes inkrementelles Datei-Backup", +"action_6": "Fortgesetztes volles Datei-Backup", +"really_recalculate": "Wollen Sie wirklich alle Statistiken neu berechen? Dies könnte einige Zeit beanspruchen!", +"database_error_text": "Während dem Zugriff auf oder beim Überprüfen von UrBackups interner Datenbank trat ein Fehler auf. Dies bedeutet die interne Datenbank ist vormutlich beschädigt oder es ist nicht mehr genügend Speichplatz für die Datenbank vorhanden. Wenn dieser Fehler auch nach einem Neustart auftritt, sollten Sie die Datenbank von einem Backup wiederherstellen (die Dateien urbackup_server.db und urbackup_server_settings.db). Siehe Log-Datei für Datails über die aufgetretenen Fehler.", +"creating_filescache_text": "UrBackup erstellt gerade den Dateieintrags-Cache. Dies könnte eine Zeit lang dauern.", +"tDownload folder as ZIP": "Ordner als ZIP-Datei herunterladen", +"tOld password": "Altes Passwort", +"tNew password": "Neues Passwort", +"tRepeat new password": "Neues Passwort wiederholen", +"tChanging password failed:": "Ändern des Passworts schlug fehl:", +"tChanged password successfully": "Passwort wurde erfolgreich geändert", +"tNumber of file entries processed": "Anzahl der bearbeiteten Dateieinträge", +"tUrBackup live log": "UrBackup Echtzeit-Log", +"tLive Log": "Echtzeit-Log", +"tShow": "Anzeigen", +"tThere is a new version of UrBackup server available": "Es ist eine neue Version des UrBackup Servers verfügbar", +"tIndexing...": "Indexiere...", +"tDelete": "Löschen", +"tDownload client from update server": "Client vom Update-Server herunterladen", +"tGlobal soft filesystem quota": "Globale \"soft filesystem quota\"", +"tDisable": "Deaktivieren", +"tCompress image backups": "Image-Backups komprimieren", +"tAllow client-side starting of full file backups": "Erlaube clientseitiges starten von vollen Datei-Backups", +"tAllow client-side starting of incremental file backups": "Erlaube clientseitiges starten von inkrementellen Datei-Backups", +"tAllow client-side starting of full image backups": "Erlaube clientseitiges starten von vollen Image-Backups", +"tAllow client-side starting of incremental image backups": "Erlaube clientseitiges starten von inkrementellen Image-Backups", +"tBackup window for incremental file backups": "Backupzeitfenster für inkrementelle Datei-Backups", +"tBackup window for full file backups": "Backupzeitfenster für volle Datei-Backups", +"tBackup window for incremental image backups": "Backupzeitfenster für inkrementelle Image-Backups", +"tBackup window for full image backups": "Backupzeitfenster für volle Image-Backups", +"tSoft client quota": "Client \"soft quota\"", +"tCalculate file-hashes on the client": "Datei-Prüfsummen auf dem Client berechnen", +"tAdvanced": "Erweitert", +"tTemporary files as file backup buffer": "Temporäre Dateien als Datei-Backup Puffer", +"tTemporary files as image backup buffer": "Temporäre Dateien als Image-Backup Puffer", +"tLocal full file backup transfer mode": "Voller Datei-Backup Transfermodus für lokales Netzwerk", +"tRaw": "Raw", +"tHashed": "Hashed", +"tInternet full file backup transfer mode": "Voller Datei-Backup Transfermodus für Internet", +"tLocal incremental file backup transfer mode": "Inkrementeller Datei-Backup Transfermodus für lokales Netzwerk", +"tBlock differences - hashed": "Block differences - hashed", +"tInternet incremental file backup transfer mode": "Inkrementeller Datei-Backup Transfermodus für Internet", +"tLocal image backup transfer mode": "Image-Backup Transfermodus für lokales Netzwerk", +"tInternet image backup transfer mode": "Image-Backup Transfermodus für Internet", +"tFile hash collection amount": "File hash collection amount", +"tFile hash collection timeout": "File hash collection timeout", +"tFile hash collection database cachesize": "File hash collection database cachesize", +"tMB": "MB", +"tUpdate stats database cachesize": "Update stats database cachesize", +"tCache database type for file entries": "Datenbanktyp für den Dateieintrags-Cache", +"tNone": "Keinen", +"tCache database size for file entries": "Datenbankgröße für Dateieintrags-Cache", +"tSuspend index limit": "Suspend index limit", +"tUse symlinks during incremental file backups": "Verwende symbolische Links bei inkrementellen Datei-Backups", +"tEnd-to-end verification of all file backups": "Ende-zu-Ende Verifikation aller Datei-Backups", +"tServer admin mail address": "E-Mail Adresse des Serveradministrators", +"tWarning: The settings configured on the client will overwrite the settings configured here. If you want to change this behaviour do not allow the client to change settings. ": "Warnung: Einstellungen des Clients überschreiben eventuell die hier konfigurierten Einstellungen. Wenn Sie dieses Verhalten ändern wollen erlauben Sie es dem Client nicht Einstellungen zu ändern.", +"tClient download": "Client herunterladen", +"tDownload": "Herunterladen", +"tStatus": "Status", +"tIP": "IP", +"tClient version": "Clientversion", +"tOperating System": "Betriebssystem", +"tShow all clients": "Alle Clients anzeigen", +"tThis client is going to be removed. ": "Dieser Client wird entfernt werden.", +"tClients are removed during the cleanup in the cleanup time window. ": "Clients werden im Aufräumzeitfenster entfernt.", +"tRecalculate statistics": "Statistiken neu berechnen" +} +translations.en = { +"action_1": "Incremental file backup", +"action_2": "Full file backup", +"action_3": "Incremental image backup", +"action_4": "Full image backup", +"action_1_d": "Deleting incremental file backup", +"action_2_d": "Deleting full file backup", +"action_3_d": "Deleting incremental image backup", +"action_4_d": "Deleting full image backup", +"nav_item_6": "Status", +"nav_item_5": "Activities", +"nav_item_4": "Backups", +"nav_item_3": "Logs", +"nav_item_2": "Statistics", +"nav_item_1": "Settings", +"unknown": "Unknown", +"overview": "Overview", +"ok": "Ok", +"no_recent_backup": "No recent backup", +"backup_never": "Never", +"yes": "Yes", +"no": "No", +"tBackup status": "Backup status", +"tComputer name": "Computer name", +"tLast seen": "Last seen", +"tLast file backup": "Last file backup", +"tLast image backup": "Last image backup", +"tFile backup status": "File backup status", +"tImage backup status": "Image backup status", +"tShow details": "Show details", +"tExtra clients": "Extra clients", +"tNo extra clients": "No extra clients", +"tActions": "Actions", +"tOnline": "Online", +"tHostname/IP": "Hostname/IP", +"tServer identity": "Server identity", +"users": "Users", +"general_settings": "General", +"admin": "Administrator", +"user": "User", +"username_empty": "Please enter a username", +"password_empty": "Please enter a password", +"password_differ": "The two passwords differ", +"user_n_exist": "User does not exist", +"password_wrong": "Wrong password", +"user_exists": "User with this name already exists", +"session_timeout": "Inactivity caused this session to become invalid. Please login again to proceed.", +"really_del_user": "Really remove this user?", +"user_add_done": "New user successfully added.", +"user_remove_done": "Successfully removed user.", +"user_update_right_done": "Successfully changed user rights.", +"user_pw_change_ok": "Successfully changed user password.", +"right_all": "All rights", +"right_none": "No Rights", +"filter": "Filter", +"all": "All", +"loglevel_0": "Info", +"loglevel_1": "Warnings", +"loglevel_2": "Errors", +"dir_error_text": "The directory where UrBackup will save backups is inaccessible. Please fix that by modifying this folder in 'Settings' or by giving UrBackup rights to access this directory.", +"tmpdir_error_text": "The directory where UrBackup will save temporary files is inaccessible. Please fix that by modifying this folder in 'Settings' or by giving UrBackup rights to access this directory.", +"starting": "Starting", +"ident_err": "Server rejected", +"enter_hostname": "Please enter a hostname or IP address", +"clients": "Clients", +"validate_text_empty": "Please enter a value for the {name}", +"validate_text_notint": "Please enter a numeric value for the {name}", +"validate_name_update_freq_incr": "interval for incremental file backups", +"validate_name_update_freq_full": "interval for full file backups", +"validate_name_update_freq_image_full": "interval for incremental image backups", +"validate_name_update_freq_image_incr": "interval for full image backups", +"validate_name_max_file_incr": "maximal number of incremental file backups", +"validate_name_min_file_incr": "minimal number of incremental file backups", +"validate_name_max_file_full": "maximal number of full file backups", +"validate_name_min_file_full": "minimal number of full file backups", +"validate_name_min_image_incr": "minimal number of incremental image backups", +"validate_name_max_image_incr": "maximal number of incremental image backups", +"validate_name_min_image_full": "minimal number of full image backups", +"validate_name_max_image_full": "maximal number of full image backups", +"validate_name_startup_backup_delay": "delay after system startup", +"validate_err_notregexp_backup_window": "Format for backup window wrong", +"validate_name_max_active_clients": "max number of recently active clients", +"validate_name_max_sim_backups": "max number of simultaneous backups", +"validate_name_backupfolder": "backup storage path", +"validate_name_computername": "computer name", +"too_many_clients_err": "Too many clients", +"really_remove_client": "Do you really want to remove this client? This means all its file and image backups will be deleted!", +"computername": "Computer name", +"storage_usage_pie_graph_title": "Storage usage", +"storage_usage_pie_graph_colname1": "Computer name", +"storage_usage_pie_graph_colname2": "Storage usage", +"storage_usage_bar_graph_title": "Storage usage", +"storage_usage_bar_graph_colname1": "Date", +"storage_usage_bar_graph_colname2": "Storage usage", +"tImages": "Images", +"tFiles": "Files", +"tSum": "Sum", +"validate_err_notregexp_cleanup_window": "Format for cleanup window wrong", +"mail_settings": "Mail", +"upgrade_error_text": "UrBackup is upgrading its internal database. This may take a while. The server is inaccessible and will not do any backups during this upgrade.", +"tActivities": "Activities", +"tAction": "Action", +"tProgress": "Progress", +"tFiles in queue": "Files in queue", +"tLast activities": "Last activities", +"tStarting time": "Starting time", +"tRequired time": "Required time", +"tUsed Storage": "Used Storage", +"tClients": "Clients", +"tLogs": "Logs", +"tReports": "Reports", +"tSend reports to": "Send reports to", +"tSend": "Send", +"tBackups with a log message of at least log level": "Backups with a log message of at least log level", +"tBackup time": "Backup time", +"tErrors": "Errors", +"tWarnings": "Warnings", +"tStorage allocation": "Storage allocation", +"tStorage usage": "Storage usage", +"tAll": "All", +"tBackup storage path": "Backup storage path", +"tDo not do image backups": "Do not do image backups", +"tDo not do file backups": "Do not do file backups", +"tAutomatically shut down server": "Automatically shut down server", +"tAutoupdate clients": "Autoupdate clients", +"tMax number of simultaneous backups": "Max number of simultaneous backups", +"tMax number of recently active clients": "Max number of recently active clients", +"tCleanup time window": "Cleanup time window", +"tAutomatically backup UrBackup database": "Automatically backup UrBackup database", +"tInterval for incremental file backups": "Interval for incremental file backups", +"tInterval for full file backups": "Interval for full file backups", +"tInterval for incremental image backups": "Interval for incremental image backups", +"tInterval for full image backups": "Interval for full image backups", +"tMaximal number of incremental file backups": "Maximal number of incremental file backups", +"tMinimal number of incremental file backups": "Minimal number of incremental file backups", +"tMaximal number of full file backups": "Maximal number of full file backups", +"tMinimal number of full file backups": "Minimal number of full file backups", +"tMaximal number of incremental image backups": "Maximal number of incremental image backups", +"tMinimal number of incremental image backups": "Minimal number of incremental image backups", +"tMaximal number of full image backups": "Maximal number of full image backups", +"tMinimal number of full image backups": "Minimal number of full image backups", +"tDelay after system startup": "Delay after system startup", +"tBackup window": "Backup window", +"tExcluded files (with wildcards)": "Excluded files (with wildcards)", +"tIncluded files (with wildcards)": "Included files (with wildcards)", +"tDefault directories to backup": "Default directories to backup", +"tVolumes to backup": "Volumes to backup", +"tAllow client-side changing of the directories to backup": "Allow client-side changing of the directories to backup", +"tAllow client-side starting of file backups": "Allow client-side starting of file backups", +"tAllow client-side starting of image backups": "Allow client-side starting of image backups", +"tAllow client-side viewing of backup logs": "Allow client-side viewing of backup logs", +"tAllow client-side pausing of backups": "Allow client-side pausing of backups", +"tAllow client-side changing of settings": "Allow client-side changing of settings", +"tdays": "days", +"thours": "hours", +"tmin": "min", +"tMail server name": "Mail server name", +"tMail server port": "Mail server port", +"tMail server username (empty for none)": "Mail server username (empty for none)", +"tMail server password": "Mail server password", +"tSender E-Mail Address": "Sender E-Mail Address", +"tSend mails only with SSL/TLS": "Send mails only with SSL/TLS", +"tCheck SSL/TLS certificate": "Check SSL/TLS certificate", +"tSend test mail to this email address after saving the settings (leave empty to not send a test mail)": "Send test mail to this email address after saving the settings (leave empty to not send a test mail)", +"tTest Mail sent successfully": "Test Mail sent successfully", +"tSending test mail failed. Error:": "Sending test mail failed. Error:", +"tFilter": "Filter", +"tBack": "Back", +"tAdd": "Add", +"tRemove": "Remove", +"tSave": "Save", +"tLevel": "Level", +"tTime": "Time", +"tMessage": "Message", +"tLog": "Log", +"tUsername": "Username", +"tRights": "Rights", +"tNo Users": "No Users", +"tCreate user": "Create user", +"tPassword": "Password", +"tRepeat password": "Repeat password", +"tRights for": "Rights for", +"tAbort": "Abort", +"tCreate": "Create", +"tChange rights": "Change rights", +"tChange password": "Change password", +"tLogin": "Login", +"tInfos": "Infos", +"tSeparate settings for this client": "Separate settings for this client", +"tServer": "Server", +"tFile backups": "File backups", +"tImage backups": "Image backups", +"tPermissions": "Permissions", +"tClient": "Client", +"tArchival": "Archival", +"tInternet": "Internet", +"tPerform autoupdates silently": "Perform autoupdates silently", +"tMax backup speed for local network": "Max backup speed for local network", +"tNo activities": "No activities", +"tSelect all": "Select all", +"tSelect none": "Select none", +"tRemove selected": "Remove selected", +"tStart for selected": "Start for selected", +"tInternet clients": "Internet clients", +"tAdd additional internet clients": "Add additional internet clients", +"tClient name": "Client name", +"tNo entries for this filter": "No entries for this filter", +"tNo data": "No data", +"tTotal max backup speed for local network": "Total max backup speed for local network", +"tArchive every": "Archive every", +"tArchive for": "Archive for", +"tArchive window": "Archive window", +"tBackup type": "Backup type", +"tEnable internet mode (requires server restart)": "Enable internet mode (requires server restart)", +"tInternet server name/IP": "Internet server name/IP", +"tInternet server port": "Internet server port", +"tDo image backups over internet": "Do image backups over internet", +"tDo full file backups over internet": "Do full file backups over internet", +"tMax backup speed for internet connection": "Max backup speed for internet connection", +"tTotal max backup speed for internet connection": "Total max backup speed for internet connection", +"tEncrypted transfer": "Encrypted transfer", +"tCompressed transfer": "Compressed transfer", +"file_backup": "File backup", +"hours": "hours", +"days": "days", +"weeks": "weeks", +"months": "months", +"year": "year", +"hour": "hour", +"day": "day", +"week": "week", +"month": "month", +"years": "years", +"min": "minute", +"mins": "minutes", +"validate_name_archive_every": "Archive every", +"validate_name_archive_for": "Archive for", +"forever": "forever", +"backup_in_progress": "Backup in progress...", +"really_remove_clients": "Do you really want to remove these clients? This means all their file and image backups will be deleted!", +"no_client_selected": "No client has been selected", +"queued_backup": "Queued backup", +"starting_backup_failed": "Starting backup failed", +"trying_to_stop_backup": "Trying to stop backup. This might take a while.", +"unarchived_in": "Will stop being archived in", +"validate_err_notregexp_archive_window": "Format for archive window wrong", +"wait_for_archive_window": "Waiting for window/next run", +"validate_err_notregexp_image_letters": "Format of image letters wrong", +"validate_name_global_local_speed": "total max backup speed for local network", +"validate_name_global_internet_speed": "total max backup speed for internet connection", +"validate_name_local_speed": "max backup speed for local network", +"validate_name_internet_speed": "max backup speed for internet connection", +"enter_clientname": "Please enter a client name", +"internet_client_added": "Added new client. You can see the client's auth key (or password) in the settings.", +"change_pw": "Change password", +"old_pw_wrong": "Old password is wrong", +"tID": "ID", +"tFile": "File", +"tSize": "Size", +"tIncremental": "Incremental", +"tLoading": "Loading", +"tStorage usage of": "Storage usage of", +"tDelete domain": "Delete domain", +"tChange rights for user": "Change rights for user", +"tDomain": "Domain", +"tTranslation": "Translation", +"tNew domain": "New domain", +"tChange": "Change", +"tChange password for user": "Change password for user", +"tSaved settings successfully": "Saved settings successfully", +"tThis client is going to be removed.": "This client is going to be removed.", +"tStop removing client": "Stop removing client", +"tFailed": "Failed", +"tSuccessfull": "Successfull", +"tInfo": "Info", +"tError": "Error", +"tWarning": "Warning", +"tCurrent version": "Current version", +"tTarget version": "Target version", +"tWarning: The settings configured on the client will overwrite the settings configured here. If you want to change this behaviour do not allow the client to change settings.": "Warning: The settings configured on the client will overwrite the settings configured here. If you want to change this behaviour do not allow the client to change settings.", +"tNext archival": "Next archival", +"tweeks": "weeks", +"tmonth": "month", +"tyears": "years", +"tforever": "forever", +"tFile backup": "File backup", +"tIncremental file backup": "Incremental file backup", +"tFull file backup": "Full file backup", +"tEnable internet mode": "Enable internet mode", +"tInternet auth key": "Internet auth key", +"tIncremental image backup": "Incremental image backup", +"tFull image backup": "Full image backup", +"tClients are removed during the cleanup time window, if they are offline.": "Clients are removed during the cleanup time window, if they are offline.", +"tArchived": "Archived", +"nospc_stalled_text": "There is currently not enough free space in the backup folder. UrBackup is deleting old image and file backups to free space, within the limits defined by the settings. During this process the backup performance is descreased and backups are stalled.", +"nospc_fatal_text": "There is currently not enough free space in the backup folder. UrBackup tried to delete old image and file backups but is now not allowed to delete more. Please change the settings to store less backups or increase the storage amount to allow UrBackup to continue to perform backups", +"tNondefault temporary file directory": "Nondefault temporary file directory", +"tClients are removed during the cleanup in the cleanup time window.": "Clients are removed during the cleanup in the cleanup time window.", +"about_urbackup": "About UrBackup", +"loading": "Loading", +"authentication_err": "Error during server authentication", +"tInverval for incremental image backups": "Inverval for incremental image backups", +"action_5": "Resumed incremental file backup", +"action_6": "Resumed full file backup", +"really_recalculate": "Do you really want to recalculate all statistics? This might take a long time!", +"database_error_text": "An error occured while accessing or checking UrBackup's internal database. This means this database is probably damaged or there is not enough free space. If this error persists, please restore the database (the files urbackup_server.db and urbackup_server_settings.db) from a backup. See log file for details.", +"creating_filescache_text": "UrBackup is creating the file entry chache. This might take a while.", +"tDownload folder as ZIP": "Download folder as ZIP", +"tOld password": "Old password", +"tNew password": "New password", +"tRepeat new password": "Repeat new password", +"tChanging password failed:": "Changing password failed:", +"tChanged password successfully": "Changed password successfully", +"tNumber of file entries processed": "Number of file entries processed", +"tUrBackup live log": "UrBackup live log", +"tLive Log": "Live Log", +"tShow": "Show", +"tThere is a new version of UrBackup server available": "There is a new version of UrBackup server available", +"tIndexing...": "Indexing...", +"tDelete": "Delete", +"tDownload client from update server": "Download client from update server", +"tGlobal soft filesystem quota": "Global soft filesystem quota", +"tDisable": "Disable", +"tCompress image backups": "Compress image backups", +"tAllow client-side starting of full file backups": "Allow client-side starting of full file backups", +"tAllow client-side starting of incremental file backups": "Allow client-side starting of incremental file backups", +"tAllow client-side starting of full image backups": "Allow client-side starting of full image backups", +"tAllow client-side starting of incremental image backups": "Allow client-side starting of incremental image backups", +"tBackup window for incremental file backups": "Backup window for incremental file backups", +"tBackup window for full file backups": "Backup window for full file backups", +"tBackup window for incremental image backups": "Backup window for incremental image backups", +"tBackup window for full image backups": "Backup window for full image backups", +"tSoft client quota": "Soft client quota", +"tCalculate file-hashes on the client": "Calculate file-hashes on the client", +"tAdvanced": "Advanced", +"tTemporary files as file backup buffer": "Temporary files as file backup buffer", +"tTemporary files as image backup buffer": "Temporary files as image backup buffer", +"tLocal full file backup transfer mode": "Local full file backup transfer mode", +"tRaw": "Raw", +"tHashed": "Hashed", +"tInternet full file backup transfer mode": "Internet full file backup transfer mode", +"tLocal incremental file backup transfer mode": "Local incremental file backup transfer mode", +"tBlock differences - hashed": "Block differences - hashed", +"tInternet incremental file backup transfer mode": "Internet incremental file backup transfer mode", +"tLocal image backup transfer mode": "Local image backup transfer mode", +"tInternet image backup transfer mode": "Internet image backup transfer mode", +"tFile hash collection amount": "File hash collection amount", +"tFile hash collection timeout": "File hash collection timeout", +"tFile hash collection database cachesize": "File hash collection database cachesize", +"tMB": "MB", +"tUpdate stats database cachesize": "Update stats database cachesize", +"tCache database type for file entries": "Cache database type for file entries", +"tNone": "None", +"tCache database size for file entries": "Cache database size for file entries", +"tSuspend index limit": "Suspend index limit", +"tUse symlinks during incremental file backups": "Use symlinks during incremental file backups", +"tEnd-to-end verification of all file backups": "End-to-end verification of all file backups", +"tServer admin mail address": "Server admin mail address", +"tWarning: The settings configured on the client will overwrite the settings configured here. If you want to change this behaviour do not allow the client to change settings. ": "Warning: The settings configured on the client will overwrite the settings configured here. If you want to change this behaviour do not allow the client to change settings. ", +"tClient download": "Client download", +"tDownload": "Download", +"tStatus": "Status", +"tIP": "IP", +"tClient version": "Client version", +"tOperating System": "Operating System", +"tShow all clients": "Show all clients", +"tThis client is going to be removed. ": "This client is going to be removed. ", +"tClients are removed during the cleanup in the cleanup time window. ": "Clients are removed during the cleanup in the cleanup time window. ", +"tRecalculate statistics": "Recalculate statistics" +} +translations.es = { +"action_1": "Copia incremental de archivos", +"action_2": "Copia completa de archivos", +"action_3": "Copia imagen incremental", +"action_4": "Copia imagen completa", +"action_1_d": "Eliminando copia incremental de archivos", +"action_2_d": "Eliminando copia completa de archivos", +"action_3_d": "Eliminando copia imagen incremental", +"action_4_d": "Eliminando copia imagen completa", +"nav_item_6": "Estado", +"nav_item_5": "Actividades", +"nav_item_4": "Copias", +"nav_item_3": "Logs", +"nav_item_2": "Estadisticas", +"nav_item_1": "Ajustes", +"unknown": "Desconocido", +"overview": "Introducción", +"ok": "Ok", +"no_recent_backup": "No hay copia reciente", +"backup_never": "Nunca", +"yes": "Si", +"no": "No", +"tBackup status": "Estado de la copia", +"tComputer name": "Equipo", +"tLast seen": "Ultima conexión", +"tLast file backup": "Última copia de archivos", +"tLast image backup": "última copia imagen", +"tFile backup status": "Estado de la copia de archivos", +"tImage backup status": "Estado de la copia imagen", +"tShow details": "Ver detalles", +"tExtra clients": "Clientes extra", +"tNo extra clients": "No hay clientes extra", +"tActions": "Acción", +"tOnline": "Online", +"tHostname/IP": "Nombre/IP", +"users": "Usuarios", +"general_settings": "General", +"admin": "Administrador", +"user": "Usuario", +"username_empty": "Introduzca un nombre de usuario", +"password_empty": "Introduzca una contraseña", +"password_differ": "Las contraseñas no coinciden", +"user_n_exist": "El usuario no existe", +"password_wrong": "Contraseña incorrecta", +"user_exists": "Ya existe otro usuario con ese nombre", +"session_timeout": "La sesión ha expirado. Por favor, identifíquese de nuevo.", +"really_del_user": "¿Seguro que desea eliminar éste usuario?", +"user_add_done": "Nuevo usuario creado.", +"user_remove_done": "Usuario eliminado.", +"user_update_right_done": "Cambio de privilegios realizado.", +"user_pw_change_ok": "Contraseña cambiada.", +"right_all": "Todos los accesos", +"right_none": "Ningún acceso", +"filter": "Filtro", +"all": "Todo", +"loglevel_0": "Informativos", +"loglevel_1": "Avisos", +"loglevel_2": "Errores", +"dir_error_text": "No se encuentra la carpeta de copias o no tiene permiso de escritura sobre ella.", +"tmpdir_error_text": "No se encuentra la carpeta tempopral o no tiene permiso de escritura sobre ella.", +"starting": "Comenzando", +"ident_err": "Servidor rechazado", +"enter_hostname": "Introduzca un nombre de nodo o una dirección IP", +"clients": "Clientes", +"validate_text_empty": "Por favor, introduzca un valor para {name}", +"validate_text_notint": "Por favor, introduzca un valor numérico para {name}", +"validate_name_update_freq_incr": "intervalo para copias incrementales de ficheros", +"validate_name_update_freq_full": "intervalo para copias totales de ficheros", +"validate_name_update_freq_image_full": "invervalo para copias imagen incrementales", +"validate_name_update_freq_image_incr": "invervalo para copias imagen completas", +"validate_name_max_file_incr": "máximo número de copias incrementales de ficheros", +"validate_name_min_file_incr": "mínimo número de copias incrementales de ficheros", +"validate_name_max_file_full": "máximo número de copias completas de ficheros", +"validate_name_min_file_full": "mínimo número de copias completas de ficheros", +"validate_name_min_image_incr": "máximo número de copias imagen incrementales", +"validate_name_max_image_incr": "mínimo número de copias imagen incrementales", +"validate_name_min_image_full": "máximo número de copias imagen completas", +"validate_name_max_image_full": "mínimo número de copias imagen completas", +"validate_name_startup_backup_delay": "espera tras el inicio del sistema", +"validate_err_notregexp_backup_window": "Formato de la ventana de copias erróneo", +"validate_name_max_active_clients": "número máximo de clientes activos recientes", +"validate_name_max_sim_backups": "número máximo de copias simultáneas", +"validate_name_backupfolder": "camino de almacenamiento de copias", +"validate_name_computername": "nombre de equipo", +"too_many_clients_err": "Demasiados clientes", +"really_remove_client": "¿Seguro que desea eliminar éste cliente? Se eliminarán también todas sus copias", +"computername": "Nombre de equipo", +"storage_usage_pie_graph_title": "Uso de almacenamiento", +"storage_usage_pie_graph_colname1": "Nombre de equipo", +"storage_usage_pie_graph_colname2": "Uso de almacenamiento", +"storage_usage_bar_graph_title": "Uso de almacenamiento", +"storage_usage_bar_graph_colname1": "Fecha", +"storage_usage_bar_graph_colname2": "Uso de almacenamiento", +"tImages": "Imagenes", +"tFiles": "Archivos", +"tSum": "Suma", +"validate_err_notregexp_cleanup_window": "Formato de la ventana de limpieza erróneo", +"mail_settings": "Correo-e", +"upgrade_error_text": "UrBackup aktualisiert seine interne Datenbank. Das könnte eine Weile dauern. Während der Aktualisierung ist das Webinterface nicht erreichbar und keine Backups werden durchgeführt.", +"tActivities": "Actividades", +"tAction": "Acción", +"tFiles in queue": "Archivos en cola", +"tLast activities": "Últimas actividades", +"tStarting time": "Comienzo", +"tRequired time": "Tiempo requerido", +"tUsed Storage": "Espacio utilizado", +"tClients": "Clientes", +"tLogs": "Logs", +"tReports": "Informes", +"tSend reports to": "Enviar informes a", +"tSend": "Enviar", +"tBackups with a log message of at least log level": "Copias que hayan terminado con un mensaje al menos", +"tBackup time": "Tiempo de copia", +"tErrors": "Errores", +"tWarnings": "Avisos", +"tStorage allocation": "Almacenamiento reservado", +"tStorage usage": "Almacenamiento usado", +"tAll": "Todos", +"tBackup storage path": "Ruta de almacenamiento de las copias", +"tDo not do image backups": "No haga copiaas imagen", +"tDo not do file backups": "No hacer copia de ficheros", +"tAutomatically shut down server": "Apague automáticamente el servidor", +"tAutoupdate clients": "Actualizar los clientes automáticamente", +"tMax number of simultaneous backups": "Número máximo de copias simultáneas", +"tMax number of recently active clients": "Número máximo de clientes activos recientemente", +"tAutomatically backup UrBackup database": "Copiar automáticamente la base de datos de UrBackup", +"tInterval for incremental file backups": "Intervalo para las copias incrementales de archivos", +"tInterval for full file backups": "Intervalo para las copias continuas de archivos", +"tInterval for incremental image backups": "Intervalo para las copias imagen incrementales", +"tInterval for full image backups": "Intervalo para las copias imagen completas", +"tMaximal number of incremental file backups": "Máximo número de copias incrementales de archivos", +"tMinimal number of incremental file backups": "Mínimo número de copias incrementales de archivos", +"tMaximal number of full file backups": "Máximo número de copias totales de archivos", +"tMinimal number of full file backups": "Mínimo número de copias totales de archivos", +"tMaximal number of incremental image backups": "Maximo número de copias imagen incrementales", +"tMinimal number of incremental image backups": "Mínimo número de copias imagen incrementales", +"tMaximal number of full image backups": "Maximo número de copias imagen completas", +"tMinimal number of full image backups": "Mínimo número de copias imagen completas", +"tDelay after system startup": "Espera desde el inicio del sistema", +"tBackup window": "Ventana de backup", +"tExcluded files (with wildcards)": "Archivos excluidos (admite comodines)", +"tIncluded files (with wildcards)": "Archivos incluidos (admite comodines)", +"tDefault directories to backup": "Carpetas a copiar por defecto:", +"tVolumes to backup": "Volúmenes a copiar", +"tAllow client-side changing of the directories to backup": "Permitir al cliente cambiar la carpeta a copiar", +"tAllow client-side starting of file backups": "Permitir al cliente comenzar una copia de ficheros", +"tAllow client-side starting of image backups": "Permitir al cliente comenzar una copia imagen", +"tAllow client-side viewing of backup logs": "Permitir al cliente ver los logs de copia", +"tAllow client-side pausing of backups": "Permitir al cliente pausar una copia", +"tAllow client-side changing of settings": "Permitir la configuración de la copia desde el cliente", +"tdays": "Días", +"thours": "Horas", +"tmin": "min", +"tMail server name": "Servidor de correo/IP", +"tMail server port": "Puerto del servidor de correo", +"tMail server username (empty for none)": "Usuario (puede estar vacío)", +"tMail server password": "Contraseña", +"tSender E-Mail Address": "Correo del emisor", +"tSend mails only with SSL/TLS": "Enviar correos sólo con conexión SSL/TLS", +"tCheck SSL/TLS certificate": "Comprobar el certificado SSL/TLS", +"tSend test mail to this email address after saving the settings (leave empty to not send a test mail)": "Enviar un mensaje de prueba al siguiente correo (si no quiere enviar una prueba, deje el campo vacío)", +"tTest Mail sent successfully": "Mensaje de prueba enviado correctamente", +"tSending test mail failed. Error:": "No se ha popdido enviar el mensaje de prueba. Error:", +"tFilter": "Filtro", +"tBack": "Atrás", +"tAdd": "Añadir", +"tRemove": "Eliminar", +"tSave": "Guardar", +"tLevel": "Nivel", +"tTime": "Hora", +"tMessage": "Mensaje", +"tLog": "Log", +"tUsername": "Usuario", +"tRights": "Permisos", +"tNo Users": "Sin usuarios", +"tCreate user": "Crear usuario", +"tPassword": "Contraseña", +"tRepeat password": "confirme la contraseña", +"tRights for": "Derechos para", +"tAbort": "Cancelar", +"tCreate": "Crear", +"tChange rights": "Cambiar permisos", +"tChange password": "Cambiar contraseña", +"tLogin": "Acceso", +"tInfos": "Información", +"tSeparate settings for this client": "Configuración especial para este cliente", +"tServer": "Servidor", +"tFile backups": "Copias de archivos", +"tImage backups": "Copias Imagen", +"tPermissions": "Permisos", +"tArchival": "Archivar", +"tPerform autoupdates silently": "Actualizaciones automáticas silenciosas", +"tMax backup speed for local network": "Velocidad máxima de copia para archivos en la red local", +"tNo activities": "Sin actividad", +"tSelect all": "Seleccionar todo", +"tSelect none": "Deseleccionar todo", +"tRemove selected": "Eliminar seleccionados", +"tStart for selected": "Comenzar en los seleccionados", +"tNo entries for this filter": "No hay entradas para este filtro", +"tTotal max backup speed for local network": "Velocidad máxima de backup en la red local", +"tArchive every": "Archivar cada", +"tArchive for": "Archivar durante", +"tArchive window": "Ventana de archivo", +"tBackup type": "Tipo de copia", +"tEnable internet mode (requires server restart)": "Activar la copia por internet (requiere reinicio)", +"tInternet server name/IP": "Servidor internet/IP", +"tInternet server port": "Puerto de internet", +"tDo image backups over internet": "Permitir copias Imagen por internet", +"tDo full file backups over internet": "Peermitir copias totales de ficheros por Internet", +"tMax backup speed for internet connection": "Velocidad máxima de backup a través de internet", +"tTotal max backup speed for internet connection": "Velocidad máxima total de backup a través de internet", +"tEncrypted transfer": "Transferencia encriptada", +"tCompressed transfer": "Transferencias comprimidas", +"file_backup": "Copia de ficheros", +"hours": "horas", +"days": "días", +"weeks": "semanas", +"months": "meses", +"year": "año", +"hour": "hora", +"day": "día", +"week": "semana", +"month": "mes", +"years": "años", +"min": "minuto", +"mins": "minutos", +"validate_name_archive_every": "Archivar cada", +"validate_name_archive_for": "Archive durante", +"forever": "siempre", +"backup_in_progress": "Copiando ahora...", +"really_remove_clients": "¿Seguro que quiere eliminar estos clientes? Se eliminarán todas sus copias", +"no_client_selected": "No se ha seleccionado ningún cliente", +"queued_backup": "Copia encolada", +"starting_backup_failed": "Arranque de copia fallido", +"trying_to_stop_backup": "Tratando de parar la copia. Esto puede llevar cierto tiempo.", +"unarchived_in": "Parará el archivado en ", +"validate_err_notregexp_archive_window": "Formato de ventana de archivado errónea", +"wait_for_archive_window": "Esperando para ventana/siguiente ejecución", +"validate_err_notregexp_image_letters": "Formato de letras para imagen errónea", +"validate_name_global_local_speed": "velocidad máxima total para copias por la red local", +"validate_name_global_internet_speed": "velocidad máxima total para copias por internet", +"validate_name_local_speed": "velocidad máxima para copias por red local", +"validate_name_internet_speed": "velocidad máxima total para copias por internet", +"enter_clientname": "Introduzca un nombre de cliente", +"internet_client_added": "Nuevo cliente añadido. Puede obtener su clave de autorización o contraseña en los ajustes.", +"change_pw": "Cambiar contraseña", +"old_pw_wrong": "LA contraseña actual es errónea", +"tID": "ID", +"tFile": "Archivo", +"tSize": "Tamaño", +"tIncremental": "Incremental", +"tLoading": "Cargando", +"tStorage usage of": "Almacenamiento utilizado por", +"tDelete domain": "Eliminar dominio", +"tChange rights for user": "Cambiar permisos al usuario:", +"tDomain": "Dominio", +"tTranslation": "Traducción", +"tNew domain": "Nuevo Dominio", +"tChange": "Cambiar", +"tChange password for user": "Cambiar contraseña del usuario:", +"tSaved settings successfully": "Configuración guardada correctamente", +"tThis client is going to be removed.": "Este cliente va a ser eliminado.", +"tStop removing client": "No eliminar", +"tFailed": "Fallido", +"tSuccessfull": "Realizado", +"tInfo": "Info", +"tError": "Error", +"tWarning": "Aviso", +"tCurrent version": "Versión actual", +"tTarget version": "Versión objetivo", +"tWarning: The settings configured on the client will overwrite the settings configured here. If you want to change this behaviour do not allow the client to change settings.": "¡Atención!: si el cliente hace cambios en su equio, prevalecerán sobre esta configuración. Puede prohibir al cliente hacer cambios.", +"tNext archival": "Siguiente archivado", +"tweeks": "Semanas", +"tmonth": "Meses", +"tyears": "Años", +"tforever": "Para siempre", +"tFile backup": "Copia de ficheros", +"tIncremental file backup": "Copia incremental de ficheros", +"tFull file backup": "Copia total de ficheros", +"tEnable internet mode": "Activar modo Internet", +"tInternet auth key": "Clave de copia por Internet", +"tIncremental image backup": "Copia imagen incremental", +"tFull image backup": "Copia imagen completa", +"tClients are removed during the cleanup time window, if they are offline.": "Los Clientes serán eliminados durante la ventana de limpieza.", +"tArchived": "Archivado" +} +translations.fa = { +"action_1": "پشتیبان گیری افزایشی فایل", +"action_2": "پشتیبان گیری کامل فایل", +"action_3": "پشتیبان گیری افزایشی تصویر", +"action_4": "پشتیبان گیری کامل تصویر", +"action_1_d": "حذف پشتیبان گیری افزایشی فایل", +"action_2_d": "حذف پشتیبان گیری کامل فایل", +"action_3_d": "حذف پشتیبان گیری افزایشی تصویر", +"action_4_d": "حذف پشتیبان گیری کامل تصویر", +"nav_item_6": "وضعیت", +"nav_item_5": "عملیات", +"nav_item_4": "پشتیبان گیری ها", +"nav_item_3": "لاگ ها", +"nav_item_2": "ارقام", +"nav_item_1": "تنظیمات", +"unknown": "ناشناخته", +"overview": "بازبینی", +"ok": "تایید", +"no_recent_backup": "بدون پشتیبان گیری", +"backup_never": "هرگز", +"yes": "بله", +"no": "خیر", +"tBackup status": "وضعیت پشتیبان گیری", +"tComputer name": "نام کامپیوتر", +"tLast seen": "آخرین دیدار", +"tLast file backup": "آخرین پشتیبان گیری فایل", +"tLast image backup": "آخرین پشتیبان گیری تصویر", +"tFile backup status": "وضعیت پشتیبان گیری فایل", +"tImage backup status": "وضعیت پشتیبان گیری تصویر", +"tShow details": "نمایش جزییات", +"tExtra clients": "مشتریان اضافی", +"tNo extra clients": "بدون مشتریان اضافی", +"tActions": "فعالیت ها", +"tOnline": "برخط", +"tHostname/IP": "IP/نام", +"tServer identity": "هویت سرور", +"users": "کاربران", +"general_settings": "تنظیمات عمومی", +"admin": "مدیر", +"user": "کاربر", +"username_empty": "لطفا نام کاربری را وارد کنید", +"password_empty": "لطفا کلمه عبور را وارد کنید", +"password_differ": "کلمات عبور متفاوت هستند", +"user_n_exist": "کاربر وجود ندارد", +"password_wrong": "کلمه عبور اشتباه است", +"user_exists": "کاربری با این نام از قبل وجود دارد", +"session_timeout": "با توجه به عدم فعالیت، شما باید مجدد وارد شوید", +"really_del_user": "از حذف کاربر مطمئن هستید؟", +"user_add_done": "کاربر جدید با موفقیت اضافه شد", +"user_remove_done": "کاربر با موفقیت حذف شد", +"user_update_right_done": "کاربر با موفقیت به روز شد", +"user_pw_change_ok": "کلمه عبور با موفقیت تغییر کرد", +"right_all": "تمام حقوق", +"right_none": "بدون حقوق", +"filter": "فیلتر", +"all": "همه", +"loglevel_0": "اطلاعات", +"loglevel_1": "هشدار", +"loglevel_2": "خطا", +"dir_error_text": "دایرکتوری ذخیره پشتیبان ها در دسترس نیست.لطفا تنظیمات دایرکتوری را تغییر داده و یا حقوق دسترسی برنامه را عوض کنید", +"tmpdir_error_text": "دایرکتوری ذخیره فایل های موقت در دسترس نیست.لطفا تنظیمات دایرکتوری را تغییر داده و یا حقوق دسترسی برنامه را عوض کنید", +"starting": "شروع", +"ident_err": "سرور رد کرد", +"enter_hostname": "را وارد کنید IP لطفا نام میزبان و یا", +"clients": "مشتریان", +"validate_text_empty": "Please enter a value for # {name}", +"validate_text_notint": "Please enter a numeric value for # {name}", +"validate_name_update_freq_incr": "بازه پشتیبان گیری افزایشی فایل", +"validate_name_update_freq_full": "بازه پشتیبان گیری کامل فایل", +"validate_name_update_freq_image_full": "بازه پشتیبان گیری کامل تصویر", +"validate_name_update_freq_image_incr": "بازه پشتیبان گیری افزایشی تصویر", +"validate_name_max_file_incr": "بیشترین تعداد پشتیبان گیری افزایشی فایل", +"validate_name_min_file_incr": "کمترین تعداد پشتیبان گیری افزایشی فایل", +"validate_name_max_file_full": "بیشترین تعداد پشتیبان گیری کامل فایل", +"validate_name_min_file_full": "کمترین تعداد پشتیبان گیری کامل فایل", +"validate_name_min_image_incr": "کمترین تعداد پشتیبان گیری افزایشی تصویر", +"validate_name_max_image_incr": "بیشترین تعداد پشتیبان گیری افزایشی تصویر", +"validate_name_min_image_full": "کمترین تعداد پشتیبان گیری کامل تصویر", +"validate_name_max_image_full": "بیشترین تعداد پشتیبان گیری کامل تصویر", +"validate_name_startup_backup_delay": "تاخیر در راه اندازی سیستم", +"validate_err_notregexp_backup_window": "فرمت اشتباه", +"validate_name_max_active_clients": "بیشترین تعداد مشتریان فعال", +"validate_name_max_sim_backups": "بیشترین تعداد پشتیبان گیری همزمان", +"validate_name_backupfolder": "نام فولدر پشتیبان گیری", +"validate_name_computername": "نام کامپیوتر", +"too_many_clients_err": "تعداد مشتریان بیش از حد مجاز است", +"really_remove_client": "آیا از حذف این مشتری مطمئن هستید؟ با حذف آن تمام فایل ها و تصاویر پشتیبان مربوط به آن حذف میشوند", +"storage_usage_pie_graph_title": "استفاده از فضا", +"storage_usage_pie_graph_colname1": "نام کامپیوتر", +"storage_usage_pie_graph_colname2": "استفاده از فضا", +"storage_usage_bar_graph_title": "تاریخچه استفاده از فضا", +"storage_usage_bar_graph_colname1": "تاریخ", +"storage_usage_bar_graph_colname2": "استفاده از فضا", +"tImages": "تصاویر", +"tFiles": "فایل ها", +"tSum": "مجموع", +"validate_err_notregexp_cleanup_window": "فرمت پنجره زمان پاکسازی اشتباه است", +"mail_settings": "ایمیل", +"upgrade_error_text": "دیتابیس برنامه داخلی است به همین دلیل ارتقا کمی طول میکشد. در حین ارتقا رابط کاربری برنامه غیرفعال بوده و هیچ پشتیبان گیری انجام نمیشود", +"tActivities": "فعالیت ها", +"tAction": "عملیات", +"tFiles in queue": "فایل های در صف", +"tLast activities": "فعالیت های اخیر", +"tStarting time": "زمان شروع", +"tRequired time": "زمان درخواستی", +"tUsed Storage": "فضای استفاده شده", +"tClients": "مشتریان", +"tLogs": "لاگ ها", +"tReports": "گزارش ها", +"tSend reports to": "ارسال گزارش ها برای", +"tSend": "ارسال", +"tBackups with a log message of at least log level": "پشتیبان گیری با پیام لاگ از کمترین سطح", +"tBackup time": "زمان پشتیبان گیری", +"tErrors": "خطا", +"tWarnings": "هشدار", +"tStorage allocation": "تخصیص فضا", +"tStorage usage": "مصرف حافظه", +"tAll": "همه", +"tBackup storage path": "مسیر پشتیبان گیری", +"tDo not do image backups": "پشتیبان گیری تصویر وجود ندارد", +"tDo not do file backups": "پشتیبان گیری فایل اجرا نشود", +"tAutomatically shut down server": "خاموش کردن سرور به صورت خودکار", +"tAutoupdate clients": "به روزرسانی خودکار مشتریان", +"tMax number of simultaneous backups": "بیشترین تعداد پشتیبان گیری همزمان", +"tMax number of recently active clients": "بیشترین تعداد مشتریان فعال", +"tCleanup time window": "پنجره زمان پاکسازی", +"tAutomatically backup UrBackup database": "بانک اطلاعاتی پشتیبان گیری خودکار برنامه", +"tInterval for incremental file backups": "بازه پشتیبان گیری افزایشی فایل", +"tInterval for full file backups": "بازه پشتیبان گیری کامل فایل", +"tInterval for incremental image backups": "بازه پشتیبان گیری افزایشی تصویر", +"tInterval for full image backups": "بازه پشتیبان گیری کامل تصویر", +"tMaximal number of incremental file backups": "بیشترین تعداد پشتیبان گیری افزایشی فایل", +"tMinimal number of incremental file backups": "کمترین تعداد پشتیبان گیری افزایشی فایل", +"tMaximal number of full file backups": "بیشترین تعداد پشتیبان گیری کامل فایل", +"tMinimal number of full file backups": "کمترین تعداد پشتیبان گیری کامل فایل", +"tMaximal number of incremental image backups": "بیشترین تعداد پشتیبان گیری افزایشی تصویر", +"tMinimal number of incremental image backups": "کمترین تعداد پشتیبان گیری افزایشی تصویر", +"tMaximal number of full image backups": "بیشترین تعداد پشتیبان گیری کامل تصویر", +"tMinimal number of full image backups": "کمترین تعداد پشتیبان گیری کامل تصویر", +"tDelay after system startup": "تاخیر در راه اندازی سیستم", +"tBackup window": "پنجره پشتیبان گیری", +"tExcluded files (with wildcards)": "(Wildcardsفایل های محروم (با", +"tIncluded files (with wildcards)": "(Wildcardsفایل های مشمول (با", +"tDefault directories to backup": "دایرکتوری پیش فرض برای پشتیبان گیری", +"tVolumes to backup": "مقدار پشتیبان گیری", +"tAllow client-side changing of the directories to backup": "به مشتریان مجوز تغییر دایرکتوری پشتیبان گیری را بده", +"tAllow client-side starting of file backups": "به مشتریان مجوز شروع پشتیبان گیری فایل را میدهد", +"tAllow client-side starting of image backups": "به مشتریان مجوز شروع پشتیبان گیری تصویر را میدهد", +"tAllow client-side viewing of backup logs": "به مشتریان مجوز مشاهده لاگ پشتیبان گیری را میدهد", +"tAllow client-side pausing of backups": "به مشتریان مجوز توقف پشتیبان گیری را میدهد", +"tAllow client-side changing of settings": "به مشتریان اجازه تغییر تنظیمات را میدهد", +"tdays": "روزها", +"thours": "ساعات", +"tmin": "دقیقه", +"tMail server name": "نام سرور ایمیل", +"tMail server port": "پورت سرور ایمیل", +"tMail server username (empty for none)": "(نام کاربری سرور ایمیل (برای هیچ خالی بگذارید", +"tMail server password": "کلمه عبور سرور ایمیل", +"tSender E-Mail Address": "آدرس فرستنده ایمیل", +"tSend mails only with SSL/TLS": "ارسال کن SSL/TLSایمیل ها را تنها با ", +"tCheck SSL/TLS certificate": "SSL/TLS بررسی اعتبار", +"tSend test mail to this email address after saving the settings (leave empty to not send a test mail)": "پس از ذخیره تنظیمات یک ایمیل آزمایشی به این آدرس ارسال کن", +"tTest Mail sent successfully": "ایمیل آزمایشی با موفقیت ارسال شد", +"tSending test mail failed. Error:": "ارسال ایمیل آزمایشی شکست خورد", +"tFilter": "فیلتر", +"tBack": "بازگشت", +"tAdd": "افزودن", +"tRemove": "برداشتن", +"tSave": "ذخیره", +"tLevel": "مرحله", +"tTime": "زمان", +"tMessage": "پیام", +"tLog": "لاگ", +"tUsername": "نام کاربری", +"tRights": "حقوق", +"tNo Users": "هیچ کاربری", +"tCreate user": "ایجاد کاربر", +"tPassword": "کلمه عبور", +"tRepeat password": "کلمه عبور را تکرار کنید", +"tRights for": "حقوق برای", +"tAbort": "لغو", +"tCreate": "ایجاد", +"tChange rights": "تغییر حقوق", +"tChange password": "تفییر کلمه عبور", +"tLogin": "ورود", +"tInfos": "اطلاعات", +"tSeparate settings for this client": "تنظیمات جداگانه برای این مشتری", +"tServer": "سرور", +"tFile backups": "پشتیبان گیری فایل", +"tImage backups": "پشتیبان گیری تصویر", +"tPermissions": "مجوز", +"tArchival": "بایگانی", +"tPerform autoupdates silently": "انجام به روز رسانی خودکار در پس زمینه", +"tMax backup speed for local network": "بیشترین سرعت اتصال به شبکه محلی", +"tNo activities": "بدون فعالیت", +"tSelect all": "انتخاب همه", +"tSelect none": "انتخاب هیچ کدام", +"tRemove selected": "برداشتن انتخاب شدگان", +"tStart for selected": "شروغ انتخاب شوندگان", +"tNo entries for this filter": "چیزی مطابق با معیارهای این فیلتر وجود ندارد", +"tTotal max backup speed for local network": "حداکثر سرعت کلی شبکه محلی", +"tArchive every": "بایگانی در هر", +"tArchive for": "بایگانی برای", +"tArchive window": "پنجره بایگانی", +"tBackup type": "نوع پشتیبان گیری", +"tEnable internet mode (requires server restart)": "(فعال سازی حالت اینترنت (سرور باید ریست شود", +"tInternet server name/IP": "نام سرور اینترنت", +"tInternet server port": "پورت اینترنت", +"tDo image backups over internet": "انجام پشتیبان گیری تصویر بر روی اینترنت", +"tDo full file backups over internet": "انجام پشتیبان گیری فایل بر روی اینترنت", +"tMax backup speed for internet connection": "بیشترین سرعت اتصال به اینترنت", +"tTotal max backup speed for internet connection": "حداکثر سرعت کلی اینترنت", +"tEncrypted transfer": "رمزنگاری انتقال", +"tCompressed transfer": "انتقال فشرده", +"hours": "ساعات", +"days": "روزها", +"weeks": "هفته ها", +"months": "ماه ها", +"year": "سال", +"hour": "ساعت", +"day": "روز", +"week": "هفته", +"month": "ماه", +"years": "سال ها", +"min": "دقیقه", +"mins": "دقایق", +"validate_name_archive_every": "بایگانی", +"validate_name_archive_for": "بایگانی برای", +"forever": "همیشه", +"backup_in_progress": "در حال پشتیبان گیری", +"really_remove_clients": "آیا از حذف این مشتری مطمئن هستید؟ با این کار تمام فایل ها و تصاویر پشتیبان مربوط به او حذف میشوند", +"no_client_selected": "مشتری انتخاب نشده است", +"queued_backup": "پشتیبان گیری در صف", +"starting_backup_failed": "پشتیبان گیری شروع نشد", +"trying_to_stop_backup": "پشتیبان گیری را متوقف کنید", +"unarchived_in": "بایگانی نشده در", +"validate_err_notregexp_archive_window": "فرمت اشتباه برای پنجره بایگانی", +"wait_for_archive_window": "در انتظار پنجره بایگانی", +"validate_err_notregexp_image_letters": "فرمت نام حجم اشتباه است", +"validate_name_global_local_speed": "سرعت اتصال به شبکه محلی", +"validate_name_global_internet_speed": "سرعت اتصال به اینترنت", +"validate_name_local_speed": "بیشترین سرعت اتصال به شبکه محلی", +"validate_name_internet_speed": "بیشترین سرعت اتصال به اینترن", +"enter_clientname": "نام مشتری را وارد کنید", +"internet_client_added": "مشتری اضافه شد. برای تغییر کلمه عبور به بخش تنظیمات بروید", +"change_pw": "تغییر کلمه عبور", +"old_pw_wrong": "کلمه عبور قبلی اشتباه است", +"tID": "شناسه", +"tFile": "فایل", +"tSize": "حجم", +"tIncremental": "افزایشی", +"tLoading": "بارگیری", +"tStorage usage of": "فضای استفاده شده از", +"tDelete domain": "حذف دامین", +"tChange rights for user": "تغییر حقوق برای کاربر", +"tDomain": "دامین", +"tTranslation": "ترجمه", +"tNew domain": "دامین جدید", +"tChange": "تغییر", +"tChange password for user": "تغییر کلمه عبور برای کاربر", +"tSaved settings successfully": "تنظیمات با موفقیت ذخیره شدند", +"tThis client is going to be removed.": "این مشتری برداشته میشوند", +"tStop removing client": "توقف برداشتن مشتری", +"tFailed": "ناموفق", +"tSuccessfull": "موفق", +"tInfo": "اطلاعات", +"tError": "خطا", +"tWarning": "هشدار", +"tCurrent version": "نسخه فعلی", +"tTarget version": "نسخه هدف", +"tWarning: The settings configured on the client will overwrite the settings configured here. If you want to change this behaviour do not allow the client to change settings.": "هشدار : تنظیمات مشتری بر تنظیماتی که اینجا انجام میشود تاثیر میگذرد. اگر نمیخواهید این اتفاق افتد مجوز تغییر تنظیمات کاربر را لغو کنید", +"tNext archival": "بایگانی بعدی", +"tweeks": "هفته ها", +"tmonth": "ماه", +"tyears": "سال ها", +"tforever": "همیشه", +"tFile backup": "فایل پشتیبان", +"tIncremental file backup": "فایل پشتیبان افزایشی", +"tFull file backup": "فایل پشتیبان کامل", +"tEnable internet mode": "فعال سازی حالت اینترنت", +"tInternet auth key": "اینترنت کلیدی", +"tIncremental image backup": "پشتیبان گیری افزایشی تصویر", +"tFull image backup": "پشتیبان گیری کامل تصویر", +"tClients are removed during the cleanup time window, if they are offline.": "مشتریان در حین پاکسازی اگر آفلاین باشند حذف میشوند", +"tArchived": "بایگانی شده", +"nospc_stalled_text": "فضای لازم برای پشتیبان گیری وجود ندارد.برنامه فایل ها و تصاویر پشتیبان قدیمی را حذف میکند.", +"nospc_fatal_text": "فضای لازم برای پشتیبان گیری وجود ندارد.برنامه فایل ها و تصاویر پشتیبان قدیمی را حذف میکند. ولی همچنان فضا کم است. لطفا در بخش تنظیمات فضای بیشتری به پشتیبان گیری اختصاص دهید.", +"tNondefault temporary file directory": "دایرکتوری پیش فرضی برای فایل های موقت وجود ندارد", +"about_urbackup": "درباره برنامه" +} +translations.fr = { +"action_1": "Sauvegarde incrémentielle", +"action_2": "Sauvegarde complète", +"action_3": "Image incrémentielle", +"action_4": "Image complète", +"action_1_d": "Effacement Sauvegarde incrémentielle", +"action_2_d": "Effacement Sauvegarde complète", +"action_3_d": "Effacement Image incrémentielle", +"action_4_d": "Effacement Image complète", +"nav_item_6": "Etats", +"nav_item_5": "Activités", +"nav_item_4": "Sauvegardes", +"nav_item_3": "Journaux", +"nav_item_2": "Stats", +"nav_item_1": "Réglages", +"unknown": "inconnu", +"overview": "Résumé", +"ok": "Ok", +"no_recent_backup": "Pas de sauvegarde récente", +"backup_never": "Jamais", +"yes": "Oui", +"no": "Non", +"tBackup status": "Statut de Sauvegarde", +"tComputer name": "Nom de l'ordinateur", +"tLast seen": "Vu récemment", +"tLast file backup": "Dernière Sauvegarde de fichiers", +"tLast image backup": "Dernière Sauvegarde Image", +"tFile backup status": "Statut de la Sauvegarde fichiers", +"tImage backup status": "Statut de la Sauvegarde Image", +"tShow details": "Plus de détails", +"tExtra clients": "Clients supplémentaires", +"tNo extra clients": "Pas de clients supplémentaires", +"tActions": "Action", +"tOnline": "En ligne", +"tHostname/IP": "HOTE/IP", +"tServer identity": "Identité du serveur", +"users": "Utilisateurs", +"general_settings": "Général", +"admin": "Administrateur", +"user": "Utilisateur", +"username_empty": "Merci d'entrer votre nom", +"password_empty": "Merci d'entrer votre mot de passe", +"password_differ": "Les deux mots de passe sont différents", +"user_n_exist": "l'utilisateur n'existe pas", +"password_wrong": "Mauvais mot de passe", +"user_exists": "Un utilisateur avec ce nom existe déjà", +"session_timeout": "La session n'est plus valide. Merci de vous reconnecter.", +"really_del_user": "Etes vous sûr de vouloir supprimer cet utilisateur?", +"user_add_done": "Nouvel utilisateur créé avec succès.", +"user_remove_done": "Utilisateur supprimé avec succès .", +"user_update_right_done": "Droits changés avec succès.", +"user_pw_change_ok": "Mot de passe de l'utilisateur changé avec succès.", +"right_all": "Tous les droits", +"right_none": "Aucun droit", +"filter": "Filtrer", +"all": "Tous", +"loglevel_0": "Information", +"loglevel_1": "Alertes", +"loglevel_2": "Erreurs", +"dir_error_text": "Le dossier de sauvegarde UrBackup est inaccessible. Merci de changer le chemin dans 'Réglages' ou en donnant à UrBackup les droits d'accès à ce répertoire.", +"tmpdir_error_text": "Le dossier de sauvegarde temporaire UrBackup est inaccessible. Merci de changer le chemin dans 'Réglages' ou en donnant à UrBackup les droits d'accès à ce répertoire.", +"starting": "Démarrage", +"ident_err": "Serveur rejeté", +"enter_hostname": "Merci d'entrer un nom d'hôte ou une adresse IP.", +"clients": "Clients", +"validate_text_empty": "Merci d'entrer une valeur pour le {name}", +"validate_text_notint": "Merci d'entrer une valeur numérique pour le {name}", +"validate_name_update_freq_incr": "Tranche horaire pour la sauvegarde incrémentielle", +"validate_name_update_freq_full": "Tranche horaire pour la sauvegarde complète", +"validate_name_update_freq_image_full": "Tranche horaire pour l'image incrémentielle", +"validate_name_update_freq_image_incr": "Tranche horaire pour l'image complète", +"validate_name_max_file_incr": "Nombre maximal de sauvegardes incrémentielles", +"validate_name_min_file_incr": "Nombre minimal de sauvegardes incrémentielles", +"validate_name_max_file_full": "Nombre maximal de sauvegardes complètes", +"validate_name_min_file_full": "Nombre minimal de sauvegardes complètes", +"validate_name_min_image_incr": "Nombre minimal d'images incrémentielles", +"validate_name_max_image_incr": "Nombre maximal d'images incrémentielles", +"validate_name_min_image_full": "Nombre minimal d'images complètes", +"validate_name_max_image_full": "Nombre maximal d'images complètes", +"validate_name_startup_backup_delay": "Délai après démarrage du système", +"validate_err_notregexp_backup_window": "Erreur dans le format de l'intervalle", +"validate_name_max_active_clients": "Nombre maximal de client récents actifs", +"validate_name_max_sim_backups": "Nombre maximal de sauvegardes simultanées", +"validate_name_backupfolder": "Chemin du répertoire de sauvegarde", +"validate_name_computername": "Nom de l'ordinateur", +"too_many_clients_err": "Trop de clients", +"really_remove_client": "Etes vous sûr de vouloir supprimer ce client ? Cela implique que tous les fichiers et images sauvegardés seront supprimés !", +"computername": "Nom de l'ordinateur", +"storage_usage_pie_graph_title": "Utilisation d'espace", +"storage_usage_pie_graph_colname1": "Nom de l'ordinateur", +"storage_usage_pie_graph_colname2": "Utilisation d'espace", +"storage_usage_bar_graph_title": "Utilisation d'espace", +"storage_usage_bar_graph_colname1": "Date", +"storage_usage_bar_graph_colname2": "Utilisation d'espace", +"tImages": "Images", +"tFiles": "Fichiers", +"tSum": "Total", +"validate_err_notregexp_cleanup_window": "Format de l'intervalle de purge erroné", +"mail_settings": "Email", +"upgrade_error_text": "UrBackup met à jour sa base interne. Cela peut prendre du temps. Le serveur est ainsi inaccessible et ne fera aucune sauvegarde durant cet intervalle .", +"tActivities": "Activités", +"tAction": "Action", +"tFiles in queue": "Fichier en cours", +"tLast activities": "Dernières activités", +"tStarting time": "Lancement", +"tRequired time": "Temps nécessaire", +"tUsed Storage": "Espace utilisé", +"tClients": "Clients", +"tLogs": "Journaux", +"tReports": "Rapports", +"tSend reports to": "Envoyer les rapports à ", +"tSend": "Envoyer", +"tBackups with a log message of at least log level": "Afficher les journaux au niveau ", +"tBackup time": "Durée", +"tErrors": "Erreurs", +"tWarnings": "Alertes", +"tStorage allocation": "Espace alloué", +"tStorage usage": "Utilisation d'espace", +"tAll": "Tous", +"tBackup storage path": "Chemin du répertoire de sauvegarde", +"tDo not do image backups": "Désactiver la sauvegarde Image ", +"tDo not do file backups": "Désactiver la sauvegarde de fichiers", +"tAutomatically shut down server": "Eteindre automatiquement le serveur", +"tAutoupdate clients": "Mettre à jour les clients", +"tMax number of simultaneous backups": "Nombre maximal de sauvegardes simultanées", +"tMax number of recently active clients": "Nombre maximal de clients actifs", +"tCleanup time window": "Intervalle de purge", +"tAutomatically backup UrBackup database": "Sauvegarder automatiquement la base de données du serveur", +"tInterval for incremental file backups": "Intervalle pour la sauvegarde incrémentielle de fichiers", +"tInterval for full file backups": "Intervalle pour la sauvegarde complète de fichiers", +"tInterval for full image backups": "Intervalle pour la sauvegarde Image complète", +"tMaximal number of incremental file backups": "Nombre maximal de sauvegardes fichiers incrémentielles", +"tMinimal number of incremental file backups": "Nombre minimal de sauvegardes fichiers incrémentielles", +"tMaximal number of full file backups": "Nombre maximal de sauvegardes fichiers complètes", +"tMinimal number of full file backups": "Nombre minimal de sauvegardes fichiers complètes", +"tMaximal number of incremental image backups": "Nombre maximal de sauvegardes image incrémentielles", +"tMinimal number of incremental image backups": "Nombre minimal de sauvegardes image incrémentielles", +"tMaximal number of full image backups": "Nombre maximal de sauvegardes image complètes", +"tMinimal number of full image backups": "Nombre minimal de sauvegardes image complètes", +"tDelay after system startup": "Délai après lancement", +"tBackup window": "Intervalle de sauvegarde", +"tExcluded files (with wildcards)": "Fichiers exclus (avec Wildcards)", +"tIncluded files (with wildcards)": "Fichiers inclus (avec Wildcards)", +"tDefault directories to backup": "Répertoires par défaut à sauvegarder ", +"tVolumes to backup": "Volumes à sauvegarder", +"tAllow client-side changing of the directories to backup": "Permettre au client de définir les répertoires de sauvegarde", +"tAllow client-side starting of file backups": "Permettre au client de lancer une sauvegarde fichiers", +"tAllow client-side starting of image backups": "Permettre au client de lancer une sauvegarde Image", +"tAllow client-side viewing of backup logs": "Permettre au client de consulter les journaux", +"tAllow client-side pausing of backups": "Permettre au client de mettre en pause les sauvegardes", +"tAllow client-side changing of settings": "Permettre au client de changer les réglages", +"tdays": "Jours", +"thours": "Heures", +"tmin": "min", +"tMail server name": "Adresse du serveur SMTP", +"tMail server port": "Port du serveur SMTP", +"tMail server username (empty for none)": "Nom du compte email", +"tMail server password": "Mot de passe", +"tSender E-Mail Address": "Emetteur de l'email", +"tSend mails only with SSL/TLS": "N'envoyer qu'avec SSL/TLS", +"tCheck SSL/TLS certificate": "Vérifier le certificat SSL/TLS", +"tSend test mail to this email address after saving the settings (leave empty to not send a test mail)": "Envoyer un email TEST à cette adresse après avoir sauvé les paramètres (laisser vide pour ignorer l'envoi)", +"tTest Mail sent successfully": "Succès d'envoi de l'email TEST", +"tSending test mail failed. Error:": "Echec d'envoi de l'email TEST avec l'erreur :", +"tFilter": "Filtre", +"tBack": "Précédent", +"tAdd": "Ajouter", +"tRemove": "Enlever", +"tSave": "Enregistrer", +"tLevel": "Niveau", +"tTime": "Temps", +"tMessage": "Message", +"tLog": "Journaux", +"tUsername": "Nom utilisateur", +"tRights": "Droits", +"tNo Users": "Aucun utilisateur", +"tCreate user": "Créer un utilisateur", +"tPassword": "Mot de passe", +"tRepeat password": "Répéter le mot de passe", +"tRights for": "Droits pour", +"tAbort": "Abandonner", +"tCreate": "Créer", +"tChange rights": "Changer les droits", +"tChange password": "Changer le mot de passe", +"tLogin": "Login", +"tInfos": "Information", +"tSeparate settings for this client": "Paramétrage individuel pour ce client", +"tServer": "Serveur", +"tFile backups": "Sauvegarde Fichiers", +"tImage backups": "Sauvegarde Image", +"tPermissions": "Droits", +"tArchival": "Archivage", +"tPerform autoupdates silently": "Appliquer les mises à jour automatiques en silence", +"tMax backup speed for local network": "Vitesse maximale du réseau local", +"tNo activities": "Pas d'activité", +"tSelect all": "Tout sélectionner", +"tSelect none": "Ne rien sélectionner", +"tRemove selected": "Supprimer sélectionnés", +"tStart for selected": "Lancer les sélectionnés", +"tNo entries for this filter": "Pas d'entrée dans cette vue", +"tTotal max backup speed for local network": "Somme totale de la vitesse maximale pour le réseau local", +"tArchive every": "Archiver tous les", +"tArchive for": "Archives pour", +"tArchive window": "Intervalle d'archivage", +"tBackup type": "Type de sauvegarde", +"tEnable internet mode (requires server restart)": "Activer le mode internet (nécessite un redémarrage du serveur)", +"tInternet server name/IP": "Adresse internet du serveur HOTE/IP", +"tInternet server port": "Port du serveur Internet", +"tDo image backups over internet": "Activer la sauvegarde Image via Internet", +"tDo full file backups over internet": "Activer les sauvegardes complètes par internet", +"tMax backup speed for internet connection": "Vitesse maximale du réseau internet", +"tTotal max backup speed for internet connection": "Somme totale de la vitesse maximale pour le réseau internet", +"tEncrypted transfer": "Encrypter les échanges", +"tCompressed transfer": "Compresser les échanges", +"hours": "heures", +"days": "jours", +"weeks": "semaines", +"months": "mois", +"year": "année", +"hour": "heure", +"day": "jour", +"week": "semaine", +"month": "mois", +"years": "années", +"min": "minute", +"mins": "minutes", +"validate_name_archive_every": "Archiver tous les", +"validate_name_archive_for": "Archives pour", +"forever": "Pour toujours", +"backup_in_progress": "Sauvegarde en cours...", +"really_remove_clients": "Etes vous sûr de vouloir supprimer ce client ? Cela implique que tous les fichiers et images sauvegardés seront supprimés !", +"no_client_selected": "Aucun client n'a été sélectionné", +"queued_backup": "Sauvegarde planifiée", +"starting_backup_failed": "Le lancement de la sauvegarde a échoué", +"trying_to_stop_backup": "Tentative d'interruption de la sauvegarde. Cela peut prendre du temps.", +"unarchived_in": "Ne sera plus archivé dans", +"validate_err_notregexp_archive_window": "Le format pour l'intervalle d'archivage est mauvais", +"wait_for_archive_window": "Attente du prochain lancement", +"validate_err_notregexp_image_letters": "Le format pour la lettre de disque est mauvais", +"validate_name_global_local_speed": "Vitesse max totale pour la sauvegarde en réseau local", +"validate_name_global_internet_speed": "Vitesse max totale pour la sauvegarde via internet", +"validate_name_local_speed": "Vitesse maximale pour la sauvegarde en réseau local", +"validate_name_internet_speed": "Vitesse maximale pour la sauvegarde via internet", +"enter_clientname": "Merci d'entrer un nom de client", +"internet_client_added": "Client ajouté. Vous pouvez voir la clef du client (ou mot de passe) dans le menu Réglages.", +"change_pw": "Changer le mot de passe", +"old_pw_wrong": "Ancien mot de passe erroné", +"tID": "ID", +"tFile": "Fichier", +"tSize": "Taille", +"tIncremental": "Incrémentielle", +"tLoading": "Chargement", +"tStorage usage of": "Espace utilisé pour", +"tDelete domain": "Détruire un domaine", +"tChange rights for user": "Changer les droits pour l'utilisateur:", +"tDomain": "Domaine", +"tTranslation": "Traduction", +"tNew domain": "Nouveau Domaine", +"tChange": "Changer", +"tChange password for user": "Changer le mot de passe pour l'utilisateur:", +"tSaved settings successfully": "Enregistré avec succès", +"tFailed": "Echec", +"tSuccessfull": "Succès", +"tInfo": "Info", +"tError": "Erreurs", +"tWarning": "Alertes", +"tCurrent version": "Version actuelle", +"tTarget version": "Version cible", +"tWarning: The settings configured on the client will overwrite the settings configured here. If you want to change this behaviour do not allow the client to change settings.": "Alerte: Les paramètres configurés sur le client seront ceux pris en compte. Si vous ne le voulez pas, désactiver les droits de paramétrage pour le client. ", +"tNext archival": "Prochain archivage", +"tweeks": "Semaines", +"tmonth": "Mois", +"tyears": "Années", +"tforever": "Pour toujours", +"tFile backup": "Sauvegarde de fichiers", +"tIncremental file backup": "Sauvegarde de fichiers incrémentielle", +"tFull file backup": "Sauvegarde de fichiers complète", +"tEnable internet mode": "Activer le mode internet", +"tInternet auth key": "Clé d'authentification du serveur internet", +"tIncremental image backup": "Sauvegarde image incrémentielle", +"tFull image backup": "Sauvegarde image complète", +"tClients are removed during the cleanup time window, if they are offline.": "Les clients seront supprimés durant l'intervalle de purge, si ils ne sont pas en ligne.", +"tArchived": "Archivés", +"nospc_stalled_text": "Il n' y a plus d'espace disponible dans le répertoire de sauvegarde. UrBackup efface les anciennes sauvegardes de fichiers et image pour faire de l'espace, selon les paramètres définis dans Réglages. Pendant cette phase, les performances de la sauvegarde diminuent, et les sauvegardes sont stoppées .", +"nospc_fatal_text": "Il n' y a plus d'espace disponible dans le répertoire de sauvegarde. UrBackup a tenté de purger les anciennes sauvegardes mais ne peut en effacer plus à cause des paramètres définis. Merci de changer ces paramètres à la baisse ou d'augmenter l'espace de stockage alloué afin de permettre à UrBackup de poursuivre.", +"tNondefault temporary file directory": "Répertoire temporaire", +"tInverval for incremental image backups": "Intervalle pour la sauvegarde Image incrémentielle" +} +translations.ru = { +"action_1": "Добавочный файловый бэкап", +"action_2": "Полный файловый бэкап", +"action_3": "Добавочный образ", +"action_4": "Полный образ", +"action_1_d": "Удалить добавочный файловый бэкап", +"action_2_d": "Удалить полный файловый бэкап", +"action_3_d": "Удалить добавочный образ", +"action_4_d": "Удалить образ", +"nav_item_6": "Статус", +"nav_item_5": "В работе", +"nav_item_4": "Бэкапы", +"nav_item_3": "Логи", +"nav_item_2": "Статистика", +"nav_item_1": "Настройки", +"unknown": "Неизвестный", +"overview": "Обзор", +"ok": "Ok", +"no_recent_backup": "Нет резервной копии", +"backup_never": "Никогда", +"yes": "Да", +"no": "Нет", +"tBackup status": "Статус бэкапов", +"tComputer name": "Имя компьютера", +"tLast seen": "Последняя активность", +"tLast file backup": "Последний файловый бэкап", +"tLast image backup": "Последний образ", +"tFile backup status": "Файловый бэкап", +"tImage backup status": "Образ", +"tShow details": "Подробнее", +"tExtra clients": "Дополнительные клиенты", +"tNo extra clients": "Нет дополнительных клиентов", +"tActions": "Действия", +"tOnline": "Онлайн", +"tHostname/IP": "Имя/IP", +"tServer identity": "Идентификация сервера", +"users": "Пользователи", +"general_settings": "Главные", +"admin": "Administrator", +"user": "User", +"username_empty": "Пожалуйста введите имя", +"password_empty": "Пожалуйста введите пароль", +"password_differ": "Пароли не совпадают", +"user_n_exist": "Пользователя не существует", +"password_wrong": "Неправильный пароль", +"user_exists": "Пользователь с этим именем уже существует", +"session_timeout": "Сессия устарела. Пожалуйста войтиде снова.", +"really_del_user": "Действительно удалить пользователя?", +"user_add_done": "Новый пользователь успешно добавлен.", +"user_remove_done": "Пользователь успешно удален.", +"user_update_right_done": "Права пользователя успешно изменены.", +"user_pw_change_ok": "Пароль пользователя успешно изменен.", +"right_all": "Все права", +"right_none": "Без прав", +"filter": "Фильтр", +"all": "Все", +"loglevel_0": "Инфо", +"loglevel_1": "Предупреждения", +"loglevel_2": "Ошибки", +"dir_error_text": "Каталог, где UrBackup будет сохранять резервные копии недоступен. Пожалуйста исправьте это изменив путь в 'Настройках', либо путем придания UrBackup прав на доступ к этой папке.", +"tmpdir_error_text": "Каталог, где UrBackup будет сохранять временные файлы недоступен. Пожалуйста исправьте это изменив путь в 'Настройках', либо путем придания UrBackup прав на доступ к этой папке.", +"starting": "Запуск", +"ident_err": "Отклонено сервером", +"enter_hostname": "Пожалуйста введите Имя компьютера или IP адрес", +"clients": "Клиенты", +"validate_text_empty": "Пожалуйста введите значение для {name}", +"validate_text_notint": "Пожалуйста введите цифру для {name}", +"validate_name_update_freq_incr": "интервала добавочных файловых бэкапов", +"validate_name_update_freq_full": "интервала полных файловых бэкапов", +"validate_name_update_freq_image_full": "интервала создания добавочных образов", +"validate_name_update_freq_image_incr": "интервала создания полных образов", +"validate_name_max_file_incr": "максимального количества добавочных файловых бэкапов", +"validate_name_min_file_incr": "минимального количества добавочных файловых бэкапов", +"validate_name_max_file_full": "максимального количества полных файловых бэкапов", +"validate_name_min_file_full": "минимального количества полных файловых бэкапов", +"validate_name_min_image_incr": "минимального количества добавочных образов", +"validate_name_max_image_incr": "максимального количества добавочных образов", +"validate_name_min_image_full": "минимального количества полных образов", +"validate_name_max_image_full": "максимального количества полных образов", +"validate_name_startup_backup_delay": "задержки после старта системы", +"validate_err_notregexp_backup_window": "Формат для расписания неверный", +"validate_name_max_active_clients": "максимального количества активных клиентов", +"validate_name_max_sim_backups": "максимального количества резервных копий", +"validate_name_backupfolder": "путь к хранилищу бэкапов", +"validate_name_computername": "имя компьютера", +"too_many_clients_err": "Слишком много клиентов", +"really_remove_client": "Вы действительно хотите удалить этого клиента? Это означает, что все его резервные копии будут удалены!", +"computername": "Имя компьютера", +"storage_usage_pie_graph_title": "Использование памяти", +"storage_usage_pie_graph_colname1": "Имя компьютера", +"storage_usage_pie_graph_colname2": "Использование памяти", +"storage_usage_bar_graph_title": "Использование памяти", +"storage_usage_bar_graph_colname1": "Дата", +"storage_usage_bar_graph_colname2": "Использование памяти", +"tImages": "Образы", +"tFiles": "Файлы", +"tSum": "Итого", +"validate_err_notregexp_cleanup_window": "Формат расписания очистки неверен", +"mail_settings": "Почта", +"upgrade_error_text": "UrBackup обновляет свою базу данных. Это может занять некоторое время. Сервер недоступен и не будет делать никаких резервных копий во время обновления.", +"tActivities": "В работе", +"tAction": "Действие", +"tProgress": "Прогресс", +"tFiles in queue": "Файлов в очереди", +"tLast activities": "Последняя активность", +"tStarting time": "Время начала", +"tRequired time": "Продолжительность", +"tUsed Storage": "Использовано памяти", +"tClients": "Клиенты", +"tLogs": "Логи", +"tReports": "Отчеты", +"tSend reports to": "Отправить отчеты", +"tSend": "Отправить", +"tBackups with a log message of at least log level": "Логи уровня", +"tBackup time": "Время бэкапа", +"tErrors": "Ошибки", +"tWarnings": "Предупреждения", +"tStorage allocation": "Выделенная память", +"tStorage usage": "Использование памяти", +"tAll": "Все", +"tBackup storage path": "Путь для хранения бэкапов", +"tDo not do image backups": "Не делать бэкап образа", +"tDo not do file backups": "Не делать файловый бэкап", +"tAutomatically shut down server": "Автоматически выключать сервер", +"tAutoupdate clients": "Автоматическое обновление клиентов", +"tMax number of simultaneous backups": "Максимум одновременно выполняющихся бэкапов", +"tMax number of recently active clients": "Максимальное количество активных клиентов", +"tCleanup time window": "Расписание очистки бэкапов", +"tAutomatically backup UrBackup database": "Автоматически бэкапить базу данных UrBackup", +"tInterval for incremental file backups": "Интервал создания добавочных файловых бэкапов", +"tInterval for full file backups": "Интервал создания полных бэкапов файлов", +"tInterval for incremental image backups": "Интервал создания добавочных образов", +"tInterval for full image backups": "Интервал создания полных образов", +"tMaximal number of incremental file backups": "Максимальное количество добавочных бэкапов файлов", +"tMinimal number of incremental file backups": "Минимальное количество добавочных бэкапов файлов", +"tMaximal number of full file backups": "Максимальное количество полных бэкапов файлов", +"tMinimal number of full file backups": "Минимальное количество полных бэкапов файлов", +"tMaximal number of incremental image backups": "Максимальное количество добавочных образов", +"tMinimal number of incremental image backups": "Минимальное количество добавочных образов", +"tMaximal number of full image backups": "Максимальное количество полных образов", +"tMinimal number of full image backups": "Минимальное количество полных образов", +"tDelay after system startup": "Задержка после старта системы", +"tBackup window": "Расписание", +"tExcluded files (with wildcards)": "Исключить из бэкапа (по маске)", +"tIncluded files (with wildcards)": "Включить в бэкап (по маске)", +"tDefault directories to backup": "Каталоги по умолчанию для бэкапа", +"tVolumes to backup": "Разделы для бэкапа", +"tAllow client-side changing of the directories to backup": "Разрешить клиенту менять каталоги для бэкапа", +"tAllow client-side starting of file backups": "Разрешить клиенту запускать файловый бэкап", +"tAllow client-side starting of image backups": "Разрешить клиенту запускать создание образа", +"tAllow client-side viewing of backup logs": "Разрешить клиенту просматриват логи", +"tAllow client-side pausing of backups": "Разрешить клиенту приостанавливать бэкап", +"tAllow client-side changing of settings": "Разрешить клиенту менять настройки", +"tdays": "дней", +"thours": "часов", +"tmin": "минут", +"tMail server name": "Имя почтового сервера", +"tMail server port": "Порт сервера", +"tMail server username (empty for none)": "Учетная запись (если нет - оставить пустым)", +"tMail server password": "Пароль", +"tSender E-Mail Address": "Адрес отправителя", +"tSend mails only with SSL/TLS": "Отправить письмо только с использованием SSL/TLS", +"tCheck SSL/TLS certificate": "Проверить SSL/TLS сертификат", +"tSend test mail to this email address after saving the settings (leave empty to not send a test mail)": "Отправить тестовое письмо после сохранения настроек (оставить пустым, чтобы не отправлять)", +"tTest Mail sent successfully": "Тестовое сообщение отправлено", +"tSending test mail failed. Error:": "Тестовое сообщение не отправлено. Ошибка: ", +"tFilter": "Фильтр", +"tBack": "Назад", +"tAdd": "Добавить", +"tRemove": "Удалить", +"tSave": "Сохранить", +"tLevel": "Уровень", +"tTime": "Время", +"tMessage": "Сообщение", +"tLog": "Лог", +"tUsername": "Имя", +"tRights": "Права", +"tNo Users": "Нет пользователей", +"tCreate user": "Добавить пользователя", +"tPassword": "Пароль", +"tRepeat password": "Повторить пароль", +"tRights for": "Права", +"tAbort": "Отмена", +"tCreate": "Добавить", +"tChange rights": "Изменить права", +"tChange password": "Изменить пароль", +"tLogin": "Войти", +"tInfos": "Инфо", +"tSeparate settings for this client": "Отдельные настройки для данного клиента", +"tServer": "Сервер", +"tFile backups": "Файловый бэкап", +"tImage backups": "Образы", +"tPermissions": "Права доступа", +"tClient": "Клиент", +"tArchival": "Архивация", +"tInternet": "Интернет", +"tPerform autoupdates silently": "Тихое автообновление", +"tMax backup speed for local network": "Максимальная скорость для локальной сети", +"tNo activities": "Нет активности", +"tSelect all": "Отметить все", +"tSelect none": "Снять отметки", +"tRemove selected": "Удалить отмеченных", +"tStart for selected": "Начать бэкап выделенных", +"tInternet clients": "Интернет клиенты", +"tAdd additional internet clients": "Добавить интернет клиентов", +"tClient name": "Имя клиента", +"tNo entries for this filter": "Нет записей для этого фильтра", +"tNo data": "Нет данных", +"tTotal max backup speed for local network": "Общая максимальная скорость для локальной сети", +"tArchive every": "Архивировать каждые", +"tArchive for": "Архивировать за", +"tArchive window": "Расписание архивации", +"tBackup type": "Тип бэкапа", +"tEnable internet mode (requires server restart)": "Активировать интернет режим (потребуется перезагрузка сервера)", +"tInternet server name/IP": "Имя сервера/IP", +"tInternet server port": "Порт", +"tDo image backups over internet": "Разрешить создавать образы", +"tDo full file backups over internet": "Разрешить создавать полный файловый бэкап", +"tMax backup speed for internet connection": "Максимальная скорость для интернет бэкапа", +"tTotal max backup speed for internet connection": "Общая максимальная скорость для интернет бэкапа", +"tEncrypted transfer": "Шифрованная передача", +"tCompressed transfer": "Сжатие" +} +translations.zh_CN = { +"action_1": "增量备份文件", +"action_2": "完全备份文件", +"action_3": "增量备份磁盘映像", +"action_4": "完全备份磁盘映像", +"action_1_d": "正在删除文件增量备份", +"action_2_d": "正在删除文件完全备份", +"action_3_d": "正在删除磁盘映像增量备份", +"action_4_d": "正在删除磁盘映像完全备份", +"nav_item_6": "状态", +"nav_item_5": "活动", +"nav_item_4": "备份", +"nav_item_3": "日志", +"nav_item_2": "统计", +"nav_item_1": "设置", +"unknown": "未知", +"overview": "概览", +"ok": "Ok", +"no_recent_backup": "近期没有备份", +"backup_never": "从不", +"yes": "是", +"no": "否", +"users": "用户", +"general_settings": "常规", +"admin": "管理员", +"user": "用户", +"username_empty": "请输入用户名", +"password_empty": "请输入密码", +"password_differ": "两个密码不同", +"user_n_exist": "用户不存在", +"password_wrong": "密码错误", +"user_exists": "用户已存在", +"session_timeout": "因长时间不操作,此次连接已自动断开。请重新登录。", +"really_del_user": "确定要删除此用户吗?", +"user_add_done": "成功添加新用户。", +"user_remove_done": "成功删除用户。", +"user_update_right_done": "成功变更用户权限。", +"user_pw_change_ok": "成功变更用户密码。", +"right_all": "全权", +"right_none": "无权", +"filter": "过滤器", +"all": "全部", +"loglevel_0": "信息", +"loglevel_1": "警告", +"loglevel_2": "错误", +"dir_error_text": "无法访问UrBackup保存备份的文件夹。在“设置”中修改此文件夹的位置,或赋予UrBackup对此文件夹的访问权限可解决此问题。", +"tmpdir_error_text": "无法访问UrBackup保存临时文件的文件夹。在“设置”中修改此文件夹的位置,或赋予UrBackup对此文件夹的访问权限可解决此问题。", +"starting": "启动中", +"ident_err": "服务器拒绝", +"enter_hostname": "请输入主机名或IP地址", +"clients": "客户端", +"validate_text_empty": "{name}需要一个值", +"validate_text_notint": "{name}需要一个数字值", +"validate_name_update_freq_incr": "增量备份文件的时间间隔", +"validate_name_update_freq_full": "完全备份文件的时间间隔", +"validate_name_update_freq_image_full": "增量备份磁盘映像的时间间隔", +"validate_name_update_freq_image_incr": "完全备份磁盘映像的时间间隔", +"validate_name_max_file_incr": "文件增量备份数上限", +"validate_name_min_file_incr": "文件增量备份数下限", +"validate_name_max_file_full": "文件完全备份数上限", +"validate_name_min_file_full": "文件完全备份数下限", +"validate_name_min_image_incr": "磁盘映像增量备份数下限", +"validate_name_max_image_incr": "磁盘映像增量备份数上限", +"validate_name_min_image_full": "磁盘映像完全备份数下限", +"validate_name_max_image_full": "磁盘映像完全备份数上限", +"validate_name_startup_backup_delay": "系统启动后延迟", +"validate_err_notregexp_backup_window": "备份窗口格式错误", +"validate_name_max_active_clients": "近期活动客户端峰值", +"validate_name_max_sim_backups": "同时备份峰值", +"validate_name_backupfolder": "保存备份的路径", +"validate_name_computername": "计算机名", +"too_many_clients_err": "客户端过多", +"really_remove_client": "确定删除此客户端吗?文件和磁盘映像备份将被全部删除!", +"computername": "计算机名", +"storage_usage_pie_graph_title": "存储空间使用情况", +"storage_usage_pie_graph_colname1": "计算机名", +"storage_usage_pie_graph_colname2": "存储空间使用情况", +"storage_usage_bar_graph_title": "存储空间使用情况", +"storage_usage_bar_graph_colname1": "日期", +"storage_usage_bar_graph_colname2": "存储空间使用情况", +"validate_err_notregexp_cleanup_window": "清理窗口格式错误", +"mail_settings": "邮件", +"upgrade_error_text": "UrBackup正在升级内部数据库并需要一些时间。升级期间服务器无法访问并暂停全部备份任务。", +"file_backup": "文件备份", +"hours": "小时", +"days": "天", +"weeks": "星期", +"months": "月", +"year": "年", +"hour": "小时", +"day": "日", +"week": "星期", +"month": "月", +"years": "年", +"min": "分", +"mins": "分", +"validate_name_archive_every": "归档周期", +"validate_name_archive_for": "归档", +"forever": "长期", +"backup_in_progress": "备份进行中……", +"really_remove_clients": "确定删除此客户端吗?文件和磁盘映像备份将被全部删除!", +"no_client_selected": "未选择客户端", +"queued_backup": "在队列中等待的备份任务", +"starting_backup_failed": "备份任务启动失败", +"trying_to_stop_backup": "正在终止备份任务,可能需要一些时间", +"unarchived_in": "将终止归档于", +"validate_err_notregexp_archive_window": "归档窗口格式错误", +"wait_for_archive_window": "正在等待窗口或下次运行", +"validate_err_notregexp_image_letters": "磁盘映像字母格式错误", +"validate_name_global_local_speed": "通过局域网备份的总速率上限", +"validate_name_global_internet_speed": "通过互联网备份的总速率上限", +"validate_name_local_speed": "通过局域网备份的速率上限", +"validate_name_internet_speed": "通过互联网备份的速率上限", +"enter_clientname": "请输入客户端名称", +"internet_client_added": "新客户端已添加,身份验证密钥或密码请参见“设置”。", +"change_pw": "更改密码", +"old_pw_wrong": "旧密码错误", +"nospc_stalled_text": "备份文件夹空间不足,UrBackup正根据设置值删除旧的磁盘映像和文件备份数据。此期间的备份性能降低,备份数据被隔离。", +"nospc_fatal_text": "备份文件夹空间不足,UrBackup已根据设置值删除了旧的磁盘映像和文件备份数据,但当前设置值已不允许继续删除。通过更改“设置”保存更少的备份数或增加备份存储空间后UrBackup方可继续执行备份任务。" +} +translations.zh_TW = { +"action_1": "增量備份檔案", +"action_2": "完整備份檔案", +"action_3": "增量備份磁碟鏡像", +"action_4": "完整備份磁碟鏡像", +"action_1_d": "正在移除檔案增量備份", +"action_2_d": "正在移除檔案完整備份", +"action_3_d": "正在移除磁碟鏡像增量備份", +"action_4_d": "正在移除磁碟鏡像完整備份", +"nav_item_6": "狀態", +"nav_item_5": "活動", +"nav_item_4": "備份", +"nav_item_3": "日志", +"nav_item_2": "統計", +"nav_item_1": "設定", +"unknown": "未知", +"overview": "概覽", +"ok": "Ok", +"no_recent_backup": "近期沒有備份", +"backup_never": "從不", +"yes": "是", +"no": "否", +"users": "用戶", +"general_settings": "一般", +"admin": "管理員", +"user": "用戶", +"username_empty": "請鍵入用戶名", +"password_empty": "請鍵入口令", +"password_differ": "兩個口令不同", +"user_n_exist": "用戶不存在", +"password_wrong": "口令錯誤", +"user_exists": "用戶已存在", +"session_timeout": "因長時間不操作,此次連接已自動斷開。請重新登錄。", +"really_del_user": "確定要移除此用戶嗎?", +"user_add_done": "成功添加新用戶。", +"user_remove_done": "成功移除用戶。", +"user_update_right_done": "成功變更用戶權限。", +"user_pw_change_ok": "成功變更用戶口令。", +"right_all": "全權", +"right_none": "無權", +"filter": "過濾器", +"all": "全部", +"loglevel_0": "情報", +"loglevel_1": "警告", +"loglevel_2": "錯誤", +"dir_error_text": "無法訪問UrBackup保存備份的資料夾。在“設定”中修改此資料夾的位置,或賦予UrBackup對此資料夾的訪問權限可解決此問題。", +"tmpdir_error_text": "無法訪問UrBackup保存臨時檔案的資料夾。在“設定”中修改此資料夾的位置,或賦予UrBackup對此資料夾的訪問權限可解決此問題。", +"starting": "啓動中", +"ident_err": "伺服器拒絕", +"enter_hostname": "請鍵入主機名或IP地址", +"clients": "用戶端", +"validate_text_empty": "{name}需要一個值", +"validate_text_notint": "{name}需要一個數字值", +"validate_name_update_freq_incr": "增量備份檔案的時間間隔", +"validate_name_update_freq_full": "完整備份檔案的時間間隔", +"validate_name_update_freq_image_full": "增量備份磁碟鏡像的時間間隔", +"validate_name_update_freq_image_incr": "完整備份磁碟鏡像的時間間隔", +"validate_name_max_file_incr": "檔案增量備分數之上限", +"validate_name_min_file_incr": "檔案增量備分數之下限", +"validate_name_max_file_full": "檔案完整備分數之上限", +"validate_name_min_file_full": "檔案完整備分數之下限", +"validate_name_min_image_incr": "磁碟鏡像增量備分數之下限", +"validate_name_max_image_incr": "磁碟鏡像增量備分數之上限", +"validate_name_min_image_full": "磁碟鏡像完整備分數之下限", +"validate_name_max_image_full": "磁碟鏡像完整備分數之上限", +"validate_name_startup_backup_delay": "系統啓動後延遲", +"validate_err_notregexp_backup_window": "備份視窗格式錯誤", +"validate_name_max_active_clients": "近期活動用戶端峰值", +"validate_name_max_sim_backups": "同時備份峰值", +"validate_name_backupfolder": "保存備份的路徑", +"validate_name_computername": "計算機名", +"too_many_clients_err": "用戶端過多", +"really_remove_client": "確定移除此用戶端嗎?檔案和磁碟鏡像備份將被全部移除!", +"computername": "計算機名", +"storage_usage_pie_graph_title": "儲存空間使用情況", +"storage_usage_pie_graph_colname1": "計算機名", +"storage_usage_pie_graph_colname2": "儲存空間使用情況", +"storage_usage_bar_graph_title": "儲存空間使用情況", +"storage_usage_bar_graph_colname1": "日期", +"storage_usage_bar_graph_colname2": "儲存空間使用情況", +"validate_err_notregexp_cleanup_window": "清理視窗格式錯誤", +"mail_settings": "郵件", +"upgrade_error_text": "UrBackup正在升級內部數據庫並需要一些時間。升級期間伺服器無法訪問並暫停全部備份任務。", +"file_backup": "檔案備份", +"hours": "小時", +"days": "天", +"weeks": "星期", +"months": "月", +"year": "年", +"hour": "小時", +"day": "日", +"week": "星期", +"month": "月", +"years": "年", +"min": "分", +"mins": "分", +"validate_name_archive_every": "歸檔周期", +"validate_name_archive_for": "歸檔", +"forever": "長期", +"backup_in_progress": "備份進行中……", +"really_remove_clients": "確定移除此用戶端嗎?檔案和磁碟鏡像備份將被全部移除!", +"no_client_selected": "未選擇用戶端", +"queued_backup": "在佇列中等待的備份任務", +"starting_backup_failed": "備份任務啓動失敗", +"trying_to_stop_backup": "正在終止備份任務,可能需要一些時間", +"unarchived_in": "將終止歸檔于", +"validate_err_notregexp_archive_window": "歸檔視窗格式錯誤", +"wait_for_archive_window": "正在等待視窗或下次執行", +"validate_err_notregexp_image_letters": "磁碟鏡像字母格式錯誤", +"validate_name_global_local_speed": "通過本地網路備份的總速率上限", +"validate_name_global_internet_speed": "通過互聯網備份的總速率上限", +"validate_name_local_speed": "通過本地網路備份的速率上限", +"validate_name_internet_speed": "通過互聯網備份的速率上限", +"enter_clientname": "請鍵入用戶端名稱", +"internet_client_added": "新用戶端已添加,身份驗證密鑰或口令請參見“設定”。", +"change_pw": "更改口令", +"old_pw_wrong": "舊口令錯誤", +"nospc_stalled_text": "備份資料夾空間不足,UrBackup正根據設定值移除舊的磁碟鏡像和檔案備份數據。此期間的備份性能降低,備份數據被隔離。", +"nospc_fatal_text": "備份資料夾空間不足,UrBackup已根據設定值移除了舊的磁碟鏡像和檔案備份數據,但當前設定值已不允許繼續移除。通過更改“設定”保存更少的備份數或增加備份儲存空間後UrBackup方可繼續執行備份任務。" +} diff --git a/urbackupserver/www/translation_helper.py b/urbackupserver/www/translation_helper.py new file mode 100644 index 00000000..e42b9c5f --- /dev/null +++ b/urbackupserver/www/translation_helper.py @@ -0,0 +1,162 @@ +import re +import codecs +import collections +import os +import polib + +def write_po_header(f, lang): + + f.writelines(["# UrBackup translation\n", + "# Copyright (C) 2011-2014 See translators\n", + "# This file is distributed under the same license as the UrBackup package.\n", + "msgid \"\"\n", + "msgstr \"\"\n", + "\"MIME-Version: 1.0\\n\"\n", + "\"Content-Type: text/plain; charset=UTF-8\\n\"\n", + "\"Content-Transfer-Encoding: 8bit\\n\"\n", + "\"Language: "+lang+"\\n\"\n", + "\n"]); + +def po_from_translations(): + with codecs.open("translation.js", "r", encoding="utf8") as translation_file: + + translation = translation_file.readlines(); + + lang = "" + + translations = {}; + + for line in translation: + + m = re.search("translations\.([A-Za-z_]*)={", line, 0) + + if m: + + lang = m.group(1) + + translations[lang] = collections.OrderedDict() + + + m = re.search("\"(.*?)\".*:.*\"(.*)\"", line, 0) + + if m and len(lang)>0: + + key = m.group(1) + val = m.group(2) + + translations[lang][key] = val + + + enkeys = collections.OrderedDict() + + for lang in translations: + + with codecs.open(lang+".po" ,"w", encoding="utf8") as pofile: + + write_po_header(pofile, lang) + + trans = translations[lang] + + for key in trans: + + pofile.writelines(["msgid \""+key+"\"\n", + "msgstr \""+trans[key]+"\"\n", + "\n"]) + + enkeys[key] = True + + templ_dir = r"www\templates" + skip = ["target_db_version", "time" ] + for file in os.listdir(templ_dir): + if file.endswith(".htm"): + + with codecs.open(templ_dir+"\\"+file ,"r", encoding="utf8") as templ: + + for line in templ.readlines(): + + for m in re.finditer("{t([^\|]*?)(\|.*?)?}", line): + + key = m.group(1) + + if key not in enkeys and (not m.group(2) or "s" not in m.group(2)): + + if "t"+key not in skip: + enkeys["t"+key] = True + + + with codecs.open("en.po" ,"w", encoding="utf8") as pofile: + + write_po_header(pofile, "en") + + for key in enkeys: + if key in translations["en"]: + + trans = translations["en"][key]; + + pofile.writelines(["msgid \""+key+"\"\n", + "msgstr \""+trans+"\"\n", + "\n"]) + + elif len(key)>0 and key[0]=="t": + + pofile.writelines(["msgid \""+key+"\"\n", + "msgstr \""+key[1:]+"\"\n", + "\n"]) + +def translations_from_po(): + + lang_map = { "fa_IR": "fa" } + + with codecs.open("translation.js", "w", encoding="utf8") as output: + + output.write("if(!window.translations) translations=new Object();\n") + + tdir = "translations/urbackup.webinterface" + + prev_lang = False + + for file in os.listdir(tdir): + if file.endswith(".po"): + + m = re.search("([A-Za-z_]*).*\.po", file); + + if m: + lang = m.group(1) + + po = polib.pofile(tdir + "/" + file) + + if len(po.translated_entries())>0: + + if prev_lang: + output.write("\n}\n") + + prev_lang = True + + if lang in lang_map: + lang = lang_map[lang] + + output.write("translations."+lang+" = {\n") + + + prev_entry = False + + for entry in po.translated_entries(): + + if prev_entry: + output.write(",\n") + + prev_entry = True + + msgid = entry.msgid.replace("\"", "\\\"") + msgstr = entry.msgstr.replace("\"", "\\\"") + + output.write("\""+msgid+"\": \""+msgstr+"\"") + + if prev_lang: + output.write("\n}\n") + + +translations_from_po() + + + \ No newline at end of file diff --git a/urbackupserver/www/translations/urbackup.webinterface/da_DK.po b/urbackupserver/www/translations/urbackup.webinterface/da_DK.po new file mode 100644 index 00000000..108dfb81 --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/da_DK.po @@ -0,0 +1,1127 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:33+0000\n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/urbackup/language/da_DK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "action_1" +msgstr "" + +msgid "action_2" +msgstr "" + +msgid "action_3" +msgstr "" + +msgid "action_4" +msgstr "" + +msgid "action_1_d" +msgstr "" + +msgid "action_2_d" +msgstr "" + +msgid "action_3_d" +msgstr "" + +msgid "action_4_d" +msgstr "" + +msgid "nav_item_6" +msgstr "" + +msgid "nav_item_5" +msgstr "" + +msgid "nav_item_4" +msgstr "" + +msgid "nav_item_3" +msgstr "" + +msgid "nav_item_2" +msgstr "" + +msgid "nav_item_1" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "overview" +msgstr "" + +msgid "ok" +msgstr "" + +msgid "no_recent_backup" +msgstr "" + +msgid "backup_never" +msgstr "" + +msgid "yes" +msgstr "" + +msgid "no" +msgstr "" + +msgid "tBackup status" +msgstr "" + +msgid "tComputer name" +msgstr "" + +msgid "tLast seen" +msgstr "" + +msgid "tLast file backup" +msgstr "" + +msgid "tLast image backup" +msgstr "" + +msgid "tFile backup status" +msgstr "" + +msgid "tImage backup status" +msgstr "" + +msgid "tShow details" +msgstr "" + +msgid "tExtra clients" +msgstr "" + +msgid "tNo extra clients" +msgstr "" + +msgid "tActions" +msgstr "" + +msgid "tOnline" +msgstr "" + +msgid "tHostname/IP" +msgstr "" + +msgid "tServer identity" +msgstr "" + +msgid "users" +msgstr "" + +msgid "general_settings" +msgstr "" + +msgid "admin" +msgstr "" + +msgid "user" +msgstr "" + +msgid "username_empty" +msgstr "" + +msgid "password_empty" +msgstr "" + +msgid "password_differ" +msgstr "" + +msgid "user_n_exist" +msgstr "" + +msgid "password_wrong" +msgstr "" + +msgid "user_exists" +msgstr "" + +msgid "session_timeout" +msgstr "" + +msgid "really_del_user" +msgstr "" + +msgid "user_add_done" +msgstr "" + +msgid "user_remove_done" +msgstr "" + +msgid "user_update_right_done" +msgstr "" + +msgid "user_pw_change_ok" +msgstr "" + +msgid "right_all" +msgstr "" + +msgid "right_none" +msgstr "" + +msgid "filter" +msgstr "" + +msgid "all" +msgstr "" + +msgid "loglevel_0" +msgstr "" + +msgid "loglevel_1" +msgstr "" + +msgid "loglevel_2" +msgstr "" + +msgid "dir_error_text" +msgstr "" + +msgid "tmpdir_error_text" +msgstr "" + +msgid "starting" +msgstr "" + +msgid "ident_err" +msgstr "" + +msgid "enter_hostname" +msgstr "" + +msgid "clients" +msgstr "" + +msgid "validate_text_empty" +msgstr "" + +msgid "validate_text_notint" +msgstr "" + +msgid "validate_name_update_freq_incr" +msgstr "" + +msgid "validate_name_update_freq_full" +msgstr "" + +msgid "validate_name_update_freq_image_full" +msgstr "" + +msgid "validate_name_update_freq_image_incr" +msgstr "" + +msgid "validate_name_max_file_incr" +msgstr "" + +msgid "validate_name_min_file_incr" +msgstr "" + +msgid "validate_name_max_file_full" +msgstr "" + +msgid "validate_name_min_file_full" +msgstr "" + +msgid "validate_name_min_image_incr" +msgstr "" + +msgid "validate_name_max_image_incr" +msgstr "" + +msgid "validate_name_min_image_full" +msgstr "" + +msgid "validate_name_max_image_full" +msgstr "" + +msgid "validate_name_startup_backup_delay" +msgstr "" + +msgid "validate_err_notregexp_backup_window" +msgstr "" + +msgid "validate_name_max_active_clients" +msgstr "" + +msgid "validate_name_max_sim_backups" +msgstr "" + +msgid "validate_name_backupfolder" +msgstr "" + +msgid "validate_name_computername" +msgstr "" + +msgid "too_many_clients_err" +msgstr "" + +msgid "really_remove_client" +msgstr "" + +msgid "computername" +msgstr "" + +msgid "storage_usage_pie_graph_title" +msgstr "" + +msgid "storage_usage_pie_graph_colname1" +msgstr "" + +msgid "storage_usage_pie_graph_colname2" +msgstr "" + +msgid "storage_usage_bar_graph_title" +msgstr "" + +msgid "storage_usage_bar_graph_colname1" +msgstr "" + +msgid "storage_usage_bar_graph_colname2" +msgstr "" + +msgid "tImages" +msgstr "" + +msgid "tFiles" +msgstr "" + +msgid "tSum" +msgstr "" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "" + +msgid "mail_settings" +msgstr "" + +msgid "upgrade_error_text" +msgstr "" + +msgid "tActivities" +msgstr "" + +msgid "tAction" +msgstr "" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "" + +msgid "tLast activities" +msgstr "" + +msgid "tStarting time" +msgstr "" + +msgid "tRequired time" +msgstr "" + +msgid "tUsed Storage" +msgstr "" + +msgid "tClients" +msgstr "" + +msgid "tLogs" +msgstr "" + +msgid "tReports" +msgstr "" + +msgid "tSend reports to" +msgstr "" + +msgid "tSend" +msgstr "" + +msgid "tBackups with a log message of at least log level" +msgstr "" + +msgid "tBackup time" +msgstr "" + +msgid "tErrors" +msgstr "" + +msgid "tWarnings" +msgstr "" + +msgid "tStorage allocation" +msgstr "" + +msgid "tStorage usage" +msgstr "" + +msgid "tAll" +msgstr "" + +msgid "tBackup storage path" +msgstr "" + +msgid "tDo not do image backups" +msgstr "" + +msgid "tDo not do file backups" +msgstr "" + +msgid "tAutomatically shut down server" +msgstr "" + +msgid "tAutoupdate clients" +msgstr "" + +msgid "tMax number of simultaneous backups" +msgstr "" + +msgid "tMax number of recently active clients" +msgstr "" + +msgid "tCleanup time window" +msgstr "" + +msgid "tAutomatically backup UrBackup database" +msgstr "" + +msgid "tInterval for incremental file backups" +msgstr "" + +msgid "tInterval for full file backups" +msgstr "" + +msgid "tInterval for incremental image backups" +msgstr "" + +msgid "tInterval for full image backups" +msgstr "" + +msgid "tMaximal number of incremental file backups" +msgstr "" + +msgid "tMinimal number of incremental file backups" +msgstr "" + +msgid "tMaximal number of full file backups" +msgstr "" + +msgid "tMinimal number of full file backups" +msgstr "" + +msgid "tMaximal number of incremental image backups" +msgstr "" + +msgid "tMinimal number of incremental image backups" +msgstr "" + +msgid "tMaximal number of full image backups" +msgstr "" + +msgid "tMinimal number of full image backups" +msgstr "" + +msgid "tDelay after system startup" +msgstr "" + +msgid "tBackup window" +msgstr "" + +msgid "tExcluded files (with wildcards)" +msgstr "" + +msgid "tIncluded files (with wildcards)" +msgstr "" + +msgid "tDefault directories to backup" +msgstr "" + +msgid "tVolumes to backup" +msgstr "" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "" + +msgid "tAllow client-side starting of file backups" +msgstr "" + +msgid "tAllow client-side starting of image backups" +msgstr "" + +msgid "tAllow client-side viewing of backup logs" +msgstr "" + +msgid "tAllow client-side pausing of backups" +msgstr "" + +msgid "tAllow client-side changing of settings" +msgstr "" + +msgid "tdays" +msgstr "" + +msgid "thours" +msgstr "" + +msgid "tmin" +msgstr "" + +msgid "tMail server name" +msgstr "" + +msgid "tMail server port" +msgstr "" + +msgid "tMail server username (empty for none)" +msgstr "" + +msgid "tMail server password" +msgstr "" + +msgid "tSender E-Mail Address" +msgstr "" + +msgid "tSend mails only with SSL/TLS" +msgstr "" + +msgid "tCheck SSL/TLS certificate" +msgstr "" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "" + +msgid "tTest Mail sent successfully" +msgstr "" + +msgid "tSending test mail failed. Error:" +msgstr "" + +msgid "tFilter" +msgstr "" + +msgid "tBack" +msgstr "" + +msgid "tAdd" +msgstr "" + +msgid "tRemove" +msgstr "" + +msgid "tSave" +msgstr "" + +msgid "tLevel" +msgstr "" + +msgid "tTime" +msgstr "" + +msgid "tMessage" +msgstr "" + +msgid "tLog" +msgstr "" + +msgid "tUsername" +msgstr "" + +msgid "tRights" +msgstr "" + +msgid "tNo Users" +msgstr "" + +msgid "tCreate user" +msgstr "" + +msgid "tPassword" +msgstr "" + +msgid "tRepeat password" +msgstr "" + +msgid "tRights for" +msgstr "" + +msgid "tAbort" +msgstr "" + +msgid "tCreate" +msgstr "" + +msgid "tChange rights" +msgstr "" + +msgid "tChange password" +msgstr "" + +msgid "tLogin" +msgstr "" + +msgid "tInfos" +msgstr "" + +msgid "tSeparate settings for this client" +msgstr "" + +msgid "tServer" +msgstr "" + +msgid "tFile backups" +msgstr "" + +msgid "tImage backups" +msgstr "" + +msgid "tPermissions" +msgstr "" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "" + +msgid "tMax backup speed for local network" +msgstr "" + +msgid "tNo activities" +msgstr "" + +msgid "tSelect all" +msgstr "" + +msgid "tSelect none" +msgstr "" + +msgid "tRemove selected" +msgstr "" + +msgid "tStart for selected" +msgstr "" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "" + +msgid "tArchive every" +msgstr "" + +msgid "tArchive for" +msgstr "" + +msgid "tArchive window" +msgstr "" + +msgid "tBackup type" +msgstr "" + +msgid "tEnable internet mode (requires server restart)" +msgstr "" + +msgid "tInternet server name/IP" +msgstr "" + +msgid "tInternet server port" +msgstr "" + +msgid "tDo image backups over internet" +msgstr "" + +msgid "tDo full file backups over internet" +msgstr "" + +msgid "tMax backup speed for internet connection" +msgstr "" + +msgid "tTotal max backup speed for internet connection" +msgstr "" + +msgid "tEncrypted transfer" +msgstr "" + +msgid "tCompressed transfer" +msgstr "" + +msgid "file_backup" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "days" +msgstr "" + +msgid "weeks" +msgstr "" + +msgid "months" +msgstr "" + +msgid "year" +msgstr "" + +msgid "hour" +msgstr "" + +msgid "day" +msgstr "" + +msgid "week" +msgstr "" + +msgid "month" +msgstr "" + +msgid "years" +msgstr "" + +msgid "min" +msgstr "" + +msgid "mins" +msgstr "" + +msgid "validate_name_archive_every" +msgstr "" + +msgid "validate_name_archive_for" +msgstr "" + +msgid "forever" +msgstr "" + +msgid "backup_in_progress" +msgstr "" + +msgid "really_remove_clients" +msgstr "" + +msgid "no_client_selected" +msgstr "" + +msgid "queued_backup" +msgstr "" + +msgid "starting_backup_failed" +msgstr "" + +msgid "trying_to_stop_backup" +msgstr "" + +msgid "unarchived_in" +msgstr "" + +msgid "validate_err_notregexp_archive_window" +msgstr "" + +msgid "wait_for_archive_window" +msgstr "" + +msgid "validate_err_notregexp_image_letters" +msgstr "" + +msgid "validate_name_global_local_speed" +msgstr "" + +msgid "validate_name_global_internet_speed" +msgstr "" + +msgid "validate_name_local_speed" +msgstr "" + +msgid "validate_name_internet_speed" +msgstr "" + +msgid "enter_clientname" +msgstr "" + +msgid "internet_client_added" +msgstr "" + +msgid "change_pw" +msgstr "" + +msgid "old_pw_wrong" +msgstr "" + +msgid "tID" +msgstr "" + +msgid "tFile" +msgstr "" + +msgid "tSize" +msgstr "" + +msgid "tIncremental" +msgstr "" + +msgid "tLoading" +msgstr "" + +msgid "tStorage usage of" +msgstr "" + +msgid "tDelete domain" +msgstr "" + +msgid "tChange rights for user" +msgstr "" + +msgid "tDomain" +msgstr "" + +msgid "tTranslation" +msgstr "" + +msgid "tNew domain" +msgstr "" + +msgid "tChange" +msgstr "" + +msgid "tChange password for user" +msgstr "" + +msgid "tSaved settings successfully" +msgstr "" + +msgid "tThis client is going to be removed." +msgstr "" + +msgid "tStop removing client" +msgstr "" + +msgid "tFailed" +msgstr "" + +msgid "tSuccessfull" +msgstr "" + +msgid "tInfo" +msgstr "" + +msgid "tError" +msgstr "" + +msgid "tWarning" +msgstr "" + +msgid "tCurrent version" +msgstr "" + +msgid "tTarget version" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "" + +msgid "tNext archival" +msgstr "" + +msgid "tweeks" +msgstr "" + +msgid "tmonth" +msgstr "" + +msgid "tyears" +msgstr "" + +msgid "tforever" +msgstr "" + +msgid "tFile backup" +msgstr "" + +msgid "tIncremental file backup" +msgstr "" + +msgid "tFull file backup" +msgstr "" + +msgid "tEnable internet mode" +msgstr "" + +msgid "tInternet auth key" +msgstr "" + +msgid "tIncremental image backup" +msgstr "" + +msgid "tFull image backup" +msgstr "" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "" + +msgid "tArchived" +msgstr "" + +msgid "nospc_stalled_text" +msgstr "" + +msgid "nospc_fatal_text" +msgstr "" + +msgid "tNondefault temporary file directory" +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/de.po b/urbackupserver/www/translations/urbackup.webinterface/de.po new file mode 100644 index 00000000..4ff24b3b --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/de.po @@ -0,0 +1,1129 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +# uroni , 2014 +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 21:01+0000\n" +"Last-Translator: uroni \n" +"Language-Team: German (http://www.transifex.com/projects/p/urbackup/language/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "action_1" +msgstr "Inkrementelles Datei Backup" + +msgid "action_2" +msgstr "Volles Datei Backup" + +msgid "action_3" +msgstr "Inkrementelles Image Backup" + +msgid "action_4" +msgstr "Volles Image Backup" + +msgid "action_1_d" +msgstr "Lösche inkrementelles Datei Backup" + +msgid "action_2_d" +msgstr "Lösche volles Datei Backup" + +msgid "action_3_d" +msgstr "Lösche inkrementelles Image Backup" + +msgid "action_4_d" +msgstr "Lösche volles Image Backup" + +msgid "nav_item_6" +msgstr "Status" + +msgid "nav_item_5" +msgstr "Vorgänge" + +msgid "nav_item_4" +msgstr "Backups" + +msgid "nav_item_3" +msgstr "Logs" + +msgid "nav_item_2" +msgstr "Statistiken" + +msgid "nav_item_1" +msgstr "Einstellungen" + +msgid "unknown" +msgstr "Unbekannt" + +msgid "overview" +msgstr "Überblick" + +msgid "ok" +msgstr "OK" + +msgid "no_recent_backup" +msgstr "Kein aktuelles" + +msgid "backup_never" +msgstr "Nie" + +msgid "yes" +msgstr "Ja" + +msgid "no" +msgstr "Nein" + +msgid "tBackup status" +msgstr "Backup Status" + +msgid "tComputer name" +msgstr "Computername" + +msgid "tLast seen" +msgstr "Letzter Onlinezeitpunkt" + +msgid "tLast file backup" +msgstr "Letztes Dateibackup" + +msgid "tLast image backup" +msgstr "Letztes Imagebackup" + +msgid "tFile backup status" +msgstr "Dateibackup status" + +msgid "tImage backup status" +msgstr "Imagebackup status" + +msgid "tShow details" +msgstr "Details anzeigen" + +msgid "tExtra clients" +msgstr "Zusätzliche Clients" + +msgid "tNo extra clients" +msgstr "Keine zusätzlichen Clients" + +msgid "tActions" +msgstr "Aktionen" + +msgid "tOnline" +msgstr "Online" + +msgid "tHostname/IP" +msgstr "Name/IP" + +msgid "tServer identity" +msgstr "Serveridentität" + +msgid "users" +msgstr "Benutzer" + +msgid "general_settings" +msgstr "Allgemein" + +msgid "admin" +msgstr "Administrator" + +msgid "user" +msgstr "Benutzer" + +msgid "username_empty" +msgstr "Bitte geben Sie einen Benutzernamen ein" + +msgid "password_empty" +msgstr "Bitte geben Sie ein Passwort ein" + +msgid "password_differ" +msgstr "Die Passwörter unterscheiden sich" + +msgid "user_n_exist" +msgstr "Benutzer existiert nicht" + +msgid "password_wrong" +msgstr "Falsches Passwort für diesen Benutzer" + +msgid "user_exists" +msgstr "Ein Benutzer mit diesem Namen existiert bereits" + +msgid "session_timeout" +msgstr "Durch Inaktivität ist ihre Session leider nicht mehr aktuell. Sie sollten sich erneut einloggen." + +msgid "really_del_user" +msgstr "Benutzer wirklich löschen?" + +msgid "user_add_done" +msgstr "Der neue Benutzer wurde erfolgreich hinzugefügt." + +msgid "user_remove_done" +msgstr "Der Benutzer wurde erfolgreich gelöscht" + +msgid "user_update_right_done" +msgstr "Die Rechte des Benutzers wurden erfolgreich geändert" + +msgid "user_pw_change_ok" +msgstr "Passwort erfolgreich geändert" + +msgid "right_all" +msgstr "Alle Rechte" + +msgid "right_none" +msgstr "Keine Rechte" + +msgid "filter" +msgstr "Filter" + +msgid "all" +msgstr "Alle" + +msgid "loglevel_0" +msgstr "Info" + +msgid "loglevel_1" +msgstr "Warnung" + +msgid "loglevel_2" +msgstr "Fehler" + +msgid "dir_error_text" +msgstr "Auf das Verzeichnis in dem UrBackup die Backups speichern soll kann nicht zugegriffen werden. Bitte verändern Sie in den Einstellungen das Verzeichnis oder geben Sie UrBackup Zugriffsrechte." + +msgid "tmpdir_error_text" +msgstr "Auf das Verzeichnis in dem UrBackup die temporären Dateien speichern soll kann nicht zugegriffen werden. Bitte verändern Sie in den Einstellungen das Verzeichnis oder geben Sie UrBackup Zugriffsrechte." + +msgid "starting" +msgstr "Starte" + +msgid "ident_err" +msgstr "Server abgelehnt" + +msgid "enter_hostname" +msgstr "Bitte geben Sie eine IP-Adresse oder einen Hostenamen ein" + +msgid "clients" +msgstr "Clients" + +msgid "validate_text_empty" +msgstr "Bitte geben Sie einen Wert für {name} ein" + +msgid "validate_text_notint" +msgstr "Bitte geben Sie einen numerischen Wert für {name} ein" + +msgid "validate_name_update_freq_incr" +msgstr "Intervall für inkrementelle Datei Backups" + +msgid "validate_name_update_freq_full" +msgstr "Intervall für volle Datei Backups" + +msgid "validate_name_update_freq_image_full" +msgstr "Intervall für inkrementelle Image-Backups" + +msgid "validate_name_update_freq_image_incr" +msgstr "Intervall für volle Image-Backups" + +msgid "validate_name_max_file_incr" +msgstr "Maximale Anzahl an inkrementellen Backups" + +msgid "validate_name_min_file_incr" +msgstr "Minimale Anzahl an inkrementellen Backups" + +msgid "validate_name_max_file_full" +msgstr "Maximale Anzahl an vollen Datei Backups" + +msgid "validate_name_min_file_full" +msgstr "Minimale Anzahl an vollen Datei Backups" + +msgid "validate_name_min_image_incr" +msgstr "Minimale Anzahl an inkrementellen Image-Backups" + +msgid "validate_name_max_image_incr" +msgstr "Maximale Anzahl an inkrementellen Image-Backups" + +msgid "validate_name_min_image_full" +msgstr "Minimale Anzahl an vollen Image-Backups" + +msgid "validate_name_max_image_full" +msgstr "Maximale Anzahl an vollen Image-Backups" + +msgid "validate_name_startup_backup_delay" +msgstr "Verzögerung bei Systemstart" + +msgid "validate_err_notregexp_backup_window" +msgstr "Falsches Format für Backup Zeitfenster" + +msgid "validate_name_max_active_clients" +msgstr "Maximale Anzahl aktiver Clients" + +msgid "validate_name_max_sim_backups" +msgstr "Maximale Anzahl simultaner Backups" + +msgid "validate_name_backupfolder" +msgstr "Speicherort für Backups" + +msgid "validate_name_computername" +msgstr "Computername" + +msgid "too_many_clients_err" +msgstr "Zu viele clients" + +msgid "really_remove_client" +msgstr "Wollen Sie wirklich diesen Client löschen? Das bedeutet, dass alle Datei- und Imagebackups dieses Clients gelöscht werden!" + +msgid "computername" +msgstr "Computername" + +msgid "storage_usage_pie_graph_title" +msgstr "Speichernutzung" + +msgid "storage_usage_pie_graph_colname1" +msgstr "Computername" + +msgid "storage_usage_pie_graph_colname2" +msgstr "Speichernutzung" + +msgid "storage_usage_bar_graph_title" +msgstr "Speichernutzungsverlauf" + +msgid "storage_usage_bar_graph_colname1" +msgstr "Datum" + +msgid "storage_usage_bar_graph_colname2" +msgstr "Speichernutzung" + +msgid "tImages" +msgstr "Images" + +msgid "tFiles" +msgstr "Dateien" + +msgid "tSum" +msgstr "Gesamt" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "Falsches Format für das Aufräum Zeitfenster" + +msgid "mail_settings" +msgstr "E-Mail" + +msgid "upgrade_error_text" +msgstr "UrBackup aktualisiert seine interne Datenbank. Das könnte eine Weile dauern. Während der Aktualisierung ist das Webinterface nicht erreichbar und keine Backups werden durchgeführt." + +msgid "tActivities" +msgstr "Aktive Vorgänge" + +msgid "tAction" +msgstr "Aktion" + +msgid "tProgress" +msgstr "Fortschritt" + +msgid "tFiles in queue" +msgstr "Dateien in Warteschleife" + +msgid "tLast activities" +msgstr "Letzte Vorgänge" + +msgid "tStarting time" +msgstr "Startzeit" + +msgid "tRequired time" +msgstr "Benötigte Zeit" + +msgid "tUsed Storage" +msgstr "Speichernutzung" + +msgid "tClients" +msgstr "Clients" + +msgid "tLogs" +msgstr "Logs" + +msgid "tReports" +msgstr "Reports" + +msgid "tSend reports to" +msgstr "Reports senden an" + +msgid "tSend" +msgstr "Sende" + +msgid "tBackups with a log message of at least log level" +msgstr "Backups mit Benachrichtigungen mit wenigstens Wichtigkeit" + +msgid "tBackup time" +msgstr "Backupzeitpunkt" + +msgid "tErrors" +msgstr "Fehler" + +msgid "tWarnings" +msgstr "Warnungen" + +msgid "tStorage allocation" +msgstr "Speicherbelegung" + +msgid "tStorage usage" +msgstr "Speichernutzungsverlauf" + +msgid "tAll" +msgstr "Alle" + +msgid "tBackup storage path" +msgstr "Speicherort für Backups" + +msgid "tDo not do image backups" +msgstr "Keine Imagebackups ausführen" + +msgid "tDo not do file backups" +msgstr "Keine Dateibackups ausführen" + +msgid "tAutomatically shut down server" +msgstr "Server automatisch herunterfahren" + +msgid "tAutoupdate clients" +msgstr "Clientprogramme automatisch aktualisieren" + +msgid "tMax number of simultaneous backups" +msgstr "Maximale Anzahl simultaner Backups" + +msgid "tMax number of recently active clients" +msgstr "Maximale Anzahl aktiver Clients" + +msgid "tCleanup time window" +msgstr "Aufräum Zeitfenster" + +msgid "tAutomatically backup UrBackup database" +msgstr "Automatisch UrBackup Datenbank sichern" + +msgid "tInterval for incremental file backups" +msgstr "Intervall für inkrementelle Datei Backups" + +msgid "tInterval for full file backups" +msgstr "Intervall für volle Backups" + +msgid "tInterval for incremental image backups" +msgstr "Intervall für inkrementelle Image-Backups" + +msgid "tInterval for full image backups" +msgstr "Intervall für volle Image-Backups" + +msgid "tMaximal number of incremental file backups" +msgstr "Maximale Anzahl an inkrementellen Backups" + +msgid "tMinimal number of incremental file backups" +msgstr "Minimale Anzahl an inkrementellen Backups" + +msgid "tMaximal number of full file backups" +msgstr "Maximale Anzahl an vollen Datei Backups" + +msgid "tMinimal number of full file backups" +msgstr "Minimale Anzahl an vollen Datei Backups" + +msgid "tMaximal number of incremental image backups" +msgstr "Maximale Anzahl an inkrementellen Image-Backups" + +msgid "tMinimal number of incremental image backups" +msgstr "Minimale Anzahl an inkrementellen Image-Backups" + +msgid "tMaximal number of full image backups" +msgstr "Maximale Anzahl an vollen Image-Backups" + +msgid "tMinimal number of full image backups" +msgstr "Minimale Anzahl an vollen Image-Backups" + +msgid "tDelay after system startup" +msgstr "Verzögerung bei Systemstart" + +msgid "tBackup window" +msgstr "Backup Zeitfenster" + +msgid "tExcluded files (with wildcards)" +msgstr "Ausgeschlossene Dateien (mit Wildcards)" + +msgid "tIncluded files (with wildcards)" +msgstr "Eingeschlossene Dateien (mit Wildcards)" + +msgid "tDefault directories to backup" +msgstr "Standarmäßig gesicherte Verzeichnisse:" + +msgid "tVolumes to backup" +msgstr "Zu sichernde Laufwerke" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "Clients das Ändern der zu sichernden Verzeichnisse erlauben" + +msgid "tAllow client-side starting of file backups" +msgstr "Clients erlauben Dateibackups zu starten" + +msgid "tAllow client-side starting of image backups" +msgstr "Clients erlauben Imagebackups zu starten" + +msgid "tAllow client-side viewing of backup logs" +msgstr "Clients erlauben Logs anzuschauen" + +msgid "tAllow client-side pausing of backups" +msgstr "Clients erlauben Backups zu pausieren" + +msgid "tAllow client-side changing of settings" +msgstr "Clients erlauben Einstellungen zu verändern" + +msgid "tdays" +msgstr "Tage" + +msgid "thours" +msgstr "Stunden" + +msgid "tmin" +msgstr "min" + +msgid "tMail server name" +msgstr "Mailserver Name/IP" + +msgid "tMail server port" +msgstr "Mailserver Port" + +msgid "tMail server username (empty for none)" +msgstr "Benutzername (leer für keinen)" + +msgid "tMail server password" +msgstr "Passwort" + +msgid "tSender E-Mail Address" +msgstr "Absender E-Mail Adresse" + +msgid "tSend mails only with SSL/TLS" +msgstr "E-Mails nur mit SSL/TLS Sicherung schicken" + +msgid "tCheck SSL/TLS certificate" +msgstr "SSL/TLS Zertifikat prüfen" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "Sende Test E-Mail an diese Adresse nach Speichern der Einstellungen (leer lassen um keine Test E-Mail zu senden)" + +msgid "tTest Mail sent successfully" +msgstr "Test E-Mail erfolgreich gesendet" + +msgid "tSending test mail failed. Error:" +msgstr "Senden der Test E-Mail fehlgeschlagen. Fehler:" + +msgid "tFilter" +msgstr "Filter" + +msgid "tBack" +msgstr "Zurück" + +msgid "tAdd" +msgstr "Hinzufügen" + +msgid "tRemove" +msgstr "Löschen" + +msgid "tSave" +msgstr "Speichern" + +msgid "tLevel" +msgstr "Level" + +msgid "tTime" +msgstr "Zeitpunkt" + +msgid "tMessage" +msgstr "Nachricht" + +msgid "tLog" +msgstr "Log" + +msgid "tUsername" +msgstr "Benutzername" + +msgid "tRights" +msgstr "Rechte" + +msgid "tNo Users" +msgstr "Keine Benutzer" + +msgid "tCreate user" +msgstr "Benutzer erstellen" + +msgid "tPassword" +msgstr "Passwort" + +msgid "tRepeat password" +msgstr "Passwort wiederholen" + +msgid "tRights for" +msgstr "Rechte für" + +msgid "tAbort" +msgstr "Abbrechen" + +msgid "tCreate" +msgstr "Erstellen" + +msgid "tChange rights" +msgstr "Rechte ändern" + +msgid "tChange password" +msgstr "Passwort ändern" + +msgid "tLogin" +msgstr "Einloggen" + +msgid "tInfos" +msgstr "Informationen" + +msgid "tSeparate settings for this client" +msgstr "Separate Einstellungen für diesen Client" + +msgid "tServer" +msgstr "Server" + +msgid "tFile backups" +msgstr "Dateibackups" + +msgid "tImage backups" +msgstr "Imagebackups" + +msgid "tPermissions" +msgstr "Berechtigungen" + +msgid "tClient" +msgstr "Client" + +msgid "tArchival" +msgstr "Archivieren" + +msgid "tInternet" +msgstr "Internet" + +msgid "tPerform autoupdates silently" +msgstr "Autoupdates im Hintergrund ausführen" + +msgid "tMax backup speed for local network" +msgstr "Maximale Geschwindigkeit für lokales Netzwerk" + +msgid "tNo activities" +msgstr "Keine Vorgänge" + +msgid "tSelect all" +msgstr "Alle auswählen" + +msgid "tSelect none" +msgstr "Keinen auswählen" + +msgid "tRemove selected" +msgstr "Ausgewählte löschen" + +msgid "tStart for selected" +msgstr "Für ausgewählte starten" + +msgid "tInternet clients" +msgstr "Internet Clients" + +msgid "tAdd additional internet clients" +msgstr "Zusätzliche Internet clients hinzufügen" + +msgid "tClient name" +msgstr "Clientname" + +msgid "tNo entries for this filter" +msgstr "Keine Einträge entsprechen den Filterkriterien" + +msgid "tNo data" +msgstr "Keine Daten" + +msgid "tTotal max backup speed for local network" +msgstr "Maximale Gesamtgeschwindigkeit für lokales Netzwerk" + +msgid "tArchive every" +msgstr "Archiviere alle" + +msgid "tArchive for" +msgstr "Archiviere für" + +msgid "tArchive window" +msgstr "Archivierungs-zeitfenster" + +msgid "tBackup type" +msgstr "Backuptyp" + +msgid "tEnable internet mode (requires server restart)" +msgstr "Internetmodus aktivieren (benötigt Serverneustart)" + +msgid "tInternet server name/IP" +msgstr "Internet Servername/IP" + +msgid "tInternet server port" +msgstr "Internet Port" + +msgid "tDo image backups over internet" +msgstr "Imagebackups über das Internet durchführen" + +msgid "tDo full file backups over internet" +msgstr "Volle Dateibackups über das Internet durchführen" + +msgid "tMax backup speed for internet connection" +msgstr "Maximale Geschwindigkeit für Internetverbindung" + +msgid "tTotal max backup speed for internet connection" +msgstr "Maximale Gesamtgeschwindigkeit für Internetverbindung" + +msgid "tEncrypted transfer" +msgstr "Transfers verschlüsseln" + +msgid "tCompressed transfer" +msgstr "Transfers komprimieren" + +msgid "file_backup" +msgstr "Datei-Backup" + +msgid "hours" +msgstr "Stunden" + +msgid "days" +msgstr "Tage" + +msgid "weeks" +msgstr "Wochen" + +msgid "months" +msgstr "Monate" + +msgid "year" +msgstr "Jahr" + +msgid "hour" +msgstr "Stunde" + +msgid "day" +msgstr "Tag" + +msgid "week" +msgstr "Woche" + +msgid "month" +msgstr "Monat" + +msgid "years" +msgstr "Jahre" + +msgid "min" +msgstr "Minute" + +msgid "mins" +msgstr "Minuten" + +msgid "validate_name_archive_every" +msgstr "Archiviere alle" + +msgid "validate_name_archive_for" +msgstr "Archiviere für" + +msgid "forever" +msgstr "Für immer" + +msgid "backup_in_progress" +msgstr "Backup läuft..." + +msgid "really_remove_clients" +msgstr "Wollen Sie wirklich diese Clients entfernen? Das bedeutet dass alle zugehörigen Datei- und Imagebackups gelöscht werden!" + +msgid "no_client_selected" +msgstr "Kein Client wurde ausgewählt" + +msgid "queued_backup" +msgstr "Backup in Warteschlange" + +msgid "starting_backup_failed" +msgstr "Starten fehlgeschlagen" + +msgid "trying_to_stop_backup" +msgstr "Versuche Backup zu stoppen. Dies könnte eine Weile dauern." + +msgid "unarchived_in" +msgstr "Wird nicht mehr archiviert sein in" + +msgid "validate_err_notregexp_archive_window" +msgstr "Format für das Archivierungszeitfenster falsch" + +msgid "wait_for_archive_window" +msgstr "Warte für nächstes Fenster/Ausführen" + +msgid "validate_err_notregexp_image_letters" +msgstr "Format der Volumenbezeichnungen falsch" + +msgid "validate_name_global_local_speed" +msgstr "Gesamtgeschwindigkeit für lokales Netzwerk" + +msgid "validate_name_global_internet_speed" +msgstr "Gesamtgeschwindigkeit für Internetverbindung" + +msgid "validate_name_local_speed" +msgstr "Maximale Geschwindigkiet für lokales Netzwerk" + +msgid "validate_name_internet_speed" +msgstr "Maximale Geschwindigkiet für Internetverbindung" + +msgid "enter_clientname" +msgstr "Bitte geben sie einen Clientnamen ein" + +msgid "internet_client_added" +msgstr "Client hinzugefügt. Sie können den Schlüssel (auch Passwort) in den Einstellungen einsehen." + +msgid "change_pw" +msgstr "Passwort ändern" + +msgid "old_pw_wrong" +msgstr "Altes passwort stimmt nicht" + +msgid "tID" +msgstr "ID" + +msgid "tFile" +msgstr "Datei" + +msgid "tSize" +msgstr "Größe" + +msgid "tIncremental" +msgstr "Inkrementell" + +msgid "tLoading" +msgstr "Lade" + +msgid "tStorage usage of" +msgstr "Speichernutzungsverlauf von" + +msgid "tDelete domain" +msgstr "Domäne löschen" + +msgid "tChange rights for user" +msgstr "Rechte ändern für Benutzer:" + +msgid "tDomain" +msgstr "Domäne" + +msgid "tTranslation" +msgstr "Übersetzung" + +msgid "tNew domain" +msgstr "Neue Domäne" + +msgid "tChange" +msgstr "Ändern" + +msgid "tChange password for user" +msgstr "Passwort ändern für Benutzer:" + +msgid "tSaved settings successfully" +msgstr "Speichern der Einstellungen erfolgreich" + +msgid "tThis client is going to be removed." +msgstr "Dieser Client wird entfernt." + +msgid "tStop removing client" +msgstr "Entfernen stoppen" + +msgid "tFailed" +msgstr "Fehlgeschlagene" + +msgid "tSuccessfull" +msgstr "Erfolgreiche" + +msgid "tInfo" +msgstr "Info" + +msgid "tError" +msgstr "Fehler" + +msgid "tWarning" +msgstr "Warnung" + +msgid "tCurrent version" +msgstr "Momentane version" + +msgid "tTarget version" +msgstr "Zielversion" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "Warnung: Die Clientkonfiguration wird die Einstellungen hier überschreiben. Um dieses Verhalten zu ändern erlauben Sie dem Client nicht Einstellungen zu ändern." + +msgid "tNext archival" +msgstr "Nächste Archivierung" + +msgid "tweeks" +msgstr "Wochen" + +msgid "tmonth" +msgstr "Monate" + +msgid "tyears" +msgstr "Jahre" + +msgid "tforever" +msgstr "Für immer" + +msgid "tFile backup" +msgstr "Dateibackup" + +msgid "tIncremental file backup" +msgstr "Inkrementelles Dateibackup" + +msgid "tFull file backup" +msgstr "Volles Dateibackup" + +msgid "tEnable internet mode" +msgstr "Internetmodus aktivieren" + +msgid "tInternet auth key" +msgstr "Internet Schlüssel" + +msgid "tIncremental image backup" +msgstr "Inkrementelles Imagebackup" + +msgid "tFull image backup" +msgstr "Volles Imagebackup" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "Clients werden im Aufräumzeitfenster gelöscht, wenn sie nicht mehr online sind." + +msgid "tArchived" +msgstr "Archiviert" + +msgid "nospc_stalled_text" +msgstr "Es is momentan nicht genügend Speicherplatz für Backups vorhanden. UrBackup löscht gerade alte Datei- und Image-Backups innerhalb der Grenzen die in den Einstellungen festgelegt sind. Wärend dieses Vorgangs ist die Performanz des Backupservers eventuell eingeschränkt; Laufende Backups sind eventuell pausiert." + +msgid "nospc_fatal_text" +msgstr "Es is momentan nicht genügend Speicherplatz für Backups vorhanden. UrBackup hat versucht alte Datei- und Image-Backups zu löschen, kann aber jetzt nicht weiteren Speicherplatz freimachen. Bitte ändern Sie die Einstellungen insofern, dass weniger Backups gespeichert werden, oder fügen Sie weiteren Backupspeicher hinzu, so dass UrBackup weiterhin Backups durchführen kann." + +msgid "tNondefault temporary file directory" +msgstr "Vom Standard abweichender temporärer Dateiordner" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "Clients werden beim Aufräumen im Aufräumzeitfenster gelöscht." + +msgid "about_urbackup" +msgstr "Über UrBackup" + +msgid "loading" +msgstr "Loading" + +msgid "authentication_err" +msgstr "Fehler bei der Serverauthentifizierung" + +msgid "tInverval for incremental image backups" +msgstr "Intervall für inkrementelle Image-Backups" + +msgid "action_5" +msgstr "Fortgesetztes inkrementelles Datei-Backup" + +msgid "action_6" +msgstr "Fortgesetztes volles Datei-Backup" + +msgid "really_recalculate" +msgstr "Wollen Sie wirklich alle Statistiken neu berechen? Dies könnte einige Zeit beanspruchen!" + +msgid "database_error_text" +msgstr "Während dem Zugriff auf oder beim Überprüfen von UrBackups interner Datenbank trat ein Fehler auf. Dies bedeutet die interne Datenbank ist vormutlich beschädigt oder es ist nicht mehr genügend Speichplatz für die Datenbank vorhanden. Wenn dieser Fehler auch nach einem Neustart auftritt, sollten Sie die Datenbank von einem Backup wiederherstellen (die Dateien urbackup_server.db und urbackup_server_settings.db). Siehe Log-Datei für Datails über die aufgetretenen Fehler." + +msgid "creating_filescache_text" +msgstr "UrBackup erstellt gerade den Dateieintrags-Cache. Dies könnte eine Zeit lang dauern." + +msgid "tDownload folder as ZIP" +msgstr "Ordner als ZIP-Datei herunterladen" + +msgid "tOld password" +msgstr "Altes Passwort" + +msgid "tNew password" +msgstr "Neues Passwort" + +msgid "tRepeat new password" +msgstr "Neues Passwort wiederholen" + +msgid "tChanging password failed:" +msgstr "Ändern des Passworts schlug fehl:" + +msgid "tChanged password successfully" +msgstr "Passwort wurde erfolgreich geändert" + +msgid "tNumber of file entries processed" +msgstr "Anzahl der bearbeiteten Dateieinträge" + +msgid "tUrBackup live log" +msgstr "UrBackup Echtzeit-Log" + +msgid "tLive Log" +msgstr "Echtzeit-Log" + +msgid "tShow" +msgstr "Anzeigen" + +msgid "tThere is a new version of UrBackup server available" +msgstr "Es ist eine neue Version des UrBackup Servers verfügbar" + +msgid "tIndexing..." +msgstr "Indexiere..." + +msgid "tDelete" +msgstr "Löschen" + +msgid "tDownload client from update server" +msgstr "Client vom Update-Server herunterladen" + +msgid "tGlobal soft filesystem quota" +msgstr "Globale \"soft filesystem quota\"" + +msgid "tDisable" +msgstr "Deaktivieren" + +msgid "tCompress image backups" +msgstr "Image-Backups komprimieren" + +msgid "tAllow client-side starting of full file backups" +msgstr "Erlaube clientseitiges starten von vollen Datei-Backups" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "Erlaube clientseitiges starten von inkrementellen Datei-Backups" + +msgid "tAllow client-side starting of full image backups" +msgstr "Erlaube clientseitiges starten von vollen Image-Backups" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "Erlaube clientseitiges starten von inkrementellen Image-Backups" + +msgid "tBackup window for incremental file backups" +msgstr "Backupzeitfenster für inkrementelle Datei-Backups" + +msgid "tBackup window for full file backups" +msgstr "Backupzeitfenster für volle Datei-Backups" + +msgid "tBackup window for incremental image backups" +msgstr "Backupzeitfenster für inkrementelle Image-Backups" + +msgid "tBackup window for full image backups" +msgstr "Backupzeitfenster für volle Image-Backups" + +msgid "tSoft client quota" +msgstr "Client \"soft quota\"" + +msgid "tCalculate file-hashes on the client" +msgstr "Datei-Prüfsummen auf dem Client berechnen" + +msgid "tAdvanced" +msgstr "Erweitert" + +msgid "tTemporary files as file backup buffer" +msgstr "Temporäre Dateien als Datei-Backup Puffer" + +msgid "tTemporary files as image backup buffer" +msgstr "Temporäre Dateien als Image-Backup Puffer" + +msgid "tLocal full file backup transfer mode" +msgstr "Voller Datei-Backup Transfermodus für lokales Netzwerk" + +msgid "tRaw" +msgstr "Raw" + +msgid "tHashed" +msgstr "Hashed" + +msgid "tInternet full file backup transfer mode" +msgstr "Voller Datei-Backup Transfermodus für Internet" + +msgid "tLocal incremental file backup transfer mode" +msgstr "Inkrementeller Datei-Backup Transfermodus für lokales Netzwerk" + +msgid "tBlock differences - hashed" +msgstr "Block differences - hashed" + +msgid "tInternet incremental file backup transfer mode" +msgstr "Inkrementeller Datei-Backup Transfermodus für Internet" + +msgid "tLocal image backup transfer mode" +msgstr "Image-Backup Transfermodus für lokales Netzwerk" + +msgid "tInternet image backup transfer mode" +msgstr "Image-Backup Transfermodus für Internet" + +msgid "tFile hash collection amount" +msgstr "File hash collection amount" + +msgid "tFile hash collection timeout" +msgstr "File hash collection timeout" + +msgid "tFile hash collection database cachesize" +msgstr "File hash collection database cachesize" + +msgid "tMB" +msgstr "MB" + +msgid "tUpdate stats database cachesize" +msgstr "Update stats database cachesize" + +msgid "tCache database type for file entries" +msgstr "Datenbanktyp für den Dateieintrags-Cache" + +msgid "tNone" +msgstr "Keinen" + +msgid "tCache database size for file entries" +msgstr "Datenbankgröße für Dateieintrags-Cache" + +msgid "tSuspend index limit" +msgstr "Suspend index limit" + +msgid "tUse symlinks during incremental file backups" +msgstr "Verwende symbolische Links bei inkrementellen Datei-Backups" + +msgid "tEnd-to-end verification of all file backups" +msgstr "Ende-zu-Ende Verifikation aller Datei-Backups" + +msgid "tServer admin mail address" +msgstr "E-Mail Adresse des Serveradministrators" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "Warnung: Einstellungen des Clients überschreiben eventuell die hier konfigurierten Einstellungen. Wenn Sie dieses Verhalten ändern wollen erlauben Sie es dem Client nicht Einstellungen zu ändern." + +msgid "tClient download" +msgstr "Client herunterladen" + +msgid "tDownload" +msgstr "Herunterladen" + +msgid "tStatus" +msgstr "Status" + +msgid "tIP" +msgstr "IP" + +msgid "tClient version" +msgstr "Clientversion" + +msgid "tOperating System" +msgstr "Betriebssystem" + +msgid "tShow all clients" +msgstr "Alle Clients anzeigen" + +msgid "tThis client is going to be removed. " +msgstr "Dieser Client wird entfernt werden." + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "Clients werden im Aufräumzeitfenster entfernt." + +msgid "tRecalculate statistics" +msgstr "Statistiken neu berechnen" diff --git a/urbackupserver/www/translations/urbackup.webinterface/en.po b/urbackupserver/www/translations/urbackup.webinterface/en.po new file mode 100644 index 00000000..0e05441a --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/en.po @@ -0,0 +1,1128 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:33+0000\n" +"Last-Translator: uroni \n" +"Language-Team: English (http://www.transifex.com/projects/p/urbackup/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "action_1" +msgstr "Incremental file backup" + +msgid "action_2" +msgstr "Full file backup" + +msgid "action_3" +msgstr "Incremental image backup" + +msgid "action_4" +msgstr "Full image backup" + +msgid "action_1_d" +msgstr "Deleting incremental file backup" + +msgid "action_2_d" +msgstr "Deleting full file backup" + +msgid "action_3_d" +msgstr "Deleting incremental image backup" + +msgid "action_4_d" +msgstr "Deleting full image backup" + +msgid "nav_item_6" +msgstr "Status" + +msgid "nav_item_5" +msgstr "Activities" + +msgid "nav_item_4" +msgstr "Backups" + +msgid "nav_item_3" +msgstr "Logs" + +msgid "nav_item_2" +msgstr "Statistics" + +msgid "nav_item_1" +msgstr "Settings" + +msgid "unknown" +msgstr "Unknown" + +msgid "overview" +msgstr "Overview" + +msgid "ok" +msgstr "Ok" + +msgid "no_recent_backup" +msgstr "No recent backup" + +msgid "backup_never" +msgstr "Never" + +msgid "yes" +msgstr "Yes" + +msgid "no" +msgstr "No" + +msgid "tBackup status" +msgstr "Backup status" + +msgid "tComputer name" +msgstr "Computer name" + +msgid "tLast seen" +msgstr "Last seen" + +msgid "tLast file backup" +msgstr "Last file backup" + +msgid "tLast image backup" +msgstr "Last image backup" + +msgid "tFile backup status" +msgstr "File backup status" + +msgid "tImage backup status" +msgstr "Image backup status" + +msgid "tShow details" +msgstr "Show details" + +msgid "tExtra clients" +msgstr "Extra clients" + +msgid "tNo extra clients" +msgstr "No extra clients" + +msgid "tActions" +msgstr "Actions" + +msgid "tOnline" +msgstr "Online" + +msgid "tHostname/IP" +msgstr "Hostname/IP" + +msgid "tServer identity" +msgstr "Server identity" + +msgid "users" +msgstr "Users" + +msgid "general_settings" +msgstr "General" + +msgid "admin" +msgstr "Administrator" + +msgid "user" +msgstr "User" + +msgid "username_empty" +msgstr "Please enter a username" + +msgid "password_empty" +msgstr "Please enter a password" + +msgid "password_differ" +msgstr "The two passwords differ" + +msgid "user_n_exist" +msgstr "User does not exist" + +msgid "password_wrong" +msgstr "Wrong password" + +msgid "user_exists" +msgstr "User with this name already exists" + +msgid "session_timeout" +msgstr "Inactivity caused this session to become invalid. Please login again to proceed." + +msgid "really_del_user" +msgstr "Really remove this user?" + +msgid "user_add_done" +msgstr "New user successfully added." + +msgid "user_remove_done" +msgstr "Successfully removed user." + +msgid "user_update_right_done" +msgstr "Successfully changed user rights." + +msgid "user_pw_change_ok" +msgstr "Successfully changed user password." + +msgid "right_all" +msgstr "All rights" + +msgid "right_none" +msgstr "No Rights" + +msgid "filter" +msgstr "Filter" + +msgid "all" +msgstr "All" + +msgid "loglevel_0" +msgstr "Info" + +msgid "loglevel_1" +msgstr "Warnings" + +msgid "loglevel_2" +msgstr "Errors" + +msgid "dir_error_text" +msgstr "The directory where UrBackup will save backups is inaccessible. Please fix that by modifying this folder in 'Settings' or by giving UrBackup rights to access this directory." + +msgid "tmpdir_error_text" +msgstr "The directory where UrBackup will save temporary files is inaccessible. Please fix that by modifying this folder in 'Settings' or by giving UrBackup rights to access this directory." + +msgid "starting" +msgstr "Starting" + +msgid "ident_err" +msgstr "Server rejected" + +msgid "enter_hostname" +msgstr "Please enter a hostname or IP address" + +msgid "clients" +msgstr "Clients" + +msgid "validate_text_empty" +msgstr "Please enter a value for the {name}" + +msgid "validate_text_notint" +msgstr "Please enter a numeric value for the {name}" + +msgid "validate_name_update_freq_incr" +msgstr "interval for incremental file backups" + +msgid "validate_name_update_freq_full" +msgstr "interval for full file backups" + +msgid "validate_name_update_freq_image_full" +msgstr "interval for incremental image backups" + +msgid "validate_name_update_freq_image_incr" +msgstr "interval for full image backups" + +msgid "validate_name_max_file_incr" +msgstr "maximal number of incremental file backups" + +msgid "validate_name_min_file_incr" +msgstr "minimal number of incremental file backups" + +msgid "validate_name_max_file_full" +msgstr "maximal number of full file backups" + +msgid "validate_name_min_file_full" +msgstr "minimal number of full file backups" + +msgid "validate_name_min_image_incr" +msgstr "minimal number of incremental image backups" + +msgid "validate_name_max_image_incr" +msgstr "maximal number of incremental image backups" + +msgid "validate_name_min_image_full" +msgstr "minimal number of full image backups" + +msgid "validate_name_max_image_full" +msgstr "maximal number of full image backups" + +msgid "validate_name_startup_backup_delay" +msgstr "delay after system startup" + +msgid "validate_err_notregexp_backup_window" +msgstr "Format for backup window wrong" + +msgid "validate_name_max_active_clients" +msgstr "max number of recently active clients" + +msgid "validate_name_max_sim_backups" +msgstr "max number of simultaneous backups" + +msgid "validate_name_backupfolder" +msgstr "backup storage path" + +msgid "validate_name_computername" +msgstr "computer name" + +msgid "too_many_clients_err" +msgstr "Too many clients" + +msgid "really_remove_client" +msgstr "Do you really want to remove this client? This means all its file and image backups will be deleted!" + +msgid "computername" +msgstr "Computer name" + +msgid "storage_usage_pie_graph_title" +msgstr "Storage usage" + +msgid "storage_usage_pie_graph_colname1" +msgstr "Computer name" + +msgid "storage_usage_pie_graph_colname2" +msgstr "Storage usage" + +msgid "storage_usage_bar_graph_title" +msgstr "Storage usage" + +msgid "storage_usage_bar_graph_colname1" +msgstr "Date" + +msgid "storage_usage_bar_graph_colname2" +msgstr "Storage usage" + +msgid "tImages" +msgstr "Images" + +msgid "tFiles" +msgstr "Files" + +msgid "tSum" +msgstr "Sum" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "Format for cleanup window wrong" + +msgid "mail_settings" +msgstr "Mail" + +msgid "upgrade_error_text" +msgstr "UrBackup is upgrading its internal database. This may take a while. The server is inaccessible and will not do any backups during this upgrade." + +msgid "tActivities" +msgstr "Activities" + +msgid "tAction" +msgstr "Action" + +msgid "tProgress" +msgstr "Progress" + +msgid "tFiles in queue" +msgstr "Files in queue" + +msgid "tLast activities" +msgstr "Last activities" + +msgid "tStarting time" +msgstr "Starting time" + +msgid "tRequired time" +msgstr "Required time" + +msgid "tUsed Storage" +msgstr "Used Storage" + +msgid "tClients" +msgstr "Clients" + +msgid "tLogs" +msgstr "Logs" + +msgid "tReports" +msgstr "Reports" + +msgid "tSend reports to" +msgstr "Send reports to" + +msgid "tSend" +msgstr "Send" + +msgid "tBackups with a log message of at least log level" +msgstr "Backups with a log message of at least log level" + +msgid "tBackup time" +msgstr "Backup time" + +msgid "tErrors" +msgstr "Errors" + +msgid "tWarnings" +msgstr "Warnings" + +msgid "tStorage allocation" +msgstr "Storage allocation" + +msgid "tStorage usage" +msgstr "Storage usage" + +msgid "tAll" +msgstr "All" + +msgid "tBackup storage path" +msgstr "Backup storage path" + +msgid "tDo not do image backups" +msgstr "Do not do image backups" + +msgid "tDo not do file backups" +msgstr "Do not do file backups" + +msgid "tAutomatically shut down server" +msgstr "Automatically shut down server" + +msgid "tAutoupdate clients" +msgstr "Autoupdate clients" + +msgid "tMax number of simultaneous backups" +msgstr "Max number of simultaneous backups" + +msgid "tMax number of recently active clients" +msgstr "Max number of recently active clients" + +msgid "tCleanup time window" +msgstr "Cleanup time window" + +msgid "tAutomatically backup UrBackup database" +msgstr "Automatically backup UrBackup database" + +msgid "tInterval for incremental file backups" +msgstr "Interval for incremental file backups" + +msgid "tInterval for full file backups" +msgstr "Interval for full file backups" + +msgid "tInterval for incremental image backups" +msgstr "Interval for incremental image backups" + +msgid "tInterval for full image backups" +msgstr "Interval for full image backups" + +msgid "tMaximal number of incremental file backups" +msgstr "Maximal number of incremental file backups" + +msgid "tMinimal number of incremental file backups" +msgstr "Minimal number of incremental file backups" + +msgid "tMaximal number of full file backups" +msgstr "Maximal number of full file backups" + +msgid "tMinimal number of full file backups" +msgstr "Minimal number of full file backups" + +msgid "tMaximal number of incremental image backups" +msgstr "Maximal number of incremental image backups" + +msgid "tMinimal number of incremental image backups" +msgstr "Minimal number of incremental image backups" + +msgid "tMaximal number of full image backups" +msgstr "Maximal number of full image backups" + +msgid "tMinimal number of full image backups" +msgstr "Minimal number of full image backups" + +msgid "tDelay after system startup" +msgstr "Delay after system startup" + +msgid "tBackup window" +msgstr "Backup window" + +msgid "tExcluded files (with wildcards)" +msgstr "Excluded files (with wildcards)" + +msgid "tIncluded files (with wildcards)" +msgstr "Included files (with wildcards)" + +msgid "tDefault directories to backup" +msgstr "Default directories to backup" + +msgid "tVolumes to backup" +msgstr "Volumes to backup" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "Allow client-side changing of the directories to backup" + +msgid "tAllow client-side starting of file backups" +msgstr "Allow client-side starting of file backups" + +msgid "tAllow client-side starting of image backups" +msgstr "Allow client-side starting of image backups" + +msgid "tAllow client-side viewing of backup logs" +msgstr "Allow client-side viewing of backup logs" + +msgid "tAllow client-side pausing of backups" +msgstr "Allow client-side pausing of backups" + +msgid "tAllow client-side changing of settings" +msgstr "Allow client-side changing of settings" + +msgid "tdays" +msgstr "days" + +msgid "thours" +msgstr "hours" + +msgid "tmin" +msgstr "min" + +msgid "tMail server name" +msgstr "Mail server name" + +msgid "tMail server port" +msgstr "Mail server port" + +msgid "tMail server username (empty for none)" +msgstr "Mail server username (empty for none)" + +msgid "tMail server password" +msgstr "Mail server password" + +msgid "tSender E-Mail Address" +msgstr "Sender E-Mail Address" + +msgid "tSend mails only with SSL/TLS" +msgstr "Send mails only with SSL/TLS" + +msgid "tCheck SSL/TLS certificate" +msgstr "Check SSL/TLS certificate" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "Send test mail to this email address after saving the settings (leave empty to not send a test mail)" + +msgid "tTest Mail sent successfully" +msgstr "Test Mail sent successfully" + +msgid "tSending test mail failed. Error:" +msgstr "Sending test mail failed. Error:" + +msgid "tFilter" +msgstr "Filter" + +msgid "tBack" +msgstr "Back" + +msgid "tAdd" +msgstr "Add" + +msgid "tRemove" +msgstr "Remove" + +msgid "tSave" +msgstr "Save" + +msgid "tLevel" +msgstr "Level" + +msgid "tTime" +msgstr "Time" + +msgid "tMessage" +msgstr "Message" + +msgid "tLog" +msgstr "Log" + +msgid "tUsername" +msgstr "Username" + +msgid "tRights" +msgstr "Rights" + +msgid "tNo Users" +msgstr "No Users" + +msgid "tCreate user" +msgstr "Create user" + +msgid "tPassword" +msgstr "Password" + +msgid "tRepeat password" +msgstr "Repeat password" + +msgid "tRights for" +msgstr "Rights for" + +msgid "tAbort" +msgstr "Abort" + +msgid "tCreate" +msgstr "Create" + +msgid "tChange rights" +msgstr "Change rights" + +msgid "tChange password" +msgstr "Change password" + +msgid "tLogin" +msgstr "Login" + +msgid "tInfos" +msgstr "Infos" + +msgid "tSeparate settings for this client" +msgstr "Separate settings for this client" + +msgid "tServer" +msgstr "Server" + +msgid "tFile backups" +msgstr "File backups" + +msgid "tImage backups" +msgstr "Image backups" + +msgid "tPermissions" +msgstr "Permissions" + +msgid "tClient" +msgstr "Client" + +msgid "tArchival" +msgstr "Archival" + +msgid "tInternet" +msgstr "Internet" + +msgid "tPerform autoupdates silently" +msgstr "Perform autoupdates silently" + +msgid "tMax backup speed for local network" +msgstr "Max backup speed for local network" + +msgid "tNo activities" +msgstr "No activities" + +msgid "tSelect all" +msgstr "Select all" + +msgid "tSelect none" +msgstr "Select none" + +msgid "tRemove selected" +msgstr "Remove selected" + +msgid "tStart for selected" +msgstr "Start for selected" + +msgid "tInternet clients" +msgstr "Internet clients" + +msgid "tAdd additional internet clients" +msgstr "Add additional internet clients" + +msgid "tClient name" +msgstr "Client name" + +msgid "tNo entries for this filter" +msgstr "No entries for this filter" + +msgid "tNo data" +msgstr "No data" + +msgid "tTotal max backup speed for local network" +msgstr "Total max backup speed for local network" + +msgid "tArchive every" +msgstr "Archive every" + +msgid "tArchive for" +msgstr "Archive for" + +msgid "tArchive window" +msgstr "Archive window" + +msgid "tBackup type" +msgstr "Backup type" + +msgid "tEnable internet mode (requires server restart)" +msgstr "Enable internet mode (requires server restart)" + +msgid "tInternet server name/IP" +msgstr "Internet server name/IP" + +msgid "tInternet server port" +msgstr "Internet server port" + +msgid "tDo image backups over internet" +msgstr "Do image backups over internet" + +msgid "tDo full file backups over internet" +msgstr "Do full file backups over internet" + +msgid "tMax backup speed for internet connection" +msgstr "Max backup speed for internet connection" + +msgid "tTotal max backup speed for internet connection" +msgstr "Total max backup speed for internet connection" + +msgid "tEncrypted transfer" +msgstr "Encrypted transfer" + +msgid "tCompressed transfer" +msgstr "Compressed transfer" + +msgid "file_backup" +msgstr "File backup" + +msgid "hours" +msgstr "hours" + +msgid "days" +msgstr "days" + +msgid "weeks" +msgstr "weeks" + +msgid "months" +msgstr "months" + +msgid "year" +msgstr "year" + +msgid "hour" +msgstr "hour" + +msgid "day" +msgstr "day" + +msgid "week" +msgstr "week" + +msgid "month" +msgstr "month" + +msgid "years" +msgstr "years" + +msgid "min" +msgstr "minute" + +msgid "mins" +msgstr "minutes" + +msgid "validate_name_archive_every" +msgstr "Archive every" + +msgid "validate_name_archive_for" +msgstr "Archive for" + +msgid "forever" +msgstr "forever" + +msgid "backup_in_progress" +msgstr "Backup in progress..." + +msgid "really_remove_clients" +msgstr "Do you really want to remove these clients? This means all their file and image backups will be deleted!" + +msgid "no_client_selected" +msgstr "No client has been selected" + +msgid "queued_backup" +msgstr "Queued backup" + +msgid "starting_backup_failed" +msgstr "Starting backup failed" + +msgid "trying_to_stop_backup" +msgstr "Trying to stop backup. This might take a while." + +msgid "unarchived_in" +msgstr "Will stop being archived in" + +msgid "validate_err_notregexp_archive_window" +msgstr "Format for archive window wrong" + +msgid "wait_for_archive_window" +msgstr "Waiting for window/next run" + +msgid "validate_err_notregexp_image_letters" +msgstr "Format of image letters wrong" + +msgid "validate_name_global_local_speed" +msgstr "total max backup speed for local network" + +msgid "validate_name_global_internet_speed" +msgstr "total max backup speed for internet connection" + +msgid "validate_name_local_speed" +msgstr "max backup speed for local network" + +msgid "validate_name_internet_speed" +msgstr "max backup speed for internet connection" + +msgid "enter_clientname" +msgstr "Please enter a client name" + +msgid "internet_client_added" +msgstr "Added new client. You can see the client's auth key (or password) in the settings." + +msgid "change_pw" +msgstr "Change password" + +msgid "old_pw_wrong" +msgstr "Old password is wrong" + +msgid "tID" +msgstr "ID" + +msgid "tFile" +msgstr "File" + +msgid "tSize" +msgstr "Size" + +msgid "tIncremental" +msgstr "Incremental" + +msgid "tLoading" +msgstr "Loading" + +msgid "tStorage usage of" +msgstr "Storage usage of" + +msgid "tDelete domain" +msgstr "Delete domain" + +msgid "tChange rights for user" +msgstr "Change rights for user" + +msgid "tDomain" +msgstr "Domain" + +msgid "tTranslation" +msgstr "Translation" + +msgid "tNew domain" +msgstr "New domain" + +msgid "tChange" +msgstr "Change" + +msgid "tChange password for user" +msgstr "Change password for user" + +msgid "tSaved settings successfully" +msgstr "Saved settings successfully" + +msgid "tThis client is going to be removed." +msgstr "This client is going to be removed." + +msgid "tStop removing client" +msgstr "Stop removing client" + +msgid "tFailed" +msgstr "Failed" + +msgid "tSuccessfull" +msgstr "Successfull" + +msgid "tInfo" +msgstr "Info" + +msgid "tError" +msgstr "Error" + +msgid "tWarning" +msgstr "Warning" + +msgid "tCurrent version" +msgstr "Current version" + +msgid "tTarget version" +msgstr "Target version" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "Warning: The settings configured on the client will overwrite the settings configured here. If you want to change this behaviour do not allow the client to change settings." + +msgid "tNext archival" +msgstr "Next archival" + +msgid "tweeks" +msgstr "weeks" + +msgid "tmonth" +msgstr "month" + +msgid "tyears" +msgstr "years" + +msgid "tforever" +msgstr "forever" + +msgid "tFile backup" +msgstr "File backup" + +msgid "tIncremental file backup" +msgstr "Incremental file backup" + +msgid "tFull file backup" +msgstr "Full file backup" + +msgid "tEnable internet mode" +msgstr "Enable internet mode" + +msgid "tInternet auth key" +msgstr "Internet auth key" + +msgid "tIncremental image backup" +msgstr "Incremental image backup" + +msgid "tFull image backup" +msgstr "Full image backup" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "Clients are removed during the cleanup time window, if they are offline." + +msgid "tArchived" +msgstr "Archived" + +msgid "nospc_stalled_text" +msgstr "There is currently not enough free space in the backup folder. UrBackup is deleting old image and file backups to free space, within the limits defined by the settings. During this process the backup performance is descreased and backups are stalled." + +msgid "nospc_fatal_text" +msgstr "There is currently not enough free space in the backup folder. UrBackup tried to delete old image and file backups but is now not allowed to delete more. Please change the settings to store less backups or increase the storage amount to allow UrBackup to continue to perform backups" + +msgid "tNondefault temporary file directory" +msgstr "Nondefault temporary file directory" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "Clients are removed during the cleanup in the cleanup time window." + +msgid "about_urbackup" +msgstr "About UrBackup" + +msgid "loading" +msgstr "Loading" + +msgid "authentication_err" +msgstr "Error during server authentication" + +msgid "tInverval for incremental image backups" +msgstr "Inverval for incremental image backups" + +msgid "action_5" +msgstr "Resumed incremental file backup" + +msgid "action_6" +msgstr "Resumed full file backup" + +msgid "really_recalculate" +msgstr "Do you really want to recalculate all statistics? This might take a long time!" + +msgid "database_error_text" +msgstr "An error occured while accessing or checking UrBackup's internal database. This means this database is probably damaged or there is not enough free space. If this error persists, please restore the database (the files urbackup_server.db and urbackup_server_settings.db) from a backup. See log file for details." + +msgid "creating_filescache_text" +msgstr "UrBackup is creating the file entry chache. This might take a while." + +msgid "tDownload folder as ZIP" +msgstr "Download folder as ZIP" + +msgid "tOld password" +msgstr "Old password" + +msgid "tNew password" +msgstr "New password" + +msgid "tRepeat new password" +msgstr "Repeat new password" + +msgid "tChanging password failed:" +msgstr "Changing password failed:" + +msgid "tChanged password successfully" +msgstr "Changed password successfully" + +msgid "tNumber of file entries processed" +msgstr "Number of file entries processed" + +msgid "tUrBackup live log" +msgstr "UrBackup live log" + +msgid "tLive Log" +msgstr "Live Log" + +msgid "tShow" +msgstr "Show" + +msgid "tThere is a new version of UrBackup server available" +msgstr "There is a new version of UrBackup server available" + +msgid "tIndexing..." +msgstr "Indexing..." + +msgid "tDelete" +msgstr "Delete" + +msgid "tDownload client from update server" +msgstr "Download client from update server" + +msgid "tGlobal soft filesystem quota" +msgstr "Global soft filesystem quota" + +msgid "tDisable" +msgstr "Disable" + +msgid "tCompress image backups" +msgstr "Compress image backups" + +msgid "tAllow client-side starting of full file backups" +msgstr "Allow client-side starting of full file backups" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "Allow client-side starting of incremental file backups" + +msgid "tAllow client-side starting of full image backups" +msgstr "Allow client-side starting of full image backups" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "Allow client-side starting of incremental image backups" + +msgid "tBackup window for incremental file backups" +msgstr "Backup window for incremental file backups" + +msgid "tBackup window for full file backups" +msgstr "Backup window for full file backups" + +msgid "tBackup window for incremental image backups" +msgstr "Backup window for incremental image backups" + +msgid "tBackup window for full image backups" +msgstr "Backup window for full image backups" + +msgid "tSoft client quota" +msgstr "Soft client quota" + +msgid "tCalculate file-hashes on the client" +msgstr "Calculate file-hashes on the client" + +msgid "tAdvanced" +msgstr "Advanced" + +msgid "tTemporary files as file backup buffer" +msgstr "Temporary files as file backup buffer" + +msgid "tTemporary files as image backup buffer" +msgstr "Temporary files as image backup buffer" + +msgid "tLocal full file backup transfer mode" +msgstr "Local full file backup transfer mode" + +msgid "tRaw" +msgstr "Raw" + +msgid "tHashed" +msgstr "Hashed" + +msgid "tInternet full file backup transfer mode" +msgstr "Internet full file backup transfer mode" + +msgid "tLocal incremental file backup transfer mode" +msgstr "Local incremental file backup transfer mode" + +msgid "tBlock differences - hashed" +msgstr "Block differences - hashed" + +msgid "tInternet incremental file backup transfer mode" +msgstr "Internet incremental file backup transfer mode" + +msgid "tLocal image backup transfer mode" +msgstr "Local image backup transfer mode" + +msgid "tInternet image backup transfer mode" +msgstr "Internet image backup transfer mode" + +msgid "tFile hash collection amount" +msgstr "File hash collection amount" + +msgid "tFile hash collection timeout" +msgstr "File hash collection timeout" + +msgid "tFile hash collection database cachesize" +msgstr "File hash collection database cachesize" + +msgid "tMB" +msgstr "MB" + +msgid "tUpdate stats database cachesize" +msgstr "Update stats database cachesize" + +msgid "tCache database type for file entries" +msgstr "Cache database type for file entries" + +msgid "tNone" +msgstr "None" + +msgid "tCache database size for file entries" +msgstr "Cache database size for file entries" + +msgid "tSuspend index limit" +msgstr "Suspend index limit" + +msgid "tUse symlinks during incremental file backups" +msgstr "Use symlinks during incremental file backups" + +msgid "tEnd-to-end verification of all file backups" +msgstr "End-to-end verification of all file backups" + +msgid "tServer admin mail address" +msgstr "Server admin mail address" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "Warning: The settings configured on the client will overwrite the settings configured here. If you want to change this behaviour do not allow the client to change settings. " + +msgid "tClient download" +msgstr "Client download" + +msgid "tDownload" +msgstr "Download" + +msgid "tStatus" +msgstr "Status" + +msgid "tIP" +msgstr "IP" + +msgid "tClient version" +msgstr "Client version" + +msgid "tOperating System" +msgstr "Operating System" + +msgid "tShow all clients" +msgstr "Show all clients" + +msgid "tThis client is going to be removed. " +msgstr "This client is going to be removed. " + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "Clients are removed during the cleanup in the cleanup time window. " + +msgid "tRecalculate statistics" +msgstr "Recalculate statistics" diff --git a/urbackupserver/www/translations/urbackup.webinterface/en_US.po b/urbackupserver/www/translations/urbackup.webinterface/en_US.po new file mode 100644 index 00000000..d0bdf4fc --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/en_US.po @@ -0,0 +1,1127 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:33+0000\n" +"Language-Team: English (United States) (http://www.transifex.com/projects/p/urbackup/language/en_US/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_US\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "action_1" +msgstr "" + +msgid "action_2" +msgstr "" + +msgid "action_3" +msgstr "" + +msgid "action_4" +msgstr "" + +msgid "action_1_d" +msgstr "" + +msgid "action_2_d" +msgstr "" + +msgid "action_3_d" +msgstr "" + +msgid "action_4_d" +msgstr "" + +msgid "nav_item_6" +msgstr "" + +msgid "nav_item_5" +msgstr "" + +msgid "nav_item_4" +msgstr "" + +msgid "nav_item_3" +msgstr "" + +msgid "nav_item_2" +msgstr "" + +msgid "nav_item_1" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "overview" +msgstr "" + +msgid "ok" +msgstr "" + +msgid "no_recent_backup" +msgstr "" + +msgid "backup_never" +msgstr "" + +msgid "yes" +msgstr "" + +msgid "no" +msgstr "" + +msgid "tBackup status" +msgstr "" + +msgid "tComputer name" +msgstr "" + +msgid "tLast seen" +msgstr "" + +msgid "tLast file backup" +msgstr "" + +msgid "tLast image backup" +msgstr "" + +msgid "tFile backup status" +msgstr "" + +msgid "tImage backup status" +msgstr "" + +msgid "tShow details" +msgstr "" + +msgid "tExtra clients" +msgstr "" + +msgid "tNo extra clients" +msgstr "" + +msgid "tActions" +msgstr "" + +msgid "tOnline" +msgstr "" + +msgid "tHostname/IP" +msgstr "" + +msgid "tServer identity" +msgstr "" + +msgid "users" +msgstr "" + +msgid "general_settings" +msgstr "" + +msgid "admin" +msgstr "" + +msgid "user" +msgstr "" + +msgid "username_empty" +msgstr "" + +msgid "password_empty" +msgstr "" + +msgid "password_differ" +msgstr "" + +msgid "user_n_exist" +msgstr "" + +msgid "password_wrong" +msgstr "" + +msgid "user_exists" +msgstr "" + +msgid "session_timeout" +msgstr "" + +msgid "really_del_user" +msgstr "" + +msgid "user_add_done" +msgstr "" + +msgid "user_remove_done" +msgstr "" + +msgid "user_update_right_done" +msgstr "" + +msgid "user_pw_change_ok" +msgstr "" + +msgid "right_all" +msgstr "" + +msgid "right_none" +msgstr "" + +msgid "filter" +msgstr "" + +msgid "all" +msgstr "" + +msgid "loglevel_0" +msgstr "" + +msgid "loglevel_1" +msgstr "" + +msgid "loglevel_2" +msgstr "" + +msgid "dir_error_text" +msgstr "" + +msgid "tmpdir_error_text" +msgstr "" + +msgid "starting" +msgstr "" + +msgid "ident_err" +msgstr "" + +msgid "enter_hostname" +msgstr "" + +msgid "clients" +msgstr "" + +msgid "validate_text_empty" +msgstr "" + +msgid "validate_text_notint" +msgstr "" + +msgid "validate_name_update_freq_incr" +msgstr "" + +msgid "validate_name_update_freq_full" +msgstr "" + +msgid "validate_name_update_freq_image_full" +msgstr "" + +msgid "validate_name_update_freq_image_incr" +msgstr "" + +msgid "validate_name_max_file_incr" +msgstr "" + +msgid "validate_name_min_file_incr" +msgstr "" + +msgid "validate_name_max_file_full" +msgstr "" + +msgid "validate_name_min_file_full" +msgstr "" + +msgid "validate_name_min_image_incr" +msgstr "" + +msgid "validate_name_max_image_incr" +msgstr "" + +msgid "validate_name_min_image_full" +msgstr "" + +msgid "validate_name_max_image_full" +msgstr "" + +msgid "validate_name_startup_backup_delay" +msgstr "" + +msgid "validate_err_notregexp_backup_window" +msgstr "" + +msgid "validate_name_max_active_clients" +msgstr "" + +msgid "validate_name_max_sim_backups" +msgstr "" + +msgid "validate_name_backupfolder" +msgstr "" + +msgid "validate_name_computername" +msgstr "" + +msgid "too_many_clients_err" +msgstr "" + +msgid "really_remove_client" +msgstr "" + +msgid "computername" +msgstr "" + +msgid "storage_usage_pie_graph_title" +msgstr "" + +msgid "storage_usage_pie_graph_colname1" +msgstr "" + +msgid "storage_usage_pie_graph_colname2" +msgstr "" + +msgid "storage_usage_bar_graph_title" +msgstr "" + +msgid "storage_usage_bar_graph_colname1" +msgstr "" + +msgid "storage_usage_bar_graph_colname2" +msgstr "" + +msgid "tImages" +msgstr "" + +msgid "tFiles" +msgstr "" + +msgid "tSum" +msgstr "" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "" + +msgid "mail_settings" +msgstr "" + +msgid "upgrade_error_text" +msgstr "" + +msgid "tActivities" +msgstr "" + +msgid "tAction" +msgstr "" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "" + +msgid "tLast activities" +msgstr "" + +msgid "tStarting time" +msgstr "" + +msgid "tRequired time" +msgstr "" + +msgid "tUsed Storage" +msgstr "" + +msgid "tClients" +msgstr "" + +msgid "tLogs" +msgstr "" + +msgid "tReports" +msgstr "" + +msgid "tSend reports to" +msgstr "" + +msgid "tSend" +msgstr "" + +msgid "tBackups with a log message of at least log level" +msgstr "" + +msgid "tBackup time" +msgstr "" + +msgid "tErrors" +msgstr "" + +msgid "tWarnings" +msgstr "" + +msgid "tStorage allocation" +msgstr "" + +msgid "tStorage usage" +msgstr "" + +msgid "tAll" +msgstr "" + +msgid "tBackup storage path" +msgstr "" + +msgid "tDo not do image backups" +msgstr "" + +msgid "tDo not do file backups" +msgstr "" + +msgid "tAutomatically shut down server" +msgstr "" + +msgid "tAutoupdate clients" +msgstr "" + +msgid "tMax number of simultaneous backups" +msgstr "" + +msgid "tMax number of recently active clients" +msgstr "" + +msgid "tCleanup time window" +msgstr "" + +msgid "tAutomatically backup UrBackup database" +msgstr "" + +msgid "tInterval for incremental file backups" +msgstr "" + +msgid "tInterval for full file backups" +msgstr "" + +msgid "tInterval for incremental image backups" +msgstr "" + +msgid "tInterval for full image backups" +msgstr "" + +msgid "tMaximal number of incremental file backups" +msgstr "" + +msgid "tMinimal number of incremental file backups" +msgstr "" + +msgid "tMaximal number of full file backups" +msgstr "" + +msgid "tMinimal number of full file backups" +msgstr "" + +msgid "tMaximal number of incremental image backups" +msgstr "" + +msgid "tMinimal number of incremental image backups" +msgstr "" + +msgid "tMaximal number of full image backups" +msgstr "" + +msgid "tMinimal number of full image backups" +msgstr "" + +msgid "tDelay after system startup" +msgstr "" + +msgid "tBackup window" +msgstr "" + +msgid "tExcluded files (with wildcards)" +msgstr "" + +msgid "tIncluded files (with wildcards)" +msgstr "" + +msgid "tDefault directories to backup" +msgstr "" + +msgid "tVolumes to backup" +msgstr "" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "" + +msgid "tAllow client-side starting of file backups" +msgstr "" + +msgid "tAllow client-side starting of image backups" +msgstr "" + +msgid "tAllow client-side viewing of backup logs" +msgstr "" + +msgid "tAllow client-side pausing of backups" +msgstr "" + +msgid "tAllow client-side changing of settings" +msgstr "" + +msgid "tdays" +msgstr "" + +msgid "thours" +msgstr "" + +msgid "tmin" +msgstr "" + +msgid "tMail server name" +msgstr "" + +msgid "tMail server port" +msgstr "" + +msgid "tMail server username (empty for none)" +msgstr "" + +msgid "tMail server password" +msgstr "" + +msgid "tSender E-Mail Address" +msgstr "" + +msgid "tSend mails only with SSL/TLS" +msgstr "" + +msgid "tCheck SSL/TLS certificate" +msgstr "" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "" + +msgid "tTest Mail sent successfully" +msgstr "" + +msgid "tSending test mail failed. Error:" +msgstr "" + +msgid "tFilter" +msgstr "" + +msgid "tBack" +msgstr "" + +msgid "tAdd" +msgstr "" + +msgid "tRemove" +msgstr "" + +msgid "tSave" +msgstr "" + +msgid "tLevel" +msgstr "" + +msgid "tTime" +msgstr "" + +msgid "tMessage" +msgstr "" + +msgid "tLog" +msgstr "" + +msgid "tUsername" +msgstr "" + +msgid "tRights" +msgstr "" + +msgid "tNo Users" +msgstr "" + +msgid "tCreate user" +msgstr "" + +msgid "tPassword" +msgstr "" + +msgid "tRepeat password" +msgstr "" + +msgid "tRights for" +msgstr "" + +msgid "tAbort" +msgstr "" + +msgid "tCreate" +msgstr "" + +msgid "tChange rights" +msgstr "" + +msgid "tChange password" +msgstr "" + +msgid "tLogin" +msgstr "" + +msgid "tInfos" +msgstr "" + +msgid "tSeparate settings for this client" +msgstr "" + +msgid "tServer" +msgstr "" + +msgid "tFile backups" +msgstr "" + +msgid "tImage backups" +msgstr "" + +msgid "tPermissions" +msgstr "" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "" + +msgid "tMax backup speed for local network" +msgstr "" + +msgid "tNo activities" +msgstr "" + +msgid "tSelect all" +msgstr "" + +msgid "tSelect none" +msgstr "" + +msgid "tRemove selected" +msgstr "" + +msgid "tStart for selected" +msgstr "" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "" + +msgid "tArchive every" +msgstr "" + +msgid "tArchive for" +msgstr "" + +msgid "tArchive window" +msgstr "" + +msgid "tBackup type" +msgstr "" + +msgid "tEnable internet mode (requires server restart)" +msgstr "" + +msgid "tInternet server name/IP" +msgstr "" + +msgid "tInternet server port" +msgstr "" + +msgid "tDo image backups over internet" +msgstr "" + +msgid "tDo full file backups over internet" +msgstr "" + +msgid "tMax backup speed for internet connection" +msgstr "" + +msgid "tTotal max backup speed for internet connection" +msgstr "" + +msgid "tEncrypted transfer" +msgstr "" + +msgid "tCompressed transfer" +msgstr "" + +msgid "file_backup" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "days" +msgstr "" + +msgid "weeks" +msgstr "" + +msgid "months" +msgstr "" + +msgid "year" +msgstr "" + +msgid "hour" +msgstr "" + +msgid "day" +msgstr "" + +msgid "week" +msgstr "" + +msgid "month" +msgstr "" + +msgid "years" +msgstr "" + +msgid "min" +msgstr "" + +msgid "mins" +msgstr "" + +msgid "validate_name_archive_every" +msgstr "" + +msgid "validate_name_archive_for" +msgstr "" + +msgid "forever" +msgstr "" + +msgid "backup_in_progress" +msgstr "" + +msgid "really_remove_clients" +msgstr "" + +msgid "no_client_selected" +msgstr "" + +msgid "queued_backup" +msgstr "" + +msgid "starting_backup_failed" +msgstr "" + +msgid "trying_to_stop_backup" +msgstr "" + +msgid "unarchived_in" +msgstr "" + +msgid "validate_err_notregexp_archive_window" +msgstr "" + +msgid "wait_for_archive_window" +msgstr "" + +msgid "validate_err_notregexp_image_letters" +msgstr "" + +msgid "validate_name_global_local_speed" +msgstr "" + +msgid "validate_name_global_internet_speed" +msgstr "" + +msgid "validate_name_local_speed" +msgstr "" + +msgid "validate_name_internet_speed" +msgstr "" + +msgid "enter_clientname" +msgstr "" + +msgid "internet_client_added" +msgstr "" + +msgid "change_pw" +msgstr "" + +msgid "old_pw_wrong" +msgstr "" + +msgid "tID" +msgstr "" + +msgid "tFile" +msgstr "" + +msgid "tSize" +msgstr "" + +msgid "tIncremental" +msgstr "" + +msgid "tLoading" +msgstr "" + +msgid "tStorage usage of" +msgstr "" + +msgid "tDelete domain" +msgstr "" + +msgid "tChange rights for user" +msgstr "" + +msgid "tDomain" +msgstr "" + +msgid "tTranslation" +msgstr "" + +msgid "tNew domain" +msgstr "" + +msgid "tChange" +msgstr "" + +msgid "tChange password for user" +msgstr "" + +msgid "tSaved settings successfully" +msgstr "" + +msgid "tThis client is going to be removed." +msgstr "" + +msgid "tStop removing client" +msgstr "" + +msgid "tFailed" +msgstr "" + +msgid "tSuccessfull" +msgstr "" + +msgid "tInfo" +msgstr "" + +msgid "tError" +msgstr "" + +msgid "tWarning" +msgstr "" + +msgid "tCurrent version" +msgstr "" + +msgid "tTarget version" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "" + +msgid "tNext archival" +msgstr "" + +msgid "tweeks" +msgstr "" + +msgid "tmonth" +msgstr "" + +msgid "tyears" +msgstr "" + +msgid "tforever" +msgstr "" + +msgid "tFile backup" +msgstr "" + +msgid "tIncremental file backup" +msgstr "" + +msgid "tFull file backup" +msgstr "" + +msgid "tEnable internet mode" +msgstr "" + +msgid "tInternet auth key" +msgstr "" + +msgid "tIncremental image backup" +msgstr "" + +msgid "tFull image backup" +msgstr "" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "" + +msgid "tArchived" +msgstr "" + +msgid "nospc_stalled_text" +msgstr "" + +msgid "nospc_fatal_text" +msgstr "" + +msgid "tNondefault temporary file directory" +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/es.po b/urbackupserver/www/translations/urbackup.webinterface/es.po new file mode 100644 index 00000000..139a5f91 --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/es.po @@ -0,0 +1,1128 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:37+0000\n" +"Last-Translator: uroni \n" +"Language-Team: Spanish (http://www.transifex.com/projects/p/urbackup/language/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "action_1" +msgstr "Copia incremental de archivos" + +msgid "action_2" +msgstr "Copia completa de archivos" + +msgid "action_3" +msgstr "Copia imagen incremental" + +msgid "action_4" +msgstr "Copia imagen completa" + +msgid "action_1_d" +msgstr "Eliminando copia incremental de archivos" + +msgid "action_2_d" +msgstr "Eliminando copia completa de archivos" + +msgid "action_3_d" +msgstr "Eliminando copia imagen incremental" + +msgid "action_4_d" +msgstr "Eliminando copia imagen completa" + +msgid "nav_item_6" +msgstr "Estado" + +msgid "nav_item_5" +msgstr "Actividades" + +msgid "nav_item_4" +msgstr "Copias" + +msgid "nav_item_3" +msgstr "Logs" + +msgid "nav_item_2" +msgstr "Estadisticas" + +msgid "nav_item_1" +msgstr "Ajustes" + +msgid "unknown" +msgstr "Desconocido" + +msgid "overview" +msgstr "Introducción" + +msgid "ok" +msgstr "Ok" + +msgid "no_recent_backup" +msgstr "No hay copia reciente" + +msgid "backup_never" +msgstr "Nunca" + +msgid "yes" +msgstr "Si" + +msgid "no" +msgstr "No" + +msgid "tBackup status" +msgstr "Estado de la copia" + +msgid "tComputer name" +msgstr "Equipo" + +msgid "tLast seen" +msgstr "Ultima conexión" + +msgid "tLast file backup" +msgstr "Última copia de archivos" + +msgid "tLast image backup" +msgstr "última copia imagen" + +msgid "tFile backup status" +msgstr "Estado de la copia de archivos" + +msgid "tImage backup status" +msgstr "Estado de la copia imagen" + +msgid "tShow details" +msgstr "Ver detalles" + +msgid "tExtra clients" +msgstr "Clientes extra" + +msgid "tNo extra clients" +msgstr "No hay clientes extra" + +msgid "tActions" +msgstr "Acción" + +msgid "tOnline" +msgstr "Online" + +msgid "tHostname/IP" +msgstr "Nombre/IP" + +msgid "tServer identity" +msgstr "" + +msgid "users" +msgstr "Usuarios" + +msgid "general_settings" +msgstr "General" + +msgid "admin" +msgstr "Administrador" + +msgid "user" +msgstr "Usuario" + +msgid "username_empty" +msgstr "Introduzca un nombre de usuario" + +msgid "password_empty" +msgstr "Introduzca una contraseña" + +msgid "password_differ" +msgstr "Las contraseñas no coinciden" + +msgid "user_n_exist" +msgstr "El usuario no existe" + +msgid "password_wrong" +msgstr "Contraseña incorrecta" + +msgid "user_exists" +msgstr "Ya existe otro usuario con ese nombre" + +msgid "session_timeout" +msgstr "La sesión ha expirado. Por favor, identifíquese de nuevo." + +msgid "really_del_user" +msgstr "¿Seguro que desea eliminar éste usuario?" + +msgid "user_add_done" +msgstr "Nuevo usuario creado." + +msgid "user_remove_done" +msgstr "Usuario eliminado." + +msgid "user_update_right_done" +msgstr "Cambio de privilegios realizado." + +msgid "user_pw_change_ok" +msgstr "Contraseña cambiada." + +msgid "right_all" +msgstr "Todos los accesos" + +msgid "right_none" +msgstr "Ningún acceso" + +msgid "filter" +msgstr "Filtro" + +msgid "all" +msgstr "Todo" + +msgid "loglevel_0" +msgstr "Informativos" + +msgid "loglevel_1" +msgstr "Avisos" + +msgid "loglevel_2" +msgstr "Errores" + +msgid "dir_error_text" +msgstr "No se encuentra la carpeta de copias o no tiene permiso de escritura sobre ella." + +msgid "tmpdir_error_text" +msgstr "No se encuentra la carpeta tempopral o no tiene permiso de escritura sobre ella." + +msgid "starting" +msgstr "Comenzando" + +msgid "ident_err" +msgstr "Servidor rechazado" + +msgid "enter_hostname" +msgstr "Introduzca un nombre de nodo o una dirección IP" + +msgid "clients" +msgstr "Clientes" + +msgid "validate_text_empty" +msgstr "Por favor, introduzca un valor para {name}" + +msgid "validate_text_notint" +msgstr "Por favor, introduzca un valor numérico para {name}" + +msgid "validate_name_update_freq_incr" +msgstr "intervalo para copias incrementales de ficheros" + +msgid "validate_name_update_freq_full" +msgstr "intervalo para copias totales de ficheros" + +msgid "validate_name_update_freq_image_full" +msgstr "invervalo para copias imagen incrementales" + +msgid "validate_name_update_freq_image_incr" +msgstr "invervalo para copias imagen completas" + +msgid "validate_name_max_file_incr" +msgstr "máximo número de copias incrementales de ficheros" + +msgid "validate_name_min_file_incr" +msgstr "mínimo número de copias incrementales de ficheros" + +msgid "validate_name_max_file_full" +msgstr "máximo número de copias completas de ficheros" + +msgid "validate_name_min_file_full" +msgstr "mínimo número de copias completas de ficheros" + +msgid "validate_name_min_image_incr" +msgstr "máximo número de copias imagen incrementales" + +msgid "validate_name_max_image_incr" +msgstr "mínimo número de copias imagen incrementales" + +msgid "validate_name_min_image_full" +msgstr "máximo número de copias imagen completas" + +msgid "validate_name_max_image_full" +msgstr "mínimo número de copias imagen completas" + +msgid "validate_name_startup_backup_delay" +msgstr "espera tras el inicio del sistema" + +msgid "validate_err_notregexp_backup_window" +msgstr "Formato de la ventana de copias erróneo" + +msgid "validate_name_max_active_clients" +msgstr "número máximo de clientes activos recientes" + +msgid "validate_name_max_sim_backups" +msgstr "número máximo de copias simultáneas" + +msgid "validate_name_backupfolder" +msgstr "camino de almacenamiento de copias" + +msgid "validate_name_computername" +msgstr "nombre de equipo" + +msgid "too_many_clients_err" +msgstr "Demasiados clientes" + +msgid "really_remove_client" +msgstr "¿Seguro que desea eliminar éste cliente? Se eliminarán también todas sus copias" + +msgid "computername" +msgstr "Nombre de equipo" + +msgid "storage_usage_pie_graph_title" +msgstr "Uso de almacenamiento" + +msgid "storage_usage_pie_graph_colname1" +msgstr "Nombre de equipo" + +msgid "storage_usage_pie_graph_colname2" +msgstr "Uso de almacenamiento" + +msgid "storage_usage_bar_graph_title" +msgstr "Uso de almacenamiento" + +msgid "storage_usage_bar_graph_colname1" +msgstr "Fecha" + +msgid "storage_usage_bar_graph_colname2" +msgstr "Uso de almacenamiento" + +msgid "tImages" +msgstr "Imagenes" + +msgid "tFiles" +msgstr "Archivos" + +msgid "tSum" +msgstr "Suma" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "Formato de la ventana de limpieza erróneo" + +msgid "mail_settings" +msgstr "Correo-e" + +msgid "upgrade_error_text" +msgstr "UrBackup aktualisiert seine interne Datenbank. Das könnte eine Weile dauern. Während der Aktualisierung ist das Webinterface nicht erreichbar und keine Backups werden durchgeführt." + +msgid "tActivities" +msgstr "Actividades" + +msgid "tAction" +msgstr "Acción" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "Archivos en cola" + +msgid "tLast activities" +msgstr "Últimas actividades" + +msgid "tStarting time" +msgstr "Comienzo" + +msgid "tRequired time" +msgstr "Tiempo requerido" + +msgid "tUsed Storage" +msgstr "Espacio utilizado" + +msgid "tClients" +msgstr "Clientes" + +msgid "tLogs" +msgstr "Logs" + +msgid "tReports" +msgstr "Informes" + +msgid "tSend reports to" +msgstr "Enviar informes a" + +msgid "tSend" +msgstr "Enviar" + +msgid "tBackups with a log message of at least log level" +msgstr "Copias que hayan terminado con un mensaje al menos" + +msgid "tBackup time" +msgstr "Tiempo de copia" + +msgid "tErrors" +msgstr "Errores" + +msgid "tWarnings" +msgstr "Avisos" + +msgid "tStorage allocation" +msgstr "Almacenamiento reservado" + +msgid "tStorage usage" +msgstr "Almacenamiento usado" + +msgid "tAll" +msgstr "Todos" + +msgid "tBackup storage path" +msgstr "Ruta de almacenamiento de las copias" + +msgid "tDo not do image backups" +msgstr "No haga copiaas imagen" + +msgid "tDo not do file backups" +msgstr "No hacer copia de ficheros" + +msgid "tAutomatically shut down server" +msgstr "Apague automáticamente el servidor" + +msgid "tAutoupdate clients" +msgstr "Actualizar los clientes automáticamente" + +msgid "tMax number of simultaneous backups" +msgstr "Número máximo de copias simultáneas" + +msgid "tMax number of recently active clients" +msgstr "Número máximo de clientes activos recientemente" + +msgid "tCleanup time window" +msgstr "" + +msgid "tAutomatically backup UrBackup database" +msgstr "Copiar automáticamente la base de datos de UrBackup" + +msgid "tInterval for incremental file backups" +msgstr "Intervalo para las copias incrementales de archivos" + +msgid "tInterval for full file backups" +msgstr "Intervalo para las copias continuas de archivos" + +msgid "tInterval for incremental image backups" +msgstr "Intervalo para las copias imagen incrementales" + +msgid "tInterval for full image backups" +msgstr "Intervalo para las copias imagen completas" + +msgid "tMaximal number of incremental file backups" +msgstr "Máximo número de copias incrementales de archivos" + +msgid "tMinimal number of incremental file backups" +msgstr "Mínimo número de copias incrementales de archivos" + +msgid "tMaximal number of full file backups" +msgstr "Máximo número de copias totales de archivos" + +msgid "tMinimal number of full file backups" +msgstr "Mínimo número de copias totales de archivos" + +msgid "tMaximal number of incremental image backups" +msgstr "Maximo número de copias imagen incrementales" + +msgid "tMinimal number of incremental image backups" +msgstr "Mínimo número de copias imagen incrementales" + +msgid "tMaximal number of full image backups" +msgstr "Maximo número de copias imagen completas" + +msgid "tMinimal number of full image backups" +msgstr "Mínimo número de copias imagen completas" + +msgid "tDelay after system startup" +msgstr "Espera desde el inicio del sistema" + +msgid "tBackup window" +msgstr "Ventana de backup" + +msgid "tExcluded files (with wildcards)" +msgstr "Archivos excluidos (admite comodines)" + +msgid "tIncluded files (with wildcards)" +msgstr "Archivos incluidos (admite comodines)" + +msgid "tDefault directories to backup" +msgstr "Carpetas a copiar por defecto:" + +msgid "tVolumes to backup" +msgstr "Volúmenes a copiar" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "Permitir al cliente cambiar la carpeta a copiar" + +msgid "tAllow client-side starting of file backups" +msgstr "Permitir al cliente comenzar una copia de ficheros" + +msgid "tAllow client-side starting of image backups" +msgstr "Permitir al cliente comenzar una copia imagen" + +msgid "tAllow client-side viewing of backup logs" +msgstr "Permitir al cliente ver los logs de copia" + +msgid "tAllow client-side pausing of backups" +msgstr "Permitir al cliente pausar una copia" + +msgid "tAllow client-side changing of settings" +msgstr "Permitir la configuración de la copia desde el cliente" + +msgid "tdays" +msgstr "Días" + +msgid "thours" +msgstr "Horas" + +msgid "tmin" +msgstr "min" + +msgid "tMail server name" +msgstr "Servidor de correo/IP" + +msgid "tMail server port" +msgstr "Puerto del servidor de correo" + +msgid "tMail server username (empty for none)" +msgstr "Usuario (puede estar vacío)" + +msgid "tMail server password" +msgstr "Contraseña" + +msgid "tSender E-Mail Address" +msgstr "Correo del emisor" + +msgid "tSend mails only with SSL/TLS" +msgstr "Enviar correos sólo con conexión SSL/TLS" + +msgid "tCheck SSL/TLS certificate" +msgstr "Comprobar el certificado SSL/TLS" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "Enviar un mensaje de prueba al siguiente correo (si no quiere enviar una prueba, deje el campo vacío)" + +msgid "tTest Mail sent successfully" +msgstr "Mensaje de prueba enviado correctamente" + +msgid "tSending test mail failed. Error:" +msgstr "No se ha popdido enviar el mensaje de prueba. Error:" + +msgid "tFilter" +msgstr "Filtro" + +msgid "tBack" +msgstr "Atrás" + +msgid "tAdd" +msgstr "Añadir" + +msgid "tRemove" +msgstr "Eliminar" + +msgid "tSave" +msgstr "Guardar" + +msgid "tLevel" +msgstr "Nivel" + +msgid "tTime" +msgstr "Hora" + +msgid "tMessage" +msgstr "Mensaje" + +msgid "tLog" +msgstr "Log" + +msgid "tUsername" +msgstr "Usuario" + +msgid "tRights" +msgstr "Permisos" + +msgid "tNo Users" +msgstr "Sin usuarios" + +msgid "tCreate user" +msgstr "Crear usuario" + +msgid "tPassword" +msgstr "Contraseña" + +msgid "tRepeat password" +msgstr "confirme la contraseña" + +msgid "tRights for" +msgstr "Derechos para" + +msgid "tAbort" +msgstr "Cancelar" + +msgid "tCreate" +msgstr "Crear" + +msgid "tChange rights" +msgstr "Cambiar permisos" + +msgid "tChange password" +msgstr "Cambiar contraseña" + +msgid "tLogin" +msgstr "Acceso" + +msgid "tInfos" +msgstr "Información" + +msgid "tSeparate settings for this client" +msgstr "Configuración especial para este cliente" + +msgid "tServer" +msgstr "Servidor" + +msgid "tFile backups" +msgstr "Copias de archivos" + +msgid "tImage backups" +msgstr "Copias Imagen" + +msgid "tPermissions" +msgstr "Permisos" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "Archivar" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "Actualizaciones automáticas silenciosas" + +msgid "tMax backup speed for local network" +msgstr "Velocidad máxima de copia para archivos en la red local" + +msgid "tNo activities" +msgstr "Sin actividad" + +msgid "tSelect all" +msgstr "Seleccionar todo" + +msgid "tSelect none" +msgstr "Deseleccionar todo" + +msgid "tRemove selected" +msgstr "Eliminar seleccionados" + +msgid "tStart for selected" +msgstr "Comenzar en los seleccionados" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "No hay entradas para este filtro" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "Velocidad máxima de backup en la red local" + +msgid "tArchive every" +msgstr "Archivar cada" + +msgid "tArchive for" +msgstr "Archivar durante" + +msgid "tArchive window" +msgstr "Ventana de archivo" + +msgid "tBackup type" +msgstr "Tipo de copia" + +msgid "tEnable internet mode (requires server restart)" +msgstr "Activar la copia por internet (requiere reinicio)" + +msgid "tInternet server name/IP" +msgstr "Servidor internet/IP" + +msgid "tInternet server port" +msgstr "Puerto de internet" + +msgid "tDo image backups over internet" +msgstr "Permitir copias Imagen por internet" + +msgid "tDo full file backups over internet" +msgstr "Peermitir copias totales de ficheros por Internet" + +msgid "tMax backup speed for internet connection" +msgstr "Velocidad máxima de backup a través de internet" + +msgid "tTotal max backup speed for internet connection" +msgstr "Velocidad máxima total de backup a través de internet" + +msgid "tEncrypted transfer" +msgstr "Transferencia encriptada" + +msgid "tCompressed transfer" +msgstr "Transferencias comprimidas" + +msgid "file_backup" +msgstr "Copia de ficheros" + +msgid "hours" +msgstr "horas" + +msgid "days" +msgstr "días" + +msgid "weeks" +msgstr "semanas" + +msgid "months" +msgstr "meses" + +msgid "year" +msgstr "año" + +msgid "hour" +msgstr "hora" + +msgid "day" +msgstr "día" + +msgid "week" +msgstr "semana" + +msgid "month" +msgstr "mes" + +msgid "years" +msgstr "años" + +msgid "min" +msgstr "minuto" + +msgid "mins" +msgstr "minutos" + +msgid "validate_name_archive_every" +msgstr "Archivar cada" + +msgid "validate_name_archive_for" +msgstr "Archive durante" + +msgid "forever" +msgstr "siempre" + +msgid "backup_in_progress" +msgstr "Copiando ahora..." + +msgid "really_remove_clients" +msgstr "¿Seguro que quiere eliminar estos clientes? Se eliminarán todas sus copias" + +msgid "no_client_selected" +msgstr "No se ha seleccionado ningún cliente" + +msgid "queued_backup" +msgstr "Copia encolada" + +msgid "starting_backup_failed" +msgstr "Arranque de copia fallido" + +msgid "trying_to_stop_backup" +msgstr "Tratando de parar la copia. Esto puede llevar cierto tiempo." + +msgid "unarchived_in" +msgstr "Parará el archivado en " + +msgid "validate_err_notregexp_archive_window" +msgstr "Formato de ventana de archivado errónea" + +msgid "wait_for_archive_window" +msgstr "Esperando para ventana/siguiente ejecución" + +msgid "validate_err_notregexp_image_letters" +msgstr "Formato de letras para imagen errónea" + +msgid "validate_name_global_local_speed" +msgstr "velocidad máxima total para copias por la red local" + +msgid "validate_name_global_internet_speed" +msgstr "velocidad máxima total para copias por internet" + +msgid "validate_name_local_speed" +msgstr "velocidad máxima para copias por red local" + +msgid "validate_name_internet_speed" +msgstr "velocidad máxima total para copias por internet" + +msgid "enter_clientname" +msgstr "Introduzca un nombre de cliente" + +msgid "internet_client_added" +msgstr "Nuevo cliente añadido. Puede obtener su clave de autorización o contraseña en los ajustes." + +msgid "change_pw" +msgstr "Cambiar contraseña" + +msgid "old_pw_wrong" +msgstr "LA contraseña actual es errónea" + +msgid "tID" +msgstr "ID" + +msgid "tFile" +msgstr "Archivo" + +msgid "tSize" +msgstr "Tamaño" + +msgid "tIncremental" +msgstr "Incremental" + +msgid "tLoading" +msgstr "Cargando" + +msgid "tStorage usage of" +msgstr "Almacenamiento utilizado por" + +msgid "tDelete domain" +msgstr "Eliminar dominio" + +msgid "tChange rights for user" +msgstr "Cambiar permisos al usuario:" + +msgid "tDomain" +msgstr "Dominio" + +msgid "tTranslation" +msgstr "Traducción" + +msgid "tNew domain" +msgstr "Nuevo Dominio" + +msgid "tChange" +msgstr "Cambiar" + +msgid "tChange password for user" +msgstr "Cambiar contraseña del usuario:" + +msgid "tSaved settings successfully" +msgstr "Configuración guardada correctamente" + +msgid "tThis client is going to be removed." +msgstr "Este cliente va a ser eliminado." + +msgid "tStop removing client" +msgstr "No eliminar" + +msgid "tFailed" +msgstr "Fallido" + +msgid "tSuccessfull" +msgstr "Realizado" + +msgid "tInfo" +msgstr "Info" + +msgid "tError" +msgstr "Error" + +msgid "tWarning" +msgstr "Aviso" + +msgid "tCurrent version" +msgstr "Versión actual" + +msgid "tTarget version" +msgstr "Versión objetivo" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "¡Atención!: si el cliente hace cambios en su equio, prevalecerán sobre esta configuración. Puede prohibir al cliente hacer cambios." + +msgid "tNext archival" +msgstr "Siguiente archivado" + +msgid "tweeks" +msgstr "Semanas" + +msgid "tmonth" +msgstr "Meses" + +msgid "tyears" +msgstr "Años" + +msgid "tforever" +msgstr "Para siempre" + +msgid "tFile backup" +msgstr "Copia de ficheros" + +msgid "tIncremental file backup" +msgstr "Copia incremental de ficheros" + +msgid "tFull file backup" +msgstr "Copia total de ficheros" + +msgid "tEnable internet mode" +msgstr "Activar modo Internet" + +msgid "tInternet auth key" +msgstr "Clave de copia por Internet" + +msgid "tIncremental image backup" +msgstr "Copia imagen incremental" + +msgid "tFull image backup" +msgstr "Copia imagen completa" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "Los Clientes serán eliminados durante la ventana de limpieza." + +msgid "tArchived" +msgstr "Archivado" + +msgid "nospc_stalled_text" +msgstr "" + +msgid "nospc_fatal_text" +msgstr "" + +msgid "tNondefault temporary file directory" +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/fa_IR.po b/urbackupserver/www/translations/urbackup.webinterface/fa_IR.po new file mode 100644 index 00000000..37d9b066 --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/fa_IR.po @@ -0,0 +1,1128 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:38+0000\n" +"Last-Translator: uroni \n" +"Language-Team: Persian (Iran) (http://www.transifex.com/projects/p/urbackup/language/fa_IR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa_IR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "action_1" +msgstr "پشتیبان گیری افزایشی فایل" + +msgid "action_2" +msgstr "پشتیبان گیری کامل فایل" + +msgid "action_3" +msgstr "پشتیبان گیری افزایشی تصویر" + +msgid "action_4" +msgstr "پشتیبان گیری کامل تصویر" + +msgid "action_1_d" +msgstr "حذف پشتیبان گیری افزایشی فایل" + +msgid "action_2_d" +msgstr "حذف پشتیبان گیری کامل فایل" + +msgid "action_3_d" +msgstr "حذف پشتیبان گیری افزایشی تصویر" + +msgid "action_4_d" +msgstr "حذف پشتیبان گیری کامل تصویر" + +msgid "nav_item_6" +msgstr "وضعیت" + +msgid "nav_item_5" +msgstr "عملیات" + +msgid "nav_item_4" +msgstr "پشتیبان گیری ها" + +msgid "nav_item_3" +msgstr "لاگ ها" + +msgid "nav_item_2" +msgstr "ارقام" + +msgid "nav_item_1" +msgstr "تنظیمات" + +msgid "unknown" +msgstr "ناشناخته" + +msgid "overview" +msgstr "بازبینی" + +msgid "ok" +msgstr "تایید" + +msgid "no_recent_backup" +msgstr "بدون پشتیبان گیری" + +msgid "backup_never" +msgstr "هرگز" + +msgid "yes" +msgstr "بله" + +msgid "no" +msgstr "خیر" + +msgid "tBackup status" +msgstr "وضعیت پشتیبان گیری" + +msgid "tComputer name" +msgstr "نام کامپیوتر" + +msgid "tLast seen" +msgstr "آخرین دیدار" + +msgid "tLast file backup" +msgstr "آخرین پشتیبان گیری فایل" + +msgid "tLast image backup" +msgstr "آخرین پشتیبان گیری تصویر" + +msgid "tFile backup status" +msgstr "وضعیت پشتیبان گیری فایل" + +msgid "tImage backup status" +msgstr "وضعیت پشتیبان گیری تصویر" + +msgid "tShow details" +msgstr "نمایش جزییات" + +msgid "tExtra clients" +msgstr "مشتریان اضافی" + +msgid "tNo extra clients" +msgstr "بدون مشتریان اضافی" + +msgid "tActions" +msgstr "فعالیت ها" + +msgid "tOnline" +msgstr "برخط" + +msgid "tHostname/IP" +msgstr "IP/نام" + +msgid "tServer identity" +msgstr "هویت سرور" + +msgid "users" +msgstr "کاربران" + +msgid "general_settings" +msgstr "تنظیمات عمومی" + +msgid "admin" +msgstr "مدیر" + +msgid "user" +msgstr "کاربر" + +msgid "username_empty" +msgstr "لطفا نام کاربری را وارد کنید" + +msgid "password_empty" +msgstr "لطفا کلمه عبور را وارد کنید" + +msgid "password_differ" +msgstr "کلمات عبور متفاوت هستند" + +msgid "user_n_exist" +msgstr "کاربر وجود ندارد" + +msgid "password_wrong" +msgstr "کلمه عبور اشتباه است" + +msgid "user_exists" +msgstr "کاربری با این نام از قبل وجود دارد" + +msgid "session_timeout" +msgstr "با توجه به عدم فعالیت، شما باید مجدد وارد شوید" + +msgid "really_del_user" +msgstr "از حذف کاربر مطمئن هستید؟" + +msgid "user_add_done" +msgstr "کاربر جدید با موفقیت اضافه شد" + +msgid "user_remove_done" +msgstr "کاربر با موفقیت حذف شد" + +msgid "user_update_right_done" +msgstr "کاربر با موفقیت به روز شد" + +msgid "user_pw_change_ok" +msgstr "کلمه عبور با موفقیت تغییر کرد" + +msgid "right_all" +msgstr "تمام حقوق" + +msgid "right_none" +msgstr "بدون حقوق" + +msgid "filter" +msgstr "فیلتر" + +msgid "all" +msgstr "همه" + +msgid "loglevel_0" +msgstr "اطلاعات" + +msgid "loglevel_1" +msgstr "هشدار" + +msgid "loglevel_2" +msgstr "خطا" + +msgid "dir_error_text" +msgstr "دایرکتوری ذخیره پشتیبان ها در دسترس نیست.لطفا تنظیمات دایرکتوری را تغییر داده و یا حقوق دسترسی برنامه را عوض کنید" + +msgid "tmpdir_error_text" +msgstr "دایرکتوری ذخیره فایل های موقت در دسترس نیست.لطفا تنظیمات دایرکتوری را تغییر داده و یا حقوق دسترسی برنامه را عوض کنید" + +msgid "starting" +msgstr "شروع" + +msgid "ident_err" +msgstr "سرور رد کرد" + +msgid "enter_hostname" +msgstr "را وارد کنید IP لطفا نام میزبان و یا" + +msgid "clients" +msgstr "مشتریان" + +msgid "validate_text_empty" +msgstr "Please enter a value for # {name}" + +msgid "validate_text_notint" +msgstr "Please enter a numeric value for # {name}" + +msgid "validate_name_update_freq_incr" +msgstr "بازه پشتیبان گیری افزایشی فایل" + +msgid "validate_name_update_freq_full" +msgstr "بازه پشتیبان گیری کامل فایل" + +msgid "validate_name_update_freq_image_full" +msgstr "بازه پشتیبان گیری کامل تصویر" + +msgid "validate_name_update_freq_image_incr" +msgstr "بازه پشتیبان گیری افزایشی تصویر" + +msgid "validate_name_max_file_incr" +msgstr "بیشترین تعداد پشتیبان گیری افزایشی فایل" + +msgid "validate_name_min_file_incr" +msgstr "کمترین تعداد پشتیبان گیری افزایشی فایل" + +msgid "validate_name_max_file_full" +msgstr "بیشترین تعداد پشتیبان گیری کامل فایل" + +msgid "validate_name_min_file_full" +msgstr "کمترین تعداد پشتیبان گیری کامل فایل" + +msgid "validate_name_min_image_incr" +msgstr "کمترین تعداد پشتیبان گیری افزایشی تصویر" + +msgid "validate_name_max_image_incr" +msgstr "بیشترین تعداد پشتیبان گیری افزایشی تصویر" + +msgid "validate_name_min_image_full" +msgstr "کمترین تعداد پشتیبان گیری کامل تصویر" + +msgid "validate_name_max_image_full" +msgstr "بیشترین تعداد پشتیبان گیری کامل تصویر" + +msgid "validate_name_startup_backup_delay" +msgstr "تاخیر در راه اندازی سیستم" + +msgid "validate_err_notregexp_backup_window" +msgstr "فرمت اشتباه" + +msgid "validate_name_max_active_clients" +msgstr "بیشترین تعداد مشتریان فعال" + +msgid "validate_name_max_sim_backups" +msgstr "بیشترین تعداد پشتیبان گیری همزمان" + +msgid "validate_name_backupfolder" +msgstr "نام فولدر پشتیبان گیری" + +msgid "validate_name_computername" +msgstr "نام کامپیوتر" + +msgid "too_many_clients_err" +msgstr "تعداد مشتریان بیش از حد مجاز است" + +msgid "really_remove_client" +msgstr "آیا از حذف این مشتری مطمئن هستید؟ با حذف آن تمام فایل ها و تصاویر پشتیبان مربوط به آن حذف میشوند" + +msgid "computername" +msgstr "" + +msgid "storage_usage_pie_graph_title" +msgstr "استفاده از فضا" + +msgid "storage_usage_pie_graph_colname1" +msgstr "نام کامپیوتر" + +msgid "storage_usage_pie_graph_colname2" +msgstr "استفاده از فضا" + +msgid "storage_usage_bar_graph_title" +msgstr "تاریخچه استفاده از فضا" + +msgid "storage_usage_bar_graph_colname1" +msgstr "تاریخ" + +msgid "storage_usage_bar_graph_colname2" +msgstr "استفاده از فضا" + +msgid "tImages" +msgstr "تصاویر" + +msgid "tFiles" +msgstr "فایل ها" + +msgid "tSum" +msgstr "مجموع" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "فرمت پنجره زمان پاکسازی اشتباه است" + +msgid "mail_settings" +msgstr "ایمیل" + +msgid "upgrade_error_text" +msgstr "دیتابیس برنامه داخلی است به همین دلیل ارتقا کمی طول میکشد. در حین ارتقا رابط کاربری برنامه غیرفعال بوده و هیچ پشتیبان گیری انجام نمیشود" + +msgid "tActivities" +msgstr "فعالیت ها" + +msgid "tAction" +msgstr "عملیات" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "فایل های در صف" + +msgid "tLast activities" +msgstr "فعالیت های اخیر" + +msgid "tStarting time" +msgstr "زمان شروع" + +msgid "tRequired time" +msgstr "زمان درخواستی" + +msgid "tUsed Storage" +msgstr "فضای استفاده شده" + +msgid "tClients" +msgstr "مشتریان" + +msgid "tLogs" +msgstr "لاگ ها" + +msgid "tReports" +msgstr "گزارش ها" + +msgid "tSend reports to" +msgstr "ارسال گزارش ها برای" + +msgid "tSend" +msgstr "ارسال" + +msgid "tBackups with a log message of at least log level" +msgstr "پشتیبان گیری با پیام لاگ از کمترین سطح" + +msgid "tBackup time" +msgstr "زمان پشتیبان گیری" + +msgid "tErrors" +msgstr "خطا" + +msgid "tWarnings" +msgstr "هشدار" + +msgid "tStorage allocation" +msgstr "تخصیص فضا" + +msgid "tStorage usage" +msgstr "مصرف حافظه" + +msgid "tAll" +msgstr "همه" + +msgid "tBackup storage path" +msgstr "مسیر پشتیبان گیری" + +msgid "tDo not do image backups" +msgstr "پشتیبان گیری تصویر وجود ندارد" + +msgid "tDo not do file backups" +msgstr "پشتیبان گیری فایل اجرا نشود" + +msgid "tAutomatically shut down server" +msgstr "خاموش کردن سرور به صورت خودکار" + +msgid "tAutoupdate clients" +msgstr "به روزرسانی خودکار مشتریان" + +msgid "tMax number of simultaneous backups" +msgstr "بیشترین تعداد پشتیبان گیری همزمان" + +msgid "tMax number of recently active clients" +msgstr "بیشترین تعداد مشتریان فعال" + +msgid "tCleanup time window" +msgstr "پنجره زمان پاکسازی" + +msgid "tAutomatically backup UrBackup database" +msgstr "بانک اطلاعاتی پشتیبان گیری خودکار برنامه" + +msgid "tInterval for incremental file backups" +msgstr "بازه پشتیبان گیری افزایشی فایل" + +msgid "tInterval for full file backups" +msgstr "بازه پشتیبان گیری کامل فایل" + +msgid "tInterval for incremental image backups" +msgstr "بازه پشتیبان گیری افزایشی تصویر" + +msgid "tInterval for full image backups" +msgstr "بازه پشتیبان گیری کامل تصویر" + +msgid "tMaximal number of incremental file backups" +msgstr "بیشترین تعداد پشتیبان گیری افزایشی فایل" + +msgid "tMinimal number of incremental file backups" +msgstr "کمترین تعداد پشتیبان گیری افزایشی فایل" + +msgid "tMaximal number of full file backups" +msgstr "بیشترین تعداد پشتیبان گیری کامل فایل" + +msgid "tMinimal number of full file backups" +msgstr "کمترین تعداد پشتیبان گیری کامل فایل" + +msgid "tMaximal number of incremental image backups" +msgstr "بیشترین تعداد پشتیبان گیری افزایشی تصویر" + +msgid "tMinimal number of incremental image backups" +msgstr "کمترین تعداد پشتیبان گیری افزایشی تصویر" + +msgid "tMaximal number of full image backups" +msgstr "بیشترین تعداد پشتیبان گیری کامل تصویر" + +msgid "tMinimal number of full image backups" +msgstr "کمترین تعداد پشتیبان گیری کامل تصویر" + +msgid "tDelay after system startup" +msgstr "تاخیر در راه اندازی سیستم" + +msgid "tBackup window" +msgstr "پنجره پشتیبان گیری" + +msgid "tExcluded files (with wildcards)" +msgstr "(Wildcardsفایل های محروم (با" + +msgid "tIncluded files (with wildcards)" +msgstr "(Wildcardsفایل های مشمول (با" + +msgid "tDefault directories to backup" +msgstr "دایرکتوری پیش فرض برای پشتیبان گیری" + +msgid "tVolumes to backup" +msgstr "مقدار پشتیبان گیری" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "به مشتریان مجوز تغییر دایرکتوری پشتیبان گیری را بده" + +msgid "tAllow client-side starting of file backups" +msgstr "به مشتریان مجوز شروع پشتیبان گیری فایل را میدهد" + +msgid "tAllow client-side starting of image backups" +msgstr "به مشتریان مجوز شروع پشتیبان گیری تصویر را میدهد" + +msgid "tAllow client-side viewing of backup logs" +msgstr "به مشتریان مجوز مشاهده لاگ پشتیبان گیری را میدهد" + +msgid "tAllow client-side pausing of backups" +msgstr "به مشتریان مجوز توقف پشتیبان گیری را میدهد" + +msgid "tAllow client-side changing of settings" +msgstr "به مشتریان اجازه تغییر تنظیمات را میدهد" + +msgid "tdays" +msgstr "روزها" + +msgid "thours" +msgstr "ساعات" + +msgid "tmin" +msgstr "دقیقه" + +msgid "tMail server name" +msgstr "نام سرور ایمیل" + +msgid "tMail server port" +msgstr "پورت سرور ایمیل" + +msgid "tMail server username (empty for none)" +msgstr "(نام کاربری سرور ایمیل (برای هیچ خالی بگذارید" + +msgid "tMail server password" +msgstr "کلمه عبور سرور ایمیل" + +msgid "tSender E-Mail Address" +msgstr "آدرس فرستنده ایمیل" + +msgid "tSend mails only with SSL/TLS" +msgstr "ارسال کن SSL/TLSایمیل ها را تنها با " + +msgid "tCheck SSL/TLS certificate" +msgstr "SSL/TLS بررسی اعتبار" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "پس از ذخیره تنظیمات یک ایمیل آزمایشی به این آدرس ارسال کن" + +msgid "tTest Mail sent successfully" +msgstr "ایمیل آزمایشی با موفقیت ارسال شد" + +msgid "tSending test mail failed. Error:" +msgstr "ارسال ایمیل آزمایشی شکست خورد" + +msgid "tFilter" +msgstr "فیلتر" + +msgid "tBack" +msgstr "بازگشت" + +msgid "tAdd" +msgstr "افزودن" + +msgid "tRemove" +msgstr "برداشتن" + +msgid "tSave" +msgstr "ذخیره" + +msgid "tLevel" +msgstr "مرحله" + +msgid "tTime" +msgstr "زمان" + +msgid "tMessage" +msgstr "پیام" + +msgid "tLog" +msgstr "لاگ" + +msgid "tUsername" +msgstr "نام کاربری" + +msgid "tRights" +msgstr "حقوق" + +msgid "tNo Users" +msgstr "هیچ کاربری" + +msgid "tCreate user" +msgstr "ایجاد کاربر" + +msgid "tPassword" +msgstr "کلمه عبور" + +msgid "tRepeat password" +msgstr "کلمه عبور را تکرار کنید" + +msgid "tRights for" +msgstr "حقوق برای" + +msgid "tAbort" +msgstr "لغو" + +msgid "tCreate" +msgstr "ایجاد" + +msgid "tChange rights" +msgstr "تغییر حقوق" + +msgid "tChange password" +msgstr "تفییر کلمه عبور" + +msgid "tLogin" +msgstr "ورود" + +msgid "tInfos" +msgstr "اطلاعات" + +msgid "tSeparate settings for this client" +msgstr "تنظیمات جداگانه برای این مشتری" + +msgid "tServer" +msgstr "سرور" + +msgid "tFile backups" +msgstr "پشتیبان گیری فایل" + +msgid "tImage backups" +msgstr "پشتیبان گیری تصویر" + +msgid "tPermissions" +msgstr "مجوز" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "بایگانی" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "انجام به روز رسانی خودکار در پس زمینه" + +msgid "tMax backup speed for local network" +msgstr "بیشترین سرعت اتصال به شبکه محلی" + +msgid "tNo activities" +msgstr "بدون فعالیت" + +msgid "tSelect all" +msgstr "انتخاب همه" + +msgid "tSelect none" +msgstr "انتخاب هیچ کدام" + +msgid "tRemove selected" +msgstr "برداشتن انتخاب شدگان" + +msgid "tStart for selected" +msgstr "شروغ انتخاب شوندگان" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "چیزی مطابق با معیارهای این فیلتر وجود ندارد" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "حداکثر سرعت کلی شبکه محلی" + +msgid "tArchive every" +msgstr "بایگانی در هر" + +msgid "tArchive for" +msgstr "بایگانی برای" + +msgid "tArchive window" +msgstr "پنجره بایگانی" + +msgid "tBackup type" +msgstr "نوع پشتیبان گیری" + +msgid "tEnable internet mode (requires server restart)" +msgstr "(فعال سازی حالت اینترنت (سرور باید ریست شود" + +msgid "tInternet server name/IP" +msgstr "نام سرور اینترنت" + +msgid "tInternet server port" +msgstr "پورت اینترنت" + +msgid "tDo image backups over internet" +msgstr "انجام پشتیبان گیری تصویر بر روی اینترنت" + +msgid "tDo full file backups over internet" +msgstr "انجام پشتیبان گیری فایل بر روی اینترنت" + +msgid "tMax backup speed for internet connection" +msgstr "بیشترین سرعت اتصال به اینترنت" + +msgid "tTotal max backup speed for internet connection" +msgstr "حداکثر سرعت کلی اینترنت" + +msgid "tEncrypted transfer" +msgstr "رمزنگاری انتقال" + +msgid "tCompressed transfer" +msgstr "انتقال فشرده" + +msgid "file_backup" +msgstr "" + +msgid "hours" +msgstr "ساعات" + +msgid "days" +msgstr "روزها" + +msgid "weeks" +msgstr "هفته ها" + +msgid "months" +msgstr "ماه ها" + +msgid "year" +msgstr "سال" + +msgid "hour" +msgstr "ساعت" + +msgid "day" +msgstr "روز" + +msgid "week" +msgstr "هفته" + +msgid "month" +msgstr "ماه" + +msgid "years" +msgstr "سال ها" + +msgid "min" +msgstr "دقیقه" + +msgid "mins" +msgstr "دقایق" + +msgid "validate_name_archive_every" +msgstr "بایگانی" + +msgid "validate_name_archive_for" +msgstr "بایگانی برای" + +msgid "forever" +msgstr "همیشه" + +msgid "backup_in_progress" +msgstr "در حال پشتیبان گیری" + +msgid "really_remove_clients" +msgstr "آیا از حذف این مشتری مطمئن هستید؟ با این کار تمام فایل ها و تصاویر پشتیبان مربوط به او حذف میشوند" + +msgid "no_client_selected" +msgstr "مشتری انتخاب نشده است" + +msgid "queued_backup" +msgstr "پشتیبان گیری در صف" + +msgid "starting_backup_failed" +msgstr "پشتیبان گیری شروع نشد" + +msgid "trying_to_stop_backup" +msgstr "پشتیبان گیری را متوقف کنید" + +msgid "unarchived_in" +msgstr "بایگانی نشده در" + +msgid "validate_err_notregexp_archive_window" +msgstr "فرمت اشتباه برای پنجره بایگانی" + +msgid "wait_for_archive_window" +msgstr "در انتظار پنجره بایگانی" + +msgid "validate_err_notregexp_image_letters" +msgstr "فرمت نام حجم اشتباه است" + +msgid "validate_name_global_local_speed" +msgstr "سرعت اتصال به شبکه محلی" + +msgid "validate_name_global_internet_speed" +msgstr "سرعت اتصال به اینترنت" + +msgid "validate_name_local_speed" +msgstr "بیشترین سرعت اتصال به شبکه محلی" + +msgid "validate_name_internet_speed" +msgstr "بیشترین سرعت اتصال به اینترن" + +msgid "enter_clientname" +msgstr "نام مشتری را وارد کنید" + +msgid "internet_client_added" +msgstr "مشتری اضافه شد. برای تغییر کلمه عبور به بخش تنظیمات بروید" + +msgid "change_pw" +msgstr "تغییر کلمه عبور" + +msgid "old_pw_wrong" +msgstr "کلمه عبور قبلی اشتباه است" + +msgid "tID" +msgstr "شناسه" + +msgid "tFile" +msgstr "فایل" + +msgid "tSize" +msgstr "حجم" + +msgid "tIncremental" +msgstr "افزایشی" + +msgid "tLoading" +msgstr "بارگیری" + +msgid "tStorage usage of" +msgstr "فضای استفاده شده از" + +msgid "tDelete domain" +msgstr "حذف دامین" + +msgid "tChange rights for user" +msgstr "تغییر حقوق برای کاربر" + +msgid "tDomain" +msgstr "دامین" + +msgid "tTranslation" +msgstr "ترجمه" + +msgid "tNew domain" +msgstr "دامین جدید" + +msgid "tChange" +msgstr "تغییر" + +msgid "tChange password for user" +msgstr "تغییر کلمه عبور برای کاربر" + +msgid "tSaved settings successfully" +msgstr "تنظیمات با موفقیت ذخیره شدند" + +msgid "tThis client is going to be removed." +msgstr "این مشتری برداشته میشوند" + +msgid "tStop removing client" +msgstr "توقف برداشتن مشتری" + +msgid "tFailed" +msgstr "ناموفق" + +msgid "tSuccessfull" +msgstr "موفق" + +msgid "tInfo" +msgstr "اطلاعات" + +msgid "tError" +msgstr "خطا" + +msgid "tWarning" +msgstr "هشدار" + +msgid "tCurrent version" +msgstr "نسخه فعلی" + +msgid "tTarget version" +msgstr "نسخه هدف" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "هشدار : تنظیمات مشتری بر تنظیماتی که اینجا انجام میشود تاثیر میگذرد. اگر نمیخواهید این اتفاق افتد مجوز تغییر تنظیمات کاربر را لغو کنید" + +msgid "tNext archival" +msgstr "بایگانی بعدی" + +msgid "tweeks" +msgstr "هفته ها" + +msgid "tmonth" +msgstr "ماه" + +msgid "tyears" +msgstr "سال ها" + +msgid "tforever" +msgstr "همیشه" + +msgid "tFile backup" +msgstr "فایل پشتیبان" + +msgid "tIncremental file backup" +msgstr "فایل پشتیبان افزایشی" + +msgid "tFull file backup" +msgstr "فایل پشتیبان کامل" + +msgid "tEnable internet mode" +msgstr "فعال سازی حالت اینترنت" + +msgid "tInternet auth key" +msgstr "اینترنت کلیدی" + +msgid "tIncremental image backup" +msgstr "پشتیبان گیری افزایشی تصویر" + +msgid "tFull image backup" +msgstr "پشتیبان گیری کامل تصویر" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "مشتریان در حین پاکسازی اگر آفلاین باشند حذف میشوند" + +msgid "tArchived" +msgstr "بایگانی شده" + +msgid "nospc_stalled_text" +msgstr "فضای لازم برای پشتیبان گیری وجود ندارد.برنامه فایل ها و تصاویر پشتیبان قدیمی را حذف میکند." + +msgid "nospc_fatal_text" +msgstr "فضای لازم برای پشتیبان گیری وجود ندارد.برنامه فایل ها و تصاویر پشتیبان قدیمی را حذف میکند. ولی همچنان فضا کم است. لطفا در بخش تنظیمات فضای بیشتری به پشتیبان گیری اختصاص دهید." + +msgid "tNondefault temporary file directory" +msgstr "دایرکتوری پیش فرضی برای فایل های موقت وجود ندارد" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "درباره برنامه" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/fi.po b/urbackupserver/www/translations/urbackup.webinterface/fi.po new file mode 100644 index 00000000..86df8d15 --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/fi.po @@ -0,0 +1,1127 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:33+0000\n" +"Language-Team: Finnish (http://www.transifex.com/projects/p/urbackup/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "action_1" +msgstr "" + +msgid "action_2" +msgstr "" + +msgid "action_3" +msgstr "" + +msgid "action_4" +msgstr "" + +msgid "action_1_d" +msgstr "" + +msgid "action_2_d" +msgstr "" + +msgid "action_3_d" +msgstr "" + +msgid "action_4_d" +msgstr "" + +msgid "nav_item_6" +msgstr "" + +msgid "nav_item_5" +msgstr "" + +msgid "nav_item_4" +msgstr "" + +msgid "nav_item_3" +msgstr "" + +msgid "nav_item_2" +msgstr "" + +msgid "nav_item_1" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "overview" +msgstr "" + +msgid "ok" +msgstr "" + +msgid "no_recent_backup" +msgstr "" + +msgid "backup_never" +msgstr "" + +msgid "yes" +msgstr "" + +msgid "no" +msgstr "" + +msgid "tBackup status" +msgstr "" + +msgid "tComputer name" +msgstr "" + +msgid "tLast seen" +msgstr "" + +msgid "tLast file backup" +msgstr "" + +msgid "tLast image backup" +msgstr "" + +msgid "tFile backup status" +msgstr "" + +msgid "tImage backup status" +msgstr "" + +msgid "tShow details" +msgstr "" + +msgid "tExtra clients" +msgstr "" + +msgid "tNo extra clients" +msgstr "" + +msgid "tActions" +msgstr "" + +msgid "tOnline" +msgstr "" + +msgid "tHostname/IP" +msgstr "" + +msgid "tServer identity" +msgstr "" + +msgid "users" +msgstr "" + +msgid "general_settings" +msgstr "" + +msgid "admin" +msgstr "" + +msgid "user" +msgstr "" + +msgid "username_empty" +msgstr "" + +msgid "password_empty" +msgstr "" + +msgid "password_differ" +msgstr "" + +msgid "user_n_exist" +msgstr "" + +msgid "password_wrong" +msgstr "" + +msgid "user_exists" +msgstr "" + +msgid "session_timeout" +msgstr "" + +msgid "really_del_user" +msgstr "" + +msgid "user_add_done" +msgstr "" + +msgid "user_remove_done" +msgstr "" + +msgid "user_update_right_done" +msgstr "" + +msgid "user_pw_change_ok" +msgstr "" + +msgid "right_all" +msgstr "" + +msgid "right_none" +msgstr "" + +msgid "filter" +msgstr "" + +msgid "all" +msgstr "" + +msgid "loglevel_0" +msgstr "" + +msgid "loglevel_1" +msgstr "" + +msgid "loglevel_2" +msgstr "" + +msgid "dir_error_text" +msgstr "" + +msgid "tmpdir_error_text" +msgstr "" + +msgid "starting" +msgstr "" + +msgid "ident_err" +msgstr "" + +msgid "enter_hostname" +msgstr "" + +msgid "clients" +msgstr "" + +msgid "validate_text_empty" +msgstr "" + +msgid "validate_text_notint" +msgstr "" + +msgid "validate_name_update_freq_incr" +msgstr "" + +msgid "validate_name_update_freq_full" +msgstr "" + +msgid "validate_name_update_freq_image_full" +msgstr "" + +msgid "validate_name_update_freq_image_incr" +msgstr "" + +msgid "validate_name_max_file_incr" +msgstr "" + +msgid "validate_name_min_file_incr" +msgstr "" + +msgid "validate_name_max_file_full" +msgstr "" + +msgid "validate_name_min_file_full" +msgstr "" + +msgid "validate_name_min_image_incr" +msgstr "" + +msgid "validate_name_max_image_incr" +msgstr "" + +msgid "validate_name_min_image_full" +msgstr "" + +msgid "validate_name_max_image_full" +msgstr "" + +msgid "validate_name_startup_backup_delay" +msgstr "" + +msgid "validate_err_notregexp_backup_window" +msgstr "" + +msgid "validate_name_max_active_clients" +msgstr "" + +msgid "validate_name_max_sim_backups" +msgstr "" + +msgid "validate_name_backupfolder" +msgstr "" + +msgid "validate_name_computername" +msgstr "" + +msgid "too_many_clients_err" +msgstr "" + +msgid "really_remove_client" +msgstr "" + +msgid "computername" +msgstr "" + +msgid "storage_usage_pie_graph_title" +msgstr "" + +msgid "storage_usage_pie_graph_colname1" +msgstr "" + +msgid "storage_usage_pie_graph_colname2" +msgstr "" + +msgid "storage_usage_bar_graph_title" +msgstr "" + +msgid "storage_usage_bar_graph_colname1" +msgstr "" + +msgid "storage_usage_bar_graph_colname2" +msgstr "" + +msgid "tImages" +msgstr "" + +msgid "tFiles" +msgstr "" + +msgid "tSum" +msgstr "" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "" + +msgid "mail_settings" +msgstr "" + +msgid "upgrade_error_text" +msgstr "" + +msgid "tActivities" +msgstr "" + +msgid "tAction" +msgstr "" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "" + +msgid "tLast activities" +msgstr "" + +msgid "tStarting time" +msgstr "" + +msgid "tRequired time" +msgstr "" + +msgid "tUsed Storage" +msgstr "" + +msgid "tClients" +msgstr "" + +msgid "tLogs" +msgstr "" + +msgid "tReports" +msgstr "" + +msgid "tSend reports to" +msgstr "" + +msgid "tSend" +msgstr "" + +msgid "tBackups with a log message of at least log level" +msgstr "" + +msgid "tBackup time" +msgstr "" + +msgid "tErrors" +msgstr "" + +msgid "tWarnings" +msgstr "" + +msgid "tStorage allocation" +msgstr "" + +msgid "tStorage usage" +msgstr "" + +msgid "tAll" +msgstr "" + +msgid "tBackup storage path" +msgstr "" + +msgid "tDo not do image backups" +msgstr "" + +msgid "tDo not do file backups" +msgstr "" + +msgid "tAutomatically shut down server" +msgstr "" + +msgid "tAutoupdate clients" +msgstr "" + +msgid "tMax number of simultaneous backups" +msgstr "" + +msgid "tMax number of recently active clients" +msgstr "" + +msgid "tCleanup time window" +msgstr "" + +msgid "tAutomatically backup UrBackup database" +msgstr "" + +msgid "tInterval for incremental file backups" +msgstr "" + +msgid "tInterval for full file backups" +msgstr "" + +msgid "tInterval for incremental image backups" +msgstr "" + +msgid "tInterval for full image backups" +msgstr "" + +msgid "tMaximal number of incremental file backups" +msgstr "" + +msgid "tMinimal number of incremental file backups" +msgstr "" + +msgid "tMaximal number of full file backups" +msgstr "" + +msgid "tMinimal number of full file backups" +msgstr "" + +msgid "tMaximal number of incremental image backups" +msgstr "" + +msgid "tMinimal number of incremental image backups" +msgstr "" + +msgid "tMaximal number of full image backups" +msgstr "" + +msgid "tMinimal number of full image backups" +msgstr "" + +msgid "tDelay after system startup" +msgstr "" + +msgid "tBackup window" +msgstr "" + +msgid "tExcluded files (with wildcards)" +msgstr "" + +msgid "tIncluded files (with wildcards)" +msgstr "" + +msgid "tDefault directories to backup" +msgstr "" + +msgid "tVolumes to backup" +msgstr "" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "" + +msgid "tAllow client-side starting of file backups" +msgstr "" + +msgid "tAllow client-side starting of image backups" +msgstr "" + +msgid "tAllow client-side viewing of backup logs" +msgstr "" + +msgid "tAllow client-side pausing of backups" +msgstr "" + +msgid "tAllow client-side changing of settings" +msgstr "" + +msgid "tdays" +msgstr "" + +msgid "thours" +msgstr "" + +msgid "tmin" +msgstr "" + +msgid "tMail server name" +msgstr "" + +msgid "tMail server port" +msgstr "" + +msgid "tMail server username (empty for none)" +msgstr "" + +msgid "tMail server password" +msgstr "" + +msgid "tSender E-Mail Address" +msgstr "" + +msgid "tSend mails only with SSL/TLS" +msgstr "" + +msgid "tCheck SSL/TLS certificate" +msgstr "" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "" + +msgid "tTest Mail sent successfully" +msgstr "" + +msgid "tSending test mail failed. Error:" +msgstr "" + +msgid "tFilter" +msgstr "" + +msgid "tBack" +msgstr "" + +msgid "tAdd" +msgstr "" + +msgid "tRemove" +msgstr "" + +msgid "tSave" +msgstr "" + +msgid "tLevel" +msgstr "" + +msgid "tTime" +msgstr "" + +msgid "tMessage" +msgstr "" + +msgid "tLog" +msgstr "" + +msgid "tUsername" +msgstr "" + +msgid "tRights" +msgstr "" + +msgid "tNo Users" +msgstr "" + +msgid "tCreate user" +msgstr "" + +msgid "tPassword" +msgstr "" + +msgid "tRepeat password" +msgstr "" + +msgid "tRights for" +msgstr "" + +msgid "tAbort" +msgstr "" + +msgid "tCreate" +msgstr "" + +msgid "tChange rights" +msgstr "" + +msgid "tChange password" +msgstr "" + +msgid "tLogin" +msgstr "" + +msgid "tInfos" +msgstr "" + +msgid "tSeparate settings for this client" +msgstr "" + +msgid "tServer" +msgstr "" + +msgid "tFile backups" +msgstr "" + +msgid "tImage backups" +msgstr "" + +msgid "tPermissions" +msgstr "" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "" + +msgid "tMax backup speed for local network" +msgstr "" + +msgid "tNo activities" +msgstr "" + +msgid "tSelect all" +msgstr "" + +msgid "tSelect none" +msgstr "" + +msgid "tRemove selected" +msgstr "" + +msgid "tStart for selected" +msgstr "" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "" + +msgid "tArchive every" +msgstr "" + +msgid "tArchive for" +msgstr "" + +msgid "tArchive window" +msgstr "" + +msgid "tBackup type" +msgstr "" + +msgid "tEnable internet mode (requires server restart)" +msgstr "" + +msgid "tInternet server name/IP" +msgstr "" + +msgid "tInternet server port" +msgstr "" + +msgid "tDo image backups over internet" +msgstr "" + +msgid "tDo full file backups over internet" +msgstr "" + +msgid "tMax backup speed for internet connection" +msgstr "" + +msgid "tTotal max backup speed for internet connection" +msgstr "" + +msgid "tEncrypted transfer" +msgstr "" + +msgid "tCompressed transfer" +msgstr "" + +msgid "file_backup" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "days" +msgstr "" + +msgid "weeks" +msgstr "" + +msgid "months" +msgstr "" + +msgid "year" +msgstr "" + +msgid "hour" +msgstr "" + +msgid "day" +msgstr "" + +msgid "week" +msgstr "" + +msgid "month" +msgstr "" + +msgid "years" +msgstr "" + +msgid "min" +msgstr "" + +msgid "mins" +msgstr "" + +msgid "validate_name_archive_every" +msgstr "" + +msgid "validate_name_archive_for" +msgstr "" + +msgid "forever" +msgstr "" + +msgid "backup_in_progress" +msgstr "" + +msgid "really_remove_clients" +msgstr "" + +msgid "no_client_selected" +msgstr "" + +msgid "queued_backup" +msgstr "" + +msgid "starting_backup_failed" +msgstr "" + +msgid "trying_to_stop_backup" +msgstr "" + +msgid "unarchived_in" +msgstr "" + +msgid "validate_err_notregexp_archive_window" +msgstr "" + +msgid "wait_for_archive_window" +msgstr "" + +msgid "validate_err_notregexp_image_letters" +msgstr "" + +msgid "validate_name_global_local_speed" +msgstr "" + +msgid "validate_name_global_internet_speed" +msgstr "" + +msgid "validate_name_local_speed" +msgstr "" + +msgid "validate_name_internet_speed" +msgstr "" + +msgid "enter_clientname" +msgstr "" + +msgid "internet_client_added" +msgstr "" + +msgid "change_pw" +msgstr "" + +msgid "old_pw_wrong" +msgstr "" + +msgid "tID" +msgstr "" + +msgid "tFile" +msgstr "" + +msgid "tSize" +msgstr "" + +msgid "tIncremental" +msgstr "" + +msgid "tLoading" +msgstr "" + +msgid "tStorage usage of" +msgstr "" + +msgid "tDelete domain" +msgstr "" + +msgid "tChange rights for user" +msgstr "" + +msgid "tDomain" +msgstr "" + +msgid "tTranslation" +msgstr "" + +msgid "tNew domain" +msgstr "" + +msgid "tChange" +msgstr "" + +msgid "tChange password for user" +msgstr "" + +msgid "tSaved settings successfully" +msgstr "" + +msgid "tThis client is going to be removed." +msgstr "" + +msgid "tStop removing client" +msgstr "" + +msgid "tFailed" +msgstr "" + +msgid "tSuccessfull" +msgstr "" + +msgid "tInfo" +msgstr "" + +msgid "tError" +msgstr "" + +msgid "tWarning" +msgstr "" + +msgid "tCurrent version" +msgstr "" + +msgid "tTarget version" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "" + +msgid "tNext archival" +msgstr "" + +msgid "tweeks" +msgstr "" + +msgid "tmonth" +msgstr "" + +msgid "tyears" +msgstr "" + +msgid "tforever" +msgstr "" + +msgid "tFile backup" +msgstr "" + +msgid "tIncremental file backup" +msgstr "" + +msgid "tFull file backup" +msgstr "" + +msgid "tEnable internet mode" +msgstr "" + +msgid "tInternet auth key" +msgstr "" + +msgid "tIncremental image backup" +msgstr "" + +msgid "tFull image backup" +msgstr "" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "" + +msgid "tArchived" +msgstr "" + +msgid "nospc_stalled_text" +msgstr "" + +msgid "nospc_fatal_text" +msgstr "" + +msgid "tNondefault temporary file directory" +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/fr.po b/urbackupserver/www/translations/urbackup.webinterface/fr.po new file mode 100644 index 00000000..5de92975 --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/fr.po @@ -0,0 +1,1128 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:38+0000\n" +"Last-Translator: uroni \n" +"Language-Team: French (http://www.transifex.com/projects/p/urbackup/language/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +msgid "action_1" +msgstr "Sauvegarde incrémentielle" + +msgid "action_2" +msgstr "Sauvegarde complète" + +msgid "action_3" +msgstr "Image incrémentielle" + +msgid "action_4" +msgstr "Image complète" + +msgid "action_1_d" +msgstr "Effacement Sauvegarde incrémentielle" + +msgid "action_2_d" +msgstr "Effacement Sauvegarde complète" + +msgid "action_3_d" +msgstr "Effacement Image incrémentielle" + +msgid "action_4_d" +msgstr "Effacement Image complète" + +msgid "nav_item_6" +msgstr "Etats" + +msgid "nav_item_5" +msgstr "Activités" + +msgid "nav_item_4" +msgstr "Sauvegardes" + +msgid "nav_item_3" +msgstr "Journaux" + +msgid "nav_item_2" +msgstr "Stats" + +msgid "nav_item_1" +msgstr "Réglages" + +msgid "unknown" +msgstr "inconnu" + +msgid "overview" +msgstr "Résumé" + +msgid "ok" +msgstr "Ok" + +msgid "no_recent_backup" +msgstr "Pas de sauvegarde récente" + +msgid "backup_never" +msgstr "Jamais" + +msgid "yes" +msgstr "Oui" + +msgid "no" +msgstr "Non" + +msgid "tBackup status" +msgstr "Statut de Sauvegarde" + +msgid "tComputer name" +msgstr "Nom de l'ordinateur" + +msgid "tLast seen" +msgstr "Vu récemment" + +msgid "tLast file backup" +msgstr "Dernière Sauvegarde de fichiers" + +msgid "tLast image backup" +msgstr "Dernière Sauvegarde Image" + +msgid "tFile backup status" +msgstr "Statut de la Sauvegarde fichiers" + +msgid "tImage backup status" +msgstr "Statut de la Sauvegarde Image" + +msgid "tShow details" +msgstr "Plus de détails" + +msgid "tExtra clients" +msgstr "Clients supplémentaires" + +msgid "tNo extra clients" +msgstr "Pas de clients supplémentaires" + +msgid "tActions" +msgstr "Action" + +msgid "tOnline" +msgstr "En ligne" + +msgid "tHostname/IP" +msgstr "HOTE/IP" + +msgid "tServer identity" +msgstr "Identité du serveur" + +msgid "users" +msgstr "Utilisateurs" + +msgid "general_settings" +msgstr "Général" + +msgid "admin" +msgstr "Administrateur" + +msgid "user" +msgstr "Utilisateur" + +msgid "username_empty" +msgstr "Merci d'entrer votre nom" + +msgid "password_empty" +msgstr "Merci d'entrer votre mot de passe" + +msgid "password_differ" +msgstr "Les deux mots de passe sont différents" + +msgid "user_n_exist" +msgstr "l'utilisateur n'existe pas" + +msgid "password_wrong" +msgstr "Mauvais mot de passe" + +msgid "user_exists" +msgstr "Un utilisateur avec ce nom existe déjà" + +msgid "session_timeout" +msgstr "La session n'est plus valide. Merci de vous reconnecter." + +msgid "really_del_user" +msgstr "Etes vous sûr de vouloir supprimer cet utilisateur?" + +msgid "user_add_done" +msgstr "Nouvel utilisateur créé avec succès." + +msgid "user_remove_done" +msgstr "Utilisateur supprimé avec succès ." + +msgid "user_update_right_done" +msgstr "Droits changés avec succès." + +msgid "user_pw_change_ok" +msgstr "Mot de passe de l'utilisateur changé avec succès." + +msgid "right_all" +msgstr "Tous les droits" + +msgid "right_none" +msgstr "Aucun droit" + +msgid "filter" +msgstr "Filtrer" + +msgid "all" +msgstr "Tous" + +msgid "loglevel_0" +msgstr "Information" + +msgid "loglevel_1" +msgstr "Alertes" + +msgid "loglevel_2" +msgstr "Erreurs" + +msgid "dir_error_text" +msgstr "Le dossier de sauvegarde UrBackup est inaccessible. Merci de changer le chemin dans 'Réglages' ou en donnant à UrBackup les droits d'accès à ce répertoire." + +msgid "tmpdir_error_text" +msgstr "Le dossier de sauvegarde temporaire UrBackup est inaccessible. Merci de changer le chemin dans 'Réglages' ou en donnant à UrBackup les droits d'accès à ce répertoire." + +msgid "starting" +msgstr "Démarrage" + +msgid "ident_err" +msgstr "Serveur rejeté" + +msgid "enter_hostname" +msgstr "Merci d'entrer un nom d'hôte ou une adresse IP." + +msgid "clients" +msgstr "Clients" + +msgid "validate_text_empty" +msgstr "Merci d'entrer une valeur pour le {name}" + +msgid "validate_text_notint" +msgstr "Merci d'entrer une valeur numérique pour le {name}" + +msgid "validate_name_update_freq_incr" +msgstr "Tranche horaire pour la sauvegarde incrémentielle" + +msgid "validate_name_update_freq_full" +msgstr "Tranche horaire pour la sauvegarde complète" + +msgid "validate_name_update_freq_image_full" +msgstr "Tranche horaire pour l'image incrémentielle" + +msgid "validate_name_update_freq_image_incr" +msgstr "Tranche horaire pour l'image complète" + +msgid "validate_name_max_file_incr" +msgstr "Nombre maximal de sauvegardes incrémentielles" + +msgid "validate_name_min_file_incr" +msgstr "Nombre minimal de sauvegardes incrémentielles" + +msgid "validate_name_max_file_full" +msgstr "Nombre maximal de sauvegardes complètes" + +msgid "validate_name_min_file_full" +msgstr "Nombre minimal de sauvegardes complètes" + +msgid "validate_name_min_image_incr" +msgstr "Nombre minimal d'images incrémentielles" + +msgid "validate_name_max_image_incr" +msgstr "Nombre maximal d'images incrémentielles" + +msgid "validate_name_min_image_full" +msgstr "Nombre minimal d'images complètes" + +msgid "validate_name_max_image_full" +msgstr "Nombre maximal d'images complètes" + +msgid "validate_name_startup_backup_delay" +msgstr "Délai après démarrage du système" + +msgid "validate_err_notregexp_backup_window" +msgstr "Erreur dans le format de l'intervalle" + +msgid "validate_name_max_active_clients" +msgstr "Nombre maximal de client récents actifs" + +msgid "validate_name_max_sim_backups" +msgstr "Nombre maximal de sauvegardes simultanées" + +msgid "validate_name_backupfolder" +msgstr "Chemin du répertoire de sauvegarde" + +msgid "validate_name_computername" +msgstr "Nom de l'ordinateur" + +msgid "too_many_clients_err" +msgstr "Trop de clients" + +msgid "really_remove_client" +msgstr "Etes vous sûr de vouloir supprimer ce client ? Cela implique que tous les fichiers et images sauvegardés seront supprimés !" + +msgid "computername" +msgstr "Nom de l'ordinateur" + +msgid "storage_usage_pie_graph_title" +msgstr "Utilisation d'espace" + +msgid "storage_usage_pie_graph_colname1" +msgstr "Nom de l'ordinateur" + +msgid "storage_usage_pie_graph_colname2" +msgstr "Utilisation d'espace" + +msgid "storage_usage_bar_graph_title" +msgstr "Utilisation d'espace" + +msgid "storage_usage_bar_graph_colname1" +msgstr "Date" + +msgid "storage_usage_bar_graph_colname2" +msgstr "Utilisation d'espace" + +msgid "tImages" +msgstr "Images" + +msgid "tFiles" +msgstr "Fichiers" + +msgid "tSum" +msgstr "Total" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "Format de l'intervalle de purge erroné" + +msgid "mail_settings" +msgstr "Email" + +msgid "upgrade_error_text" +msgstr "UrBackup met à jour sa base interne. Cela peut prendre du temps. Le serveur est ainsi inaccessible et ne fera aucune sauvegarde durant cet intervalle ." + +msgid "tActivities" +msgstr "Activités" + +msgid "tAction" +msgstr "Action" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "Fichier en cours" + +msgid "tLast activities" +msgstr "Dernières activités" + +msgid "tStarting time" +msgstr "Lancement" + +msgid "tRequired time" +msgstr "Temps nécessaire" + +msgid "tUsed Storage" +msgstr "Espace utilisé" + +msgid "tClients" +msgstr "Clients" + +msgid "tLogs" +msgstr "Journaux" + +msgid "tReports" +msgstr "Rapports" + +msgid "tSend reports to" +msgstr "Envoyer les rapports à " + +msgid "tSend" +msgstr "Envoyer" + +msgid "tBackups with a log message of at least log level" +msgstr "Afficher les journaux au niveau " + +msgid "tBackup time" +msgstr "Durée" + +msgid "tErrors" +msgstr "Erreurs" + +msgid "tWarnings" +msgstr "Alertes" + +msgid "tStorage allocation" +msgstr "Espace alloué" + +msgid "tStorage usage" +msgstr "Utilisation d'espace" + +msgid "tAll" +msgstr "Tous" + +msgid "tBackup storage path" +msgstr "Chemin du répertoire de sauvegarde" + +msgid "tDo not do image backups" +msgstr "Désactiver la sauvegarde Image " + +msgid "tDo not do file backups" +msgstr "Désactiver la sauvegarde de fichiers" + +msgid "tAutomatically shut down server" +msgstr "Eteindre automatiquement le serveur" + +msgid "tAutoupdate clients" +msgstr "Mettre à jour les clients" + +msgid "tMax number of simultaneous backups" +msgstr "Nombre maximal de sauvegardes simultanées" + +msgid "tMax number of recently active clients" +msgstr "Nombre maximal de clients actifs" + +msgid "tCleanup time window" +msgstr "Intervalle de purge" + +msgid "tAutomatically backup UrBackup database" +msgstr "Sauvegarder automatiquement la base de données du serveur" + +msgid "tInterval for incremental file backups" +msgstr "Intervalle pour la sauvegarde incrémentielle de fichiers" + +msgid "tInterval for full file backups" +msgstr "Intervalle pour la sauvegarde complète de fichiers" + +msgid "tInterval for incremental image backups" +msgstr "" + +msgid "tInterval for full image backups" +msgstr "Intervalle pour la sauvegarde Image complète" + +msgid "tMaximal number of incremental file backups" +msgstr "Nombre maximal de sauvegardes fichiers incrémentielles" + +msgid "tMinimal number of incremental file backups" +msgstr "Nombre minimal de sauvegardes fichiers incrémentielles" + +msgid "tMaximal number of full file backups" +msgstr "Nombre maximal de sauvegardes fichiers complètes" + +msgid "tMinimal number of full file backups" +msgstr "Nombre minimal de sauvegardes fichiers complètes" + +msgid "tMaximal number of incremental image backups" +msgstr "Nombre maximal de sauvegardes image incrémentielles" + +msgid "tMinimal number of incremental image backups" +msgstr "Nombre minimal de sauvegardes image incrémentielles" + +msgid "tMaximal number of full image backups" +msgstr "Nombre maximal de sauvegardes image complètes" + +msgid "tMinimal number of full image backups" +msgstr "Nombre minimal de sauvegardes image complètes" + +msgid "tDelay after system startup" +msgstr "Délai après lancement" + +msgid "tBackup window" +msgstr "Intervalle de sauvegarde" + +msgid "tExcluded files (with wildcards)" +msgstr "Fichiers exclus (avec Wildcards)" + +msgid "tIncluded files (with wildcards)" +msgstr "Fichiers inclus (avec Wildcards)" + +msgid "tDefault directories to backup" +msgstr "Répertoires par défaut à sauvegarder " + +msgid "tVolumes to backup" +msgstr "Volumes à sauvegarder" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "Permettre au client de définir les répertoires de sauvegarde" + +msgid "tAllow client-side starting of file backups" +msgstr "Permettre au client de lancer une sauvegarde fichiers" + +msgid "tAllow client-side starting of image backups" +msgstr "Permettre au client de lancer une sauvegarde Image" + +msgid "tAllow client-side viewing of backup logs" +msgstr "Permettre au client de consulter les journaux" + +msgid "tAllow client-side pausing of backups" +msgstr "Permettre au client de mettre en pause les sauvegardes" + +msgid "tAllow client-side changing of settings" +msgstr "Permettre au client de changer les réglages" + +msgid "tdays" +msgstr "Jours" + +msgid "thours" +msgstr "Heures" + +msgid "tmin" +msgstr "min" + +msgid "tMail server name" +msgstr "Adresse du serveur SMTP" + +msgid "tMail server port" +msgstr "Port du serveur SMTP" + +msgid "tMail server username (empty for none)" +msgstr "Nom du compte email" + +msgid "tMail server password" +msgstr "Mot de passe" + +msgid "tSender E-Mail Address" +msgstr "Emetteur de l'email" + +msgid "tSend mails only with SSL/TLS" +msgstr "N'envoyer qu'avec SSL/TLS" + +msgid "tCheck SSL/TLS certificate" +msgstr "Vérifier le certificat SSL/TLS" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "Envoyer un email TEST à cette adresse après avoir sauvé les paramètres (laisser vide pour ignorer l'envoi)" + +msgid "tTest Mail sent successfully" +msgstr "Succès d'envoi de l'email TEST" + +msgid "tSending test mail failed. Error:" +msgstr "Echec d'envoi de l'email TEST avec l'erreur :" + +msgid "tFilter" +msgstr "Filtre" + +msgid "tBack" +msgstr "Précédent" + +msgid "tAdd" +msgstr "Ajouter" + +msgid "tRemove" +msgstr "Enlever" + +msgid "tSave" +msgstr "Enregistrer" + +msgid "tLevel" +msgstr "Niveau" + +msgid "tTime" +msgstr "Temps" + +msgid "tMessage" +msgstr "Message" + +msgid "tLog" +msgstr "Journaux" + +msgid "tUsername" +msgstr "Nom utilisateur" + +msgid "tRights" +msgstr "Droits" + +msgid "tNo Users" +msgstr "Aucun utilisateur" + +msgid "tCreate user" +msgstr "Créer un utilisateur" + +msgid "tPassword" +msgstr "Mot de passe" + +msgid "tRepeat password" +msgstr "Répéter le mot de passe" + +msgid "tRights for" +msgstr "Droits pour" + +msgid "tAbort" +msgstr "Abandonner" + +msgid "tCreate" +msgstr "Créer" + +msgid "tChange rights" +msgstr "Changer les droits" + +msgid "tChange password" +msgstr "Changer le mot de passe" + +msgid "tLogin" +msgstr "Login" + +msgid "tInfos" +msgstr "Information" + +msgid "tSeparate settings for this client" +msgstr "Paramétrage individuel pour ce client" + +msgid "tServer" +msgstr "Serveur" + +msgid "tFile backups" +msgstr "Sauvegarde Fichiers" + +msgid "tImage backups" +msgstr "Sauvegarde Image" + +msgid "tPermissions" +msgstr "Droits" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "Archivage" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "Appliquer les mises à jour automatiques en silence" + +msgid "tMax backup speed for local network" +msgstr "Vitesse maximale du réseau local" + +msgid "tNo activities" +msgstr "Pas d'activité" + +msgid "tSelect all" +msgstr "Tout sélectionner" + +msgid "tSelect none" +msgstr "Ne rien sélectionner" + +msgid "tRemove selected" +msgstr "Supprimer sélectionnés" + +msgid "tStart for selected" +msgstr "Lancer les sélectionnés" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "Pas d'entrée dans cette vue" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "Somme totale de la vitesse maximale pour le réseau local" + +msgid "tArchive every" +msgstr "Archiver tous les" + +msgid "tArchive for" +msgstr "Archives pour" + +msgid "tArchive window" +msgstr "Intervalle d'archivage" + +msgid "tBackup type" +msgstr "Type de sauvegarde" + +msgid "tEnable internet mode (requires server restart)" +msgstr "Activer le mode internet (nécessite un redémarrage du serveur)" + +msgid "tInternet server name/IP" +msgstr "Adresse internet du serveur HOTE/IP" + +msgid "tInternet server port" +msgstr "Port du serveur Internet" + +msgid "tDo image backups over internet" +msgstr "Activer la sauvegarde Image via Internet" + +msgid "tDo full file backups over internet" +msgstr "Activer les sauvegardes complètes par internet" + +msgid "tMax backup speed for internet connection" +msgstr "Vitesse maximale du réseau internet" + +msgid "tTotal max backup speed for internet connection" +msgstr "Somme totale de la vitesse maximale pour le réseau internet" + +msgid "tEncrypted transfer" +msgstr "Encrypter les échanges" + +msgid "tCompressed transfer" +msgstr "Compresser les échanges" + +msgid "file_backup" +msgstr "" + +msgid "hours" +msgstr "heures" + +msgid "days" +msgstr "jours" + +msgid "weeks" +msgstr "semaines" + +msgid "months" +msgstr "mois" + +msgid "year" +msgstr "année" + +msgid "hour" +msgstr "heure" + +msgid "day" +msgstr "jour" + +msgid "week" +msgstr "semaine" + +msgid "month" +msgstr "mois" + +msgid "years" +msgstr "années" + +msgid "min" +msgstr "minute" + +msgid "mins" +msgstr "minutes" + +msgid "validate_name_archive_every" +msgstr "Archiver tous les" + +msgid "validate_name_archive_for" +msgstr "Archives pour" + +msgid "forever" +msgstr "Pour toujours" + +msgid "backup_in_progress" +msgstr "Sauvegarde en cours..." + +msgid "really_remove_clients" +msgstr "Etes vous sûr de vouloir supprimer ce client ? Cela implique que tous les fichiers et images sauvegardés seront supprimés !" + +msgid "no_client_selected" +msgstr "Aucun client n'a été sélectionné" + +msgid "queued_backup" +msgstr "Sauvegarde planifiée" + +msgid "starting_backup_failed" +msgstr "Le lancement de la sauvegarde a échoué" + +msgid "trying_to_stop_backup" +msgstr "Tentative d'interruption de la sauvegarde. Cela peut prendre du temps." + +msgid "unarchived_in" +msgstr "Ne sera plus archivé dans" + +msgid "validate_err_notregexp_archive_window" +msgstr "Le format pour l'intervalle d'archivage est mauvais" + +msgid "wait_for_archive_window" +msgstr "Attente du prochain lancement" + +msgid "validate_err_notregexp_image_letters" +msgstr "Le format pour la lettre de disque est mauvais" + +msgid "validate_name_global_local_speed" +msgstr "Vitesse max totale pour la sauvegarde en réseau local" + +msgid "validate_name_global_internet_speed" +msgstr "Vitesse max totale pour la sauvegarde via internet" + +msgid "validate_name_local_speed" +msgstr "Vitesse maximale pour la sauvegarde en réseau local" + +msgid "validate_name_internet_speed" +msgstr "Vitesse maximale pour la sauvegarde via internet" + +msgid "enter_clientname" +msgstr "Merci d'entrer un nom de client" + +msgid "internet_client_added" +msgstr "Client ajouté. Vous pouvez voir la clef du client (ou mot de passe) dans le menu Réglages." + +msgid "change_pw" +msgstr "Changer le mot de passe" + +msgid "old_pw_wrong" +msgstr "Ancien mot de passe erroné" + +msgid "tID" +msgstr "ID" + +msgid "tFile" +msgstr "Fichier" + +msgid "tSize" +msgstr "Taille" + +msgid "tIncremental" +msgstr "Incrémentielle" + +msgid "tLoading" +msgstr "Chargement" + +msgid "tStorage usage of" +msgstr "Espace utilisé pour" + +msgid "tDelete domain" +msgstr "Détruire un domaine" + +msgid "tChange rights for user" +msgstr "Changer les droits pour l'utilisateur:" + +msgid "tDomain" +msgstr "Domaine" + +msgid "tTranslation" +msgstr "Traduction" + +msgid "tNew domain" +msgstr "Nouveau Domaine" + +msgid "tChange" +msgstr "Changer" + +msgid "tChange password for user" +msgstr "Changer le mot de passe pour l'utilisateur:" + +msgid "tSaved settings successfully" +msgstr "Enregistré avec succès" + +msgid "tThis client is going to be removed." +msgstr "" + +msgid "tStop removing client" +msgstr "" + +msgid "tFailed" +msgstr "Echec" + +msgid "tSuccessfull" +msgstr "Succès" + +msgid "tInfo" +msgstr "Info" + +msgid "tError" +msgstr "Erreurs" + +msgid "tWarning" +msgstr "Alertes" + +msgid "tCurrent version" +msgstr "Version actuelle" + +msgid "tTarget version" +msgstr "Version cible" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "Alerte: Les paramètres configurés sur le client seront ceux pris en compte. Si vous ne le voulez pas, désactiver les droits de paramétrage pour le client. " + +msgid "tNext archival" +msgstr "Prochain archivage" + +msgid "tweeks" +msgstr "Semaines" + +msgid "tmonth" +msgstr "Mois" + +msgid "tyears" +msgstr "Années" + +msgid "tforever" +msgstr "Pour toujours" + +msgid "tFile backup" +msgstr "Sauvegarde de fichiers" + +msgid "tIncremental file backup" +msgstr "Sauvegarde de fichiers incrémentielle" + +msgid "tFull file backup" +msgstr "Sauvegarde de fichiers complète" + +msgid "tEnable internet mode" +msgstr "Activer le mode internet" + +msgid "tInternet auth key" +msgstr "Clé d'authentification du serveur internet" + +msgid "tIncremental image backup" +msgstr "Sauvegarde image incrémentielle" + +msgid "tFull image backup" +msgstr "Sauvegarde image complète" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "Les clients seront supprimés durant l'intervalle de purge, si ils ne sont pas en ligne." + +msgid "tArchived" +msgstr "Archivés" + +msgid "nospc_stalled_text" +msgstr "Il n' y a plus d'espace disponible dans le répertoire de sauvegarde. UrBackup efface les anciennes sauvegardes de fichiers et image pour faire de l'espace, selon les paramètres définis dans Réglages. Pendant cette phase, les performances de la sauvegarde diminuent, et les sauvegardes sont stoppées ." + +msgid "nospc_fatal_text" +msgstr "Il n' y a plus d'espace disponible dans le répertoire de sauvegarde. UrBackup a tenté de purger les anciennes sauvegardes mais ne peut en effacer plus à cause des paramètres définis. Merci de changer ces paramètres à la baisse ou d'augmenter l'espace de stockage alloué afin de permettre à UrBackup de poursuivre." + +msgid "tNondefault temporary file directory" +msgstr "Répertoire temporaire" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "Intervalle pour la sauvegarde Image incrémentielle" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/he.po b/urbackupserver/www/translations/urbackup.webinterface/he.po new file mode 100644 index 00000000..96f2f142 --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/he.po @@ -0,0 +1,1127 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:33+0000\n" +"Language-Team: Hebrew (http://www.transifex.com/projects/p/urbackup/language/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "action_1" +msgstr "" + +msgid "action_2" +msgstr "" + +msgid "action_3" +msgstr "" + +msgid "action_4" +msgstr "" + +msgid "action_1_d" +msgstr "" + +msgid "action_2_d" +msgstr "" + +msgid "action_3_d" +msgstr "" + +msgid "action_4_d" +msgstr "" + +msgid "nav_item_6" +msgstr "" + +msgid "nav_item_5" +msgstr "" + +msgid "nav_item_4" +msgstr "" + +msgid "nav_item_3" +msgstr "" + +msgid "nav_item_2" +msgstr "" + +msgid "nav_item_1" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "overview" +msgstr "" + +msgid "ok" +msgstr "" + +msgid "no_recent_backup" +msgstr "" + +msgid "backup_never" +msgstr "" + +msgid "yes" +msgstr "" + +msgid "no" +msgstr "" + +msgid "tBackup status" +msgstr "" + +msgid "tComputer name" +msgstr "" + +msgid "tLast seen" +msgstr "" + +msgid "tLast file backup" +msgstr "" + +msgid "tLast image backup" +msgstr "" + +msgid "tFile backup status" +msgstr "" + +msgid "tImage backup status" +msgstr "" + +msgid "tShow details" +msgstr "" + +msgid "tExtra clients" +msgstr "" + +msgid "tNo extra clients" +msgstr "" + +msgid "tActions" +msgstr "" + +msgid "tOnline" +msgstr "" + +msgid "tHostname/IP" +msgstr "" + +msgid "tServer identity" +msgstr "" + +msgid "users" +msgstr "" + +msgid "general_settings" +msgstr "" + +msgid "admin" +msgstr "" + +msgid "user" +msgstr "" + +msgid "username_empty" +msgstr "" + +msgid "password_empty" +msgstr "" + +msgid "password_differ" +msgstr "" + +msgid "user_n_exist" +msgstr "" + +msgid "password_wrong" +msgstr "" + +msgid "user_exists" +msgstr "" + +msgid "session_timeout" +msgstr "" + +msgid "really_del_user" +msgstr "" + +msgid "user_add_done" +msgstr "" + +msgid "user_remove_done" +msgstr "" + +msgid "user_update_right_done" +msgstr "" + +msgid "user_pw_change_ok" +msgstr "" + +msgid "right_all" +msgstr "" + +msgid "right_none" +msgstr "" + +msgid "filter" +msgstr "" + +msgid "all" +msgstr "" + +msgid "loglevel_0" +msgstr "" + +msgid "loglevel_1" +msgstr "" + +msgid "loglevel_2" +msgstr "" + +msgid "dir_error_text" +msgstr "" + +msgid "tmpdir_error_text" +msgstr "" + +msgid "starting" +msgstr "" + +msgid "ident_err" +msgstr "" + +msgid "enter_hostname" +msgstr "" + +msgid "clients" +msgstr "" + +msgid "validate_text_empty" +msgstr "" + +msgid "validate_text_notint" +msgstr "" + +msgid "validate_name_update_freq_incr" +msgstr "" + +msgid "validate_name_update_freq_full" +msgstr "" + +msgid "validate_name_update_freq_image_full" +msgstr "" + +msgid "validate_name_update_freq_image_incr" +msgstr "" + +msgid "validate_name_max_file_incr" +msgstr "" + +msgid "validate_name_min_file_incr" +msgstr "" + +msgid "validate_name_max_file_full" +msgstr "" + +msgid "validate_name_min_file_full" +msgstr "" + +msgid "validate_name_min_image_incr" +msgstr "" + +msgid "validate_name_max_image_incr" +msgstr "" + +msgid "validate_name_min_image_full" +msgstr "" + +msgid "validate_name_max_image_full" +msgstr "" + +msgid "validate_name_startup_backup_delay" +msgstr "" + +msgid "validate_err_notregexp_backup_window" +msgstr "" + +msgid "validate_name_max_active_clients" +msgstr "" + +msgid "validate_name_max_sim_backups" +msgstr "" + +msgid "validate_name_backupfolder" +msgstr "" + +msgid "validate_name_computername" +msgstr "" + +msgid "too_many_clients_err" +msgstr "" + +msgid "really_remove_client" +msgstr "" + +msgid "computername" +msgstr "" + +msgid "storage_usage_pie_graph_title" +msgstr "" + +msgid "storage_usage_pie_graph_colname1" +msgstr "" + +msgid "storage_usage_pie_graph_colname2" +msgstr "" + +msgid "storage_usage_bar_graph_title" +msgstr "" + +msgid "storage_usage_bar_graph_colname1" +msgstr "" + +msgid "storage_usage_bar_graph_colname2" +msgstr "" + +msgid "tImages" +msgstr "" + +msgid "tFiles" +msgstr "" + +msgid "tSum" +msgstr "" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "" + +msgid "mail_settings" +msgstr "" + +msgid "upgrade_error_text" +msgstr "" + +msgid "tActivities" +msgstr "" + +msgid "tAction" +msgstr "" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "" + +msgid "tLast activities" +msgstr "" + +msgid "tStarting time" +msgstr "" + +msgid "tRequired time" +msgstr "" + +msgid "tUsed Storage" +msgstr "" + +msgid "tClients" +msgstr "" + +msgid "tLogs" +msgstr "" + +msgid "tReports" +msgstr "" + +msgid "tSend reports to" +msgstr "" + +msgid "tSend" +msgstr "" + +msgid "tBackups with a log message of at least log level" +msgstr "" + +msgid "tBackup time" +msgstr "" + +msgid "tErrors" +msgstr "" + +msgid "tWarnings" +msgstr "" + +msgid "tStorage allocation" +msgstr "" + +msgid "tStorage usage" +msgstr "" + +msgid "tAll" +msgstr "" + +msgid "tBackup storage path" +msgstr "" + +msgid "tDo not do image backups" +msgstr "" + +msgid "tDo not do file backups" +msgstr "" + +msgid "tAutomatically shut down server" +msgstr "" + +msgid "tAutoupdate clients" +msgstr "" + +msgid "tMax number of simultaneous backups" +msgstr "" + +msgid "tMax number of recently active clients" +msgstr "" + +msgid "tCleanup time window" +msgstr "" + +msgid "tAutomatically backup UrBackup database" +msgstr "" + +msgid "tInterval for incremental file backups" +msgstr "" + +msgid "tInterval for full file backups" +msgstr "" + +msgid "tInterval for incremental image backups" +msgstr "" + +msgid "tInterval for full image backups" +msgstr "" + +msgid "tMaximal number of incremental file backups" +msgstr "" + +msgid "tMinimal number of incremental file backups" +msgstr "" + +msgid "tMaximal number of full file backups" +msgstr "" + +msgid "tMinimal number of full file backups" +msgstr "" + +msgid "tMaximal number of incremental image backups" +msgstr "" + +msgid "tMinimal number of incremental image backups" +msgstr "" + +msgid "tMaximal number of full image backups" +msgstr "" + +msgid "tMinimal number of full image backups" +msgstr "" + +msgid "tDelay after system startup" +msgstr "" + +msgid "tBackup window" +msgstr "" + +msgid "tExcluded files (with wildcards)" +msgstr "" + +msgid "tIncluded files (with wildcards)" +msgstr "" + +msgid "tDefault directories to backup" +msgstr "" + +msgid "tVolumes to backup" +msgstr "" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "" + +msgid "tAllow client-side starting of file backups" +msgstr "" + +msgid "tAllow client-side starting of image backups" +msgstr "" + +msgid "tAllow client-side viewing of backup logs" +msgstr "" + +msgid "tAllow client-side pausing of backups" +msgstr "" + +msgid "tAllow client-side changing of settings" +msgstr "" + +msgid "tdays" +msgstr "" + +msgid "thours" +msgstr "" + +msgid "tmin" +msgstr "" + +msgid "tMail server name" +msgstr "" + +msgid "tMail server port" +msgstr "" + +msgid "tMail server username (empty for none)" +msgstr "" + +msgid "tMail server password" +msgstr "" + +msgid "tSender E-Mail Address" +msgstr "" + +msgid "tSend mails only with SSL/TLS" +msgstr "" + +msgid "tCheck SSL/TLS certificate" +msgstr "" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "" + +msgid "tTest Mail sent successfully" +msgstr "" + +msgid "tSending test mail failed. Error:" +msgstr "" + +msgid "tFilter" +msgstr "" + +msgid "tBack" +msgstr "" + +msgid "tAdd" +msgstr "" + +msgid "tRemove" +msgstr "" + +msgid "tSave" +msgstr "" + +msgid "tLevel" +msgstr "" + +msgid "tTime" +msgstr "" + +msgid "tMessage" +msgstr "" + +msgid "tLog" +msgstr "" + +msgid "tUsername" +msgstr "" + +msgid "tRights" +msgstr "" + +msgid "tNo Users" +msgstr "" + +msgid "tCreate user" +msgstr "" + +msgid "tPassword" +msgstr "" + +msgid "tRepeat password" +msgstr "" + +msgid "tRights for" +msgstr "" + +msgid "tAbort" +msgstr "" + +msgid "tCreate" +msgstr "" + +msgid "tChange rights" +msgstr "" + +msgid "tChange password" +msgstr "" + +msgid "tLogin" +msgstr "" + +msgid "tInfos" +msgstr "" + +msgid "tSeparate settings for this client" +msgstr "" + +msgid "tServer" +msgstr "" + +msgid "tFile backups" +msgstr "" + +msgid "tImage backups" +msgstr "" + +msgid "tPermissions" +msgstr "" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "" + +msgid "tMax backup speed for local network" +msgstr "" + +msgid "tNo activities" +msgstr "" + +msgid "tSelect all" +msgstr "" + +msgid "tSelect none" +msgstr "" + +msgid "tRemove selected" +msgstr "" + +msgid "tStart for selected" +msgstr "" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "" + +msgid "tArchive every" +msgstr "" + +msgid "tArchive for" +msgstr "" + +msgid "tArchive window" +msgstr "" + +msgid "tBackup type" +msgstr "" + +msgid "tEnable internet mode (requires server restart)" +msgstr "" + +msgid "tInternet server name/IP" +msgstr "" + +msgid "tInternet server port" +msgstr "" + +msgid "tDo image backups over internet" +msgstr "" + +msgid "tDo full file backups over internet" +msgstr "" + +msgid "tMax backup speed for internet connection" +msgstr "" + +msgid "tTotal max backup speed for internet connection" +msgstr "" + +msgid "tEncrypted transfer" +msgstr "" + +msgid "tCompressed transfer" +msgstr "" + +msgid "file_backup" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "days" +msgstr "" + +msgid "weeks" +msgstr "" + +msgid "months" +msgstr "" + +msgid "year" +msgstr "" + +msgid "hour" +msgstr "" + +msgid "day" +msgstr "" + +msgid "week" +msgstr "" + +msgid "month" +msgstr "" + +msgid "years" +msgstr "" + +msgid "min" +msgstr "" + +msgid "mins" +msgstr "" + +msgid "validate_name_archive_every" +msgstr "" + +msgid "validate_name_archive_for" +msgstr "" + +msgid "forever" +msgstr "" + +msgid "backup_in_progress" +msgstr "" + +msgid "really_remove_clients" +msgstr "" + +msgid "no_client_selected" +msgstr "" + +msgid "queued_backup" +msgstr "" + +msgid "starting_backup_failed" +msgstr "" + +msgid "trying_to_stop_backup" +msgstr "" + +msgid "unarchived_in" +msgstr "" + +msgid "validate_err_notregexp_archive_window" +msgstr "" + +msgid "wait_for_archive_window" +msgstr "" + +msgid "validate_err_notregexp_image_letters" +msgstr "" + +msgid "validate_name_global_local_speed" +msgstr "" + +msgid "validate_name_global_internet_speed" +msgstr "" + +msgid "validate_name_local_speed" +msgstr "" + +msgid "validate_name_internet_speed" +msgstr "" + +msgid "enter_clientname" +msgstr "" + +msgid "internet_client_added" +msgstr "" + +msgid "change_pw" +msgstr "" + +msgid "old_pw_wrong" +msgstr "" + +msgid "tID" +msgstr "" + +msgid "tFile" +msgstr "" + +msgid "tSize" +msgstr "" + +msgid "tIncremental" +msgstr "" + +msgid "tLoading" +msgstr "" + +msgid "tStorage usage of" +msgstr "" + +msgid "tDelete domain" +msgstr "" + +msgid "tChange rights for user" +msgstr "" + +msgid "tDomain" +msgstr "" + +msgid "tTranslation" +msgstr "" + +msgid "tNew domain" +msgstr "" + +msgid "tChange" +msgstr "" + +msgid "tChange password for user" +msgstr "" + +msgid "tSaved settings successfully" +msgstr "" + +msgid "tThis client is going to be removed." +msgstr "" + +msgid "tStop removing client" +msgstr "" + +msgid "tFailed" +msgstr "" + +msgid "tSuccessfull" +msgstr "" + +msgid "tInfo" +msgstr "" + +msgid "tError" +msgstr "" + +msgid "tWarning" +msgstr "" + +msgid "tCurrent version" +msgstr "" + +msgid "tTarget version" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "" + +msgid "tNext archival" +msgstr "" + +msgid "tweeks" +msgstr "" + +msgid "tmonth" +msgstr "" + +msgid "tyears" +msgstr "" + +msgid "tforever" +msgstr "" + +msgid "tFile backup" +msgstr "" + +msgid "tIncremental file backup" +msgstr "" + +msgid "tFull file backup" +msgstr "" + +msgid "tEnable internet mode" +msgstr "" + +msgid "tInternet auth key" +msgstr "" + +msgid "tIncremental image backup" +msgstr "" + +msgid "tFull image backup" +msgstr "" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "" + +msgid "tArchived" +msgstr "" + +msgid "nospc_stalled_text" +msgstr "" + +msgid "nospc_fatal_text" +msgstr "" + +msgid "tNondefault temporary file directory" +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/it_IT.po b/urbackupserver/www/translations/urbackup.webinterface/it_IT.po new file mode 100644 index 00000000..3f8279ea --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/it_IT.po @@ -0,0 +1,1127 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:33+0000\n" +"Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/urbackup/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "action_1" +msgstr "" + +msgid "action_2" +msgstr "" + +msgid "action_3" +msgstr "" + +msgid "action_4" +msgstr "" + +msgid "action_1_d" +msgstr "" + +msgid "action_2_d" +msgstr "" + +msgid "action_3_d" +msgstr "" + +msgid "action_4_d" +msgstr "" + +msgid "nav_item_6" +msgstr "" + +msgid "nav_item_5" +msgstr "" + +msgid "nav_item_4" +msgstr "" + +msgid "nav_item_3" +msgstr "" + +msgid "nav_item_2" +msgstr "" + +msgid "nav_item_1" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "overview" +msgstr "" + +msgid "ok" +msgstr "" + +msgid "no_recent_backup" +msgstr "" + +msgid "backup_never" +msgstr "" + +msgid "yes" +msgstr "" + +msgid "no" +msgstr "" + +msgid "tBackup status" +msgstr "" + +msgid "tComputer name" +msgstr "" + +msgid "tLast seen" +msgstr "" + +msgid "tLast file backup" +msgstr "" + +msgid "tLast image backup" +msgstr "" + +msgid "tFile backup status" +msgstr "" + +msgid "tImage backup status" +msgstr "" + +msgid "tShow details" +msgstr "" + +msgid "tExtra clients" +msgstr "" + +msgid "tNo extra clients" +msgstr "" + +msgid "tActions" +msgstr "" + +msgid "tOnline" +msgstr "" + +msgid "tHostname/IP" +msgstr "" + +msgid "tServer identity" +msgstr "" + +msgid "users" +msgstr "" + +msgid "general_settings" +msgstr "" + +msgid "admin" +msgstr "" + +msgid "user" +msgstr "" + +msgid "username_empty" +msgstr "" + +msgid "password_empty" +msgstr "" + +msgid "password_differ" +msgstr "" + +msgid "user_n_exist" +msgstr "" + +msgid "password_wrong" +msgstr "" + +msgid "user_exists" +msgstr "" + +msgid "session_timeout" +msgstr "" + +msgid "really_del_user" +msgstr "" + +msgid "user_add_done" +msgstr "" + +msgid "user_remove_done" +msgstr "" + +msgid "user_update_right_done" +msgstr "" + +msgid "user_pw_change_ok" +msgstr "" + +msgid "right_all" +msgstr "" + +msgid "right_none" +msgstr "" + +msgid "filter" +msgstr "" + +msgid "all" +msgstr "" + +msgid "loglevel_0" +msgstr "" + +msgid "loglevel_1" +msgstr "" + +msgid "loglevel_2" +msgstr "" + +msgid "dir_error_text" +msgstr "" + +msgid "tmpdir_error_text" +msgstr "" + +msgid "starting" +msgstr "" + +msgid "ident_err" +msgstr "" + +msgid "enter_hostname" +msgstr "" + +msgid "clients" +msgstr "" + +msgid "validate_text_empty" +msgstr "" + +msgid "validate_text_notint" +msgstr "" + +msgid "validate_name_update_freq_incr" +msgstr "" + +msgid "validate_name_update_freq_full" +msgstr "" + +msgid "validate_name_update_freq_image_full" +msgstr "" + +msgid "validate_name_update_freq_image_incr" +msgstr "" + +msgid "validate_name_max_file_incr" +msgstr "" + +msgid "validate_name_min_file_incr" +msgstr "" + +msgid "validate_name_max_file_full" +msgstr "" + +msgid "validate_name_min_file_full" +msgstr "" + +msgid "validate_name_min_image_incr" +msgstr "" + +msgid "validate_name_max_image_incr" +msgstr "" + +msgid "validate_name_min_image_full" +msgstr "" + +msgid "validate_name_max_image_full" +msgstr "" + +msgid "validate_name_startup_backup_delay" +msgstr "" + +msgid "validate_err_notregexp_backup_window" +msgstr "" + +msgid "validate_name_max_active_clients" +msgstr "" + +msgid "validate_name_max_sim_backups" +msgstr "" + +msgid "validate_name_backupfolder" +msgstr "" + +msgid "validate_name_computername" +msgstr "" + +msgid "too_many_clients_err" +msgstr "" + +msgid "really_remove_client" +msgstr "" + +msgid "computername" +msgstr "" + +msgid "storage_usage_pie_graph_title" +msgstr "" + +msgid "storage_usage_pie_graph_colname1" +msgstr "" + +msgid "storage_usage_pie_graph_colname2" +msgstr "" + +msgid "storage_usage_bar_graph_title" +msgstr "" + +msgid "storage_usage_bar_graph_colname1" +msgstr "" + +msgid "storage_usage_bar_graph_colname2" +msgstr "" + +msgid "tImages" +msgstr "" + +msgid "tFiles" +msgstr "" + +msgid "tSum" +msgstr "" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "" + +msgid "mail_settings" +msgstr "" + +msgid "upgrade_error_text" +msgstr "" + +msgid "tActivities" +msgstr "" + +msgid "tAction" +msgstr "" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "" + +msgid "tLast activities" +msgstr "" + +msgid "tStarting time" +msgstr "" + +msgid "tRequired time" +msgstr "" + +msgid "tUsed Storage" +msgstr "" + +msgid "tClients" +msgstr "" + +msgid "tLogs" +msgstr "" + +msgid "tReports" +msgstr "" + +msgid "tSend reports to" +msgstr "" + +msgid "tSend" +msgstr "" + +msgid "tBackups with a log message of at least log level" +msgstr "" + +msgid "tBackup time" +msgstr "" + +msgid "tErrors" +msgstr "" + +msgid "tWarnings" +msgstr "" + +msgid "tStorage allocation" +msgstr "" + +msgid "tStorage usage" +msgstr "" + +msgid "tAll" +msgstr "" + +msgid "tBackup storage path" +msgstr "" + +msgid "tDo not do image backups" +msgstr "" + +msgid "tDo not do file backups" +msgstr "" + +msgid "tAutomatically shut down server" +msgstr "" + +msgid "tAutoupdate clients" +msgstr "" + +msgid "tMax number of simultaneous backups" +msgstr "" + +msgid "tMax number of recently active clients" +msgstr "" + +msgid "tCleanup time window" +msgstr "" + +msgid "tAutomatically backup UrBackup database" +msgstr "" + +msgid "tInterval for incremental file backups" +msgstr "" + +msgid "tInterval for full file backups" +msgstr "" + +msgid "tInterval for incremental image backups" +msgstr "" + +msgid "tInterval for full image backups" +msgstr "" + +msgid "tMaximal number of incremental file backups" +msgstr "" + +msgid "tMinimal number of incremental file backups" +msgstr "" + +msgid "tMaximal number of full file backups" +msgstr "" + +msgid "tMinimal number of full file backups" +msgstr "" + +msgid "tMaximal number of incremental image backups" +msgstr "" + +msgid "tMinimal number of incremental image backups" +msgstr "" + +msgid "tMaximal number of full image backups" +msgstr "" + +msgid "tMinimal number of full image backups" +msgstr "" + +msgid "tDelay after system startup" +msgstr "" + +msgid "tBackup window" +msgstr "" + +msgid "tExcluded files (with wildcards)" +msgstr "" + +msgid "tIncluded files (with wildcards)" +msgstr "" + +msgid "tDefault directories to backup" +msgstr "" + +msgid "tVolumes to backup" +msgstr "" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "" + +msgid "tAllow client-side starting of file backups" +msgstr "" + +msgid "tAllow client-side starting of image backups" +msgstr "" + +msgid "tAllow client-side viewing of backup logs" +msgstr "" + +msgid "tAllow client-side pausing of backups" +msgstr "" + +msgid "tAllow client-side changing of settings" +msgstr "" + +msgid "tdays" +msgstr "" + +msgid "thours" +msgstr "" + +msgid "tmin" +msgstr "" + +msgid "tMail server name" +msgstr "" + +msgid "tMail server port" +msgstr "" + +msgid "tMail server username (empty for none)" +msgstr "" + +msgid "tMail server password" +msgstr "" + +msgid "tSender E-Mail Address" +msgstr "" + +msgid "tSend mails only with SSL/TLS" +msgstr "" + +msgid "tCheck SSL/TLS certificate" +msgstr "" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "" + +msgid "tTest Mail sent successfully" +msgstr "" + +msgid "tSending test mail failed. Error:" +msgstr "" + +msgid "tFilter" +msgstr "" + +msgid "tBack" +msgstr "" + +msgid "tAdd" +msgstr "" + +msgid "tRemove" +msgstr "" + +msgid "tSave" +msgstr "" + +msgid "tLevel" +msgstr "" + +msgid "tTime" +msgstr "" + +msgid "tMessage" +msgstr "" + +msgid "tLog" +msgstr "" + +msgid "tUsername" +msgstr "" + +msgid "tRights" +msgstr "" + +msgid "tNo Users" +msgstr "" + +msgid "tCreate user" +msgstr "" + +msgid "tPassword" +msgstr "" + +msgid "tRepeat password" +msgstr "" + +msgid "tRights for" +msgstr "" + +msgid "tAbort" +msgstr "" + +msgid "tCreate" +msgstr "" + +msgid "tChange rights" +msgstr "" + +msgid "tChange password" +msgstr "" + +msgid "tLogin" +msgstr "" + +msgid "tInfos" +msgstr "" + +msgid "tSeparate settings for this client" +msgstr "" + +msgid "tServer" +msgstr "" + +msgid "tFile backups" +msgstr "" + +msgid "tImage backups" +msgstr "" + +msgid "tPermissions" +msgstr "" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "" + +msgid "tMax backup speed for local network" +msgstr "" + +msgid "tNo activities" +msgstr "" + +msgid "tSelect all" +msgstr "" + +msgid "tSelect none" +msgstr "" + +msgid "tRemove selected" +msgstr "" + +msgid "tStart for selected" +msgstr "" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "" + +msgid "tArchive every" +msgstr "" + +msgid "tArchive for" +msgstr "" + +msgid "tArchive window" +msgstr "" + +msgid "tBackup type" +msgstr "" + +msgid "tEnable internet mode (requires server restart)" +msgstr "" + +msgid "tInternet server name/IP" +msgstr "" + +msgid "tInternet server port" +msgstr "" + +msgid "tDo image backups over internet" +msgstr "" + +msgid "tDo full file backups over internet" +msgstr "" + +msgid "tMax backup speed for internet connection" +msgstr "" + +msgid "tTotal max backup speed for internet connection" +msgstr "" + +msgid "tEncrypted transfer" +msgstr "" + +msgid "tCompressed transfer" +msgstr "" + +msgid "file_backup" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "days" +msgstr "" + +msgid "weeks" +msgstr "" + +msgid "months" +msgstr "" + +msgid "year" +msgstr "" + +msgid "hour" +msgstr "" + +msgid "day" +msgstr "" + +msgid "week" +msgstr "" + +msgid "month" +msgstr "" + +msgid "years" +msgstr "" + +msgid "min" +msgstr "" + +msgid "mins" +msgstr "" + +msgid "validate_name_archive_every" +msgstr "" + +msgid "validate_name_archive_for" +msgstr "" + +msgid "forever" +msgstr "" + +msgid "backup_in_progress" +msgstr "" + +msgid "really_remove_clients" +msgstr "" + +msgid "no_client_selected" +msgstr "" + +msgid "queued_backup" +msgstr "" + +msgid "starting_backup_failed" +msgstr "" + +msgid "trying_to_stop_backup" +msgstr "" + +msgid "unarchived_in" +msgstr "" + +msgid "validate_err_notregexp_archive_window" +msgstr "" + +msgid "wait_for_archive_window" +msgstr "" + +msgid "validate_err_notregexp_image_letters" +msgstr "" + +msgid "validate_name_global_local_speed" +msgstr "" + +msgid "validate_name_global_internet_speed" +msgstr "" + +msgid "validate_name_local_speed" +msgstr "" + +msgid "validate_name_internet_speed" +msgstr "" + +msgid "enter_clientname" +msgstr "" + +msgid "internet_client_added" +msgstr "" + +msgid "change_pw" +msgstr "" + +msgid "old_pw_wrong" +msgstr "" + +msgid "tID" +msgstr "" + +msgid "tFile" +msgstr "" + +msgid "tSize" +msgstr "" + +msgid "tIncremental" +msgstr "" + +msgid "tLoading" +msgstr "" + +msgid "tStorage usage of" +msgstr "" + +msgid "tDelete domain" +msgstr "" + +msgid "tChange rights for user" +msgstr "" + +msgid "tDomain" +msgstr "" + +msgid "tTranslation" +msgstr "" + +msgid "tNew domain" +msgstr "" + +msgid "tChange" +msgstr "" + +msgid "tChange password for user" +msgstr "" + +msgid "tSaved settings successfully" +msgstr "" + +msgid "tThis client is going to be removed." +msgstr "" + +msgid "tStop removing client" +msgstr "" + +msgid "tFailed" +msgstr "" + +msgid "tSuccessfull" +msgstr "" + +msgid "tInfo" +msgstr "" + +msgid "tError" +msgstr "" + +msgid "tWarning" +msgstr "" + +msgid "tCurrent version" +msgstr "" + +msgid "tTarget version" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "" + +msgid "tNext archival" +msgstr "" + +msgid "tweeks" +msgstr "" + +msgid "tmonth" +msgstr "" + +msgid "tyears" +msgstr "" + +msgid "tforever" +msgstr "" + +msgid "tFile backup" +msgstr "" + +msgid "tIncremental file backup" +msgstr "" + +msgid "tFull file backup" +msgstr "" + +msgid "tEnable internet mode" +msgstr "" + +msgid "tInternet auth key" +msgstr "" + +msgid "tIncremental image backup" +msgstr "" + +msgid "tFull image backup" +msgstr "" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "" + +msgid "tArchived" +msgstr "" + +msgid "nospc_stalled_text" +msgstr "" + +msgid "nospc_fatal_text" +msgstr "" + +msgid "tNondefault temporary file directory" +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/nl.po b/urbackupserver/www/translations/urbackup.webinterface/nl.po new file mode 100644 index 00000000..612db425 --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/nl.po @@ -0,0 +1,1127 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:33+0000\n" +"Language-Team: Dutch (http://www.transifex.com/projects/p/urbackup/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "action_1" +msgstr "" + +msgid "action_2" +msgstr "" + +msgid "action_3" +msgstr "" + +msgid "action_4" +msgstr "" + +msgid "action_1_d" +msgstr "" + +msgid "action_2_d" +msgstr "" + +msgid "action_3_d" +msgstr "" + +msgid "action_4_d" +msgstr "" + +msgid "nav_item_6" +msgstr "" + +msgid "nav_item_5" +msgstr "" + +msgid "nav_item_4" +msgstr "" + +msgid "nav_item_3" +msgstr "" + +msgid "nav_item_2" +msgstr "" + +msgid "nav_item_1" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "overview" +msgstr "" + +msgid "ok" +msgstr "" + +msgid "no_recent_backup" +msgstr "" + +msgid "backup_never" +msgstr "" + +msgid "yes" +msgstr "" + +msgid "no" +msgstr "" + +msgid "tBackup status" +msgstr "" + +msgid "tComputer name" +msgstr "" + +msgid "tLast seen" +msgstr "" + +msgid "tLast file backup" +msgstr "" + +msgid "tLast image backup" +msgstr "" + +msgid "tFile backup status" +msgstr "" + +msgid "tImage backup status" +msgstr "" + +msgid "tShow details" +msgstr "" + +msgid "tExtra clients" +msgstr "" + +msgid "tNo extra clients" +msgstr "" + +msgid "tActions" +msgstr "" + +msgid "tOnline" +msgstr "" + +msgid "tHostname/IP" +msgstr "" + +msgid "tServer identity" +msgstr "" + +msgid "users" +msgstr "" + +msgid "general_settings" +msgstr "" + +msgid "admin" +msgstr "" + +msgid "user" +msgstr "" + +msgid "username_empty" +msgstr "" + +msgid "password_empty" +msgstr "" + +msgid "password_differ" +msgstr "" + +msgid "user_n_exist" +msgstr "" + +msgid "password_wrong" +msgstr "" + +msgid "user_exists" +msgstr "" + +msgid "session_timeout" +msgstr "" + +msgid "really_del_user" +msgstr "" + +msgid "user_add_done" +msgstr "" + +msgid "user_remove_done" +msgstr "" + +msgid "user_update_right_done" +msgstr "" + +msgid "user_pw_change_ok" +msgstr "" + +msgid "right_all" +msgstr "" + +msgid "right_none" +msgstr "" + +msgid "filter" +msgstr "" + +msgid "all" +msgstr "" + +msgid "loglevel_0" +msgstr "" + +msgid "loglevel_1" +msgstr "" + +msgid "loglevel_2" +msgstr "" + +msgid "dir_error_text" +msgstr "" + +msgid "tmpdir_error_text" +msgstr "" + +msgid "starting" +msgstr "" + +msgid "ident_err" +msgstr "" + +msgid "enter_hostname" +msgstr "" + +msgid "clients" +msgstr "" + +msgid "validate_text_empty" +msgstr "" + +msgid "validate_text_notint" +msgstr "" + +msgid "validate_name_update_freq_incr" +msgstr "" + +msgid "validate_name_update_freq_full" +msgstr "" + +msgid "validate_name_update_freq_image_full" +msgstr "" + +msgid "validate_name_update_freq_image_incr" +msgstr "" + +msgid "validate_name_max_file_incr" +msgstr "" + +msgid "validate_name_min_file_incr" +msgstr "" + +msgid "validate_name_max_file_full" +msgstr "" + +msgid "validate_name_min_file_full" +msgstr "" + +msgid "validate_name_min_image_incr" +msgstr "" + +msgid "validate_name_max_image_incr" +msgstr "" + +msgid "validate_name_min_image_full" +msgstr "" + +msgid "validate_name_max_image_full" +msgstr "" + +msgid "validate_name_startup_backup_delay" +msgstr "" + +msgid "validate_err_notregexp_backup_window" +msgstr "" + +msgid "validate_name_max_active_clients" +msgstr "" + +msgid "validate_name_max_sim_backups" +msgstr "" + +msgid "validate_name_backupfolder" +msgstr "" + +msgid "validate_name_computername" +msgstr "" + +msgid "too_many_clients_err" +msgstr "" + +msgid "really_remove_client" +msgstr "" + +msgid "computername" +msgstr "" + +msgid "storage_usage_pie_graph_title" +msgstr "" + +msgid "storage_usage_pie_graph_colname1" +msgstr "" + +msgid "storage_usage_pie_graph_colname2" +msgstr "" + +msgid "storage_usage_bar_graph_title" +msgstr "" + +msgid "storage_usage_bar_graph_colname1" +msgstr "" + +msgid "storage_usage_bar_graph_colname2" +msgstr "" + +msgid "tImages" +msgstr "" + +msgid "tFiles" +msgstr "" + +msgid "tSum" +msgstr "" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "" + +msgid "mail_settings" +msgstr "" + +msgid "upgrade_error_text" +msgstr "" + +msgid "tActivities" +msgstr "" + +msgid "tAction" +msgstr "" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "" + +msgid "tLast activities" +msgstr "" + +msgid "tStarting time" +msgstr "" + +msgid "tRequired time" +msgstr "" + +msgid "tUsed Storage" +msgstr "" + +msgid "tClients" +msgstr "" + +msgid "tLogs" +msgstr "" + +msgid "tReports" +msgstr "" + +msgid "tSend reports to" +msgstr "" + +msgid "tSend" +msgstr "" + +msgid "tBackups with a log message of at least log level" +msgstr "" + +msgid "tBackup time" +msgstr "" + +msgid "tErrors" +msgstr "" + +msgid "tWarnings" +msgstr "" + +msgid "tStorage allocation" +msgstr "" + +msgid "tStorage usage" +msgstr "" + +msgid "tAll" +msgstr "" + +msgid "tBackup storage path" +msgstr "" + +msgid "tDo not do image backups" +msgstr "" + +msgid "tDo not do file backups" +msgstr "" + +msgid "tAutomatically shut down server" +msgstr "" + +msgid "tAutoupdate clients" +msgstr "" + +msgid "tMax number of simultaneous backups" +msgstr "" + +msgid "tMax number of recently active clients" +msgstr "" + +msgid "tCleanup time window" +msgstr "" + +msgid "tAutomatically backup UrBackup database" +msgstr "" + +msgid "tInterval for incremental file backups" +msgstr "" + +msgid "tInterval for full file backups" +msgstr "" + +msgid "tInterval for incremental image backups" +msgstr "" + +msgid "tInterval for full image backups" +msgstr "" + +msgid "tMaximal number of incremental file backups" +msgstr "" + +msgid "tMinimal number of incremental file backups" +msgstr "" + +msgid "tMaximal number of full file backups" +msgstr "" + +msgid "tMinimal number of full file backups" +msgstr "" + +msgid "tMaximal number of incremental image backups" +msgstr "" + +msgid "tMinimal number of incremental image backups" +msgstr "" + +msgid "tMaximal number of full image backups" +msgstr "" + +msgid "tMinimal number of full image backups" +msgstr "" + +msgid "tDelay after system startup" +msgstr "" + +msgid "tBackup window" +msgstr "" + +msgid "tExcluded files (with wildcards)" +msgstr "" + +msgid "tIncluded files (with wildcards)" +msgstr "" + +msgid "tDefault directories to backup" +msgstr "" + +msgid "tVolumes to backup" +msgstr "" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "" + +msgid "tAllow client-side starting of file backups" +msgstr "" + +msgid "tAllow client-side starting of image backups" +msgstr "" + +msgid "tAllow client-side viewing of backup logs" +msgstr "" + +msgid "tAllow client-side pausing of backups" +msgstr "" + +msgid "tAllow client-side changing of settings" +msgstr "" + +msgid "tdays" +msgstr "" + +msgid "thours" +msgstr "" + +msgid "tmin" +msgstr "" + +msgid "tMail server name" +msgstr "" + +msgid "tMail server port" +msgstr "" + +msgid "tMail server username (empty for none)" +msgstr "" + +msgid "tMail server password" +msgstr "" + +msgid "tSender E-Mail Address" +msgstr "" + +msgid "tSend mails only with SSL/TLS" +msgstr "" + +msgid "tCheck SSL/TLS certificate" +msgstr "" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "" + +msgid "tTest Mail sent successfully" +msgstr "" + +msgid "tSending test mail failed. Error:" +msgstr "" + +msgid "tFilter" +msgstr "" + +msgid "tBack" +msgstr "" + +msgid "tAdd" +msgstr "" + +msgid "tRemove" +msgstr "" + +msgid "tSave" +msgstr "" + +msgid "tLevel" +msgstr "" + +msgid "tTime" +msgstr "" + +msgid "tMessage" +msgstr "" + +msgid "tLog" +msgstr "" + +msgid "tUsername" +msgstr "" + +msgid "tRights" +msgstr "" + +msgid "tNo Users" +msgstr "" + +msgid "tCreate user" +msgstr "" + +msgid "tPassword" +msgstr "" + +msgid "tRepeat password" +msgstr "" + +msgid "tRights for" +msgstr "" + +msgid "tAbort" +msgstr "" + +msgid "tCreate" +msgstr "" + +msgid "tChange rights" +msgstr "" + +msgid "tChange password" +msgstr "" + +msgid "tLogin" +msgstr "" + +msgid "tInfos" +msgstr "" + +msgid "tSeparate settings for this client" +msgstr "" + +msgid "tServer" +msgstr "" + +msgid "tFile backups" +msgstr "" + +msgid "tImage backups" +msgstr "" + +msgid "tPermissions" +msgstr "" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "" + +msgid "tMax backup speed for local network" +msgstr "" + +msgid "tNo activities" +msgstr "" + +msgid "tSelect all" +msgstr "" + +msgid "tSelect none" +msgstr "" + +msgid "tRemove selected" +msgstr "" + +msgid "tStart for selected" +msgstr "" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "" + +msgid "tArchive every" +msgstr "" + +msgid "tArchive for" +msgstr "" + +msgid "tArchive window" +msgstr "" + +msgid "tBackup type" +msgstr "" + +msgid "tEnable internet mode (requires server restart)" +msgstr "" + +msgid "tInternet server name/IP" +msgstr "" + +msgid "tInternet server port" +msgstr "" + +msgid "tDo image backups over internet" +msgstr "" + +msgid "tDo full file backups over internet" +msgstr "" + +msgid "tMax backup speed for internet connection" +msgstr "" + +msgid "tTotal max backup speed for internet connection" +msgstr "" + +msgid "tEncrypted transfer" +msgstr "" + +msgid "tCompressed transfer" +msgstr "" + +msgid "file_backup" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "days" +msgstr "" + +msgid "weeks" +msgstr "" + +msgid "months" +msgstr "" + +msgid "year" +msgstr "" + +msgid "hour" +msgstr "" + +msgid "day" +msgstr "" + +msgid "week" +msgstr "" + +msgid "month" +msgstr "" + +msgid "years" +msgstr "" + +msgid "min" +msgstr "" + +msgid "mins" +msgstr "" + +msgid "validate_name_archive_every" +msgstr "" + +msgid "validate_name_archive_for" +msgstr "" + +msgid "forever" +msgstr "" + +msgid "backup_in_progress" +msgstr "" + +msgid "really_remove_clients" +msgstr "" + +msgid "no_client_selected" +msgstr "" + +msgid "queued_backup" +msgstr "" + +msgid "starting_backup_failed" +msgstr "" + +msgid "trying_to_stop_backup" +msgstr "" + +msgid "unarchived_in" +msgstr "" + +msgid "validate_err_notregexp_archive_window" +msgstr "" + +msgid "wait_for_archive_window" +msgstr "" + +msgid "validate_err_notregexp_image_letters" +msgstr "" + +msgid "validate_name_global_local_speed" +msgstr "" + +msgid "validate_name_global_internet_speed" +msgstr "" + +msgid "validate_name_local_speed" +msgstr "" + +msgid "validate_name_internet_speed" +msgstr "" + +msgid "enter_clientname" +msgstr "" + +msgid "internet_client_added" +msgstr "" + +msgid "change_pw" +msgstr "" + +msgid "old_pw_wrong" +msgstr "" + +msgid "tID" +msgstr "" + +msgid "tFile" +msgstr "" + +msgid "tSize" +msgstr "" + +msgid "tIncremental" +msgstr "" + +msgid "tLoading" +msgstr "" + +msgid "tStorage usage of" +msgstr "" + +msgid "tDelete domain" +msgstr "" + +msgid "tChange rights for user" +msgstr "" + +msgid "tDomain" +msgstr "" + +msgid "tTranslation" +msgstr "" + +msgid "tNew domain" +msgstr "" + +msgid "tChange" +msgstr "" + +msgid "tChange password for user" +msgstr "" + +msgid "tSaved settings successfully" +msgstr "" + +msgid "tThis client is going to be removed." +msgstr "" + +msgid "tStop removing client" +msgstr "" + +msgid "tFailed" +msgstr "" + +msgid "tSuccessfull" +msgstr "" + +msgid "tInfo" +msgstr "" + +msgid "tError" +msgstr "" + +msgid "tWarning" +msgstr "" + +msgid "tCurrent version" +msgstr "" + +msgid "tTarget version" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "" + +msgid "tNext archival" +msgstr "" + +msgid "tweeks" +msgstr "" + +msgid "tmonth" +msgstr "" + +msgid "tyears" +msgstr "" + +msgid "tforever" +msgstr "" + +msgid "tFile backup" +msgstr "" + +msgid "tIncremental file backup" +msgstr "" + +msgid "tFull file backup" +msgstr "" + +msgid "tEnable internet mode" +msgstr "" + +msgid "tInternet auth key" +msgstr "" + +msgid "tIncremental image backup" +msgstr "" + +msgid "tFull image backup" +msgstr "" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "" + +msgid "tArchived" +msgstr "" + +msgid "nospc_stalled_text" +msgstr "" + +msgid "nospc_fatal_text" +msgstr "" + +msgid "tNondefault temporary file directory" +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/no_NO.po b/urbackupserver/www/translations/urbackup.webinterface/no_NO.po new file mode 100644 index 00000000..4c644d9f --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/no_NO.po @@ -0,0 +1,1127 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:33+0000\n" +"Language-Team: Norwegian (Norway) (http://www.transifex.com/projects/p/urbackup/language/no_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "action_1" +msgstr "" + +msgid "action_2" +msgstr "" + +msgid "action_3" +msgstr "" + +msgid "action_4" +msgstr "" + +msgid "action_1_d" +msgstr "" + +msgid "action_2_d" +msgstr "" + +msgid "action_3_d" +msgstr "" + +msgid "action_4_d" +msgstr "" + +msgid "nav_item_6" +msgstr "" + +msgid "nav_item_5" +msgstr "" + +msgid "nav_item_4" +msgstr "" + +msgid "nav_item_3" +msgstr "" + +msgid "nav_item_2" +msgstr "" + +msgid "nav_item_1" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "overview" +msgstr "" + +msgid "ok" +msgstr "" + +msgid "no_recent_backup" +msgstr "" + +msgid "backup_never" +msgstr "" + +msgid "yes" +msgstr "" + +msgid "no" +msgstr "" + +msgid "tBackup status" +msgstr "" + +msgid "tComputer name" +msgstr "" + +msgid "tLast seen" +msgstr "" + +msgid "tLast file backup" +msgstr "" + +msgid "tLast image backup" +msgstr "" + +msgid "tFile backup status" +msgstr "" + +msgid "tImage backup status" +msgstr "" + +msgid "tShow details" +msgstr "" + +msgid "tExtra clients" +msgstr "" + +msgid "tNo extra clients" +msgstr "" + +msgid "tActions" +msgstr "" + +msgid "tOnline" +msgstr "" + +msgid "tHostname/IP" +msgstr "" + +msgid "tServer identity" +msgstr "" + +msgid "users" +msgstr "" + +msgid "general_settings" +msgstr "" + +msgid "admin" +msgstr "" + +msgid "user" +msgstr "" + +msgid "username_empty" +msgstr "" + +msgid "password_empty" +msgstr "" + +msgid "password_differ" +msgstr "" + +msgid "user_n_exist" +msgstr "" + +msgid "password_wrong" +msgstr "" + +msgid "user_exists" +msgstr "" + +msgid "session_timeout" +msgstr "" + +msgid "really_del_user" +msgstr "" + +msgid "user_add_done" +msgstr "" + +msgid "user_remove_done" +msgstr "" + +msgid "user_update_right_done" +msgstr "" + +msgid "user_pw_change_ok" +msgstr "" + +msgid "right_all" +msgstr "" + +msgid "right_none" +msgstr "" + +msgid "filter" +msgstr "" + +msgid "all" +msgstr "" + +msgid "loglevel_0" +msgstr "" + +msgid "loglevel_1" +msgstr "" + +msgid "loglevel_2" +msgstr "" + +msgid "dir_error_text" +msgstr "" + +msgid "tmpdir_error_text" +msgstr "" + +msgid "starting" +msgstr "" + +msgid "ident_err" +msgstr "" + +msgid "enter_hostname" +msgstr "" + +msgid "clients" +msgstr "" + +msgid "validate_text_empty" +msgstr "" + +msgid "validate_text_notint" +msgstr "" + +msgid "validate_name_update_freq_incr" +msgstr "" + +msgid "validate_name_update_freq_full" +msgstr "" + +msgid "validate_name_update_freq_image_full" +msgstr "" + +msgid "validate_name_update_freq_image_incr" +msgstr "" + +msgid "validate_name_max_file_incr" +msgstr "" + +msgid "validate_name_min_file_incr" +msgstr "" + +msgid "validate_name_max_file_full" +msgstr "" + +msgid "validate_name_min_file_full" +msgstr "" + +msgid "validate_name_min_image_incr" +msgstr "" + +msgid "validate_name_max_image_incr" +msgstr "" + +msgid "validate_name_min_image_full" +msgstr "" + +msgid "validate_name_max_image_full" +msgstr "" + +msgid "validate_name_startup_backup_delay" +msgstr "" + +msgid "validate_err_notregexp_backup_window" +msgstr "" + +msgid "validate_name_max_active_clients" +msgstr "" + +msgid "validate_name_max_sim_backups" +msgstr "" + +msgid "validate_name_backupfolder" +msgstr "" + +msgid "validate_name_computername" +msgstr "" + +msgid "too_many_clients_err" +msgstr "" + +msgid "really_remove_client" +msgstr "" + +msgid "computername" +msgstr "" + +msgid "storage_usage_pie_graph_title" +msgstr "" + +msgid "storage_usage_pie_graph_colname1" +msgstr "" + +msgid "storage_usage_pie_graph_colname2" +msgstr "" + +msgid "storage_usage_bar_graph_title" +msgstr "" + +msgid "storage_usage_bar_graph_colname1" +msgstr "" + +msgid "storage_usage_bar_graph_colname2" +msgstr "" + +msgid "tImages" +msgstr "" + +msgid "tFiles" +msgstr "" + +msgid "tSum" +msgstr "" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "" + +msgid "mail_settings" +msgstr "" + +msgid "upgrade_error_text" +msgstr "" + +msgid "tActivities" +msgstr "" + +msgid "tAction" +msgstr "" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "" + +msgid "tLast activities" +msgstr "" + +msgid "tStarting time" +msgstr "" + +msgid "tRequired time" +msgstr "" + +msgid "tUsed Storage" +msgstr "" + +msgid "tClients" +msgstr "" + +msgid "tLogs" +msgstr "" + +msgid "tReports" +msgstr "" + +msgid "tSend reports to" +msgstr "" + +msgid "tSend" +msgstr "" + +msgid "tBackups with a log message of at least log level" +msgstr "" + +msgid "tBackup time" +msgstr "" + +msgid "tErrors" +msgstr "" + +msgid "tWarnings" +msgstr "" + +msgid "tStorage allocation" +msgstr "" + +msgid "tStorage usage" +msgstr "" + +msgid "tAll" +msgstr "" + +msgid "tBackup storage path" +msgstr "" + +msgid "tDo not do image backups" +msgstr "" + +msgid "tDo not do file backups" +msgstr "" + +msgid "tAutomatically shut down server" +msgstr "" + +msgid "tAutoupdate clients" +msgstr "" + +msgid "tMax number of simultaneous backups" +msgstr "" + +msgid "tMax number of recently active clients" +msgstr "" + +msgid "tCleanup time window" +msgstr "" + +msgid "tAutomatically backup UrBackup database" +msgstr "" + +msgid "tInterval for incremental file backups" +msgstr "" + +msgid "tInterval for full file backups" +msgstr "" + +msgid "tInterval for incremental image backups" +msgstr "" + +msgid "tInterval for full image backups" +msgstr "" + +msgid "tMaximal number of incremental file backups" +msgstr "" + +msgid "tMinimal number of incremental file backups" +msgstr "" + +msgid "tMaximal number of full file backups" +msgstr "" + +msgid "tMinimal number of full file backups" +msgstr "" + +msgid "tMaximal number of incremental image backups" +msgstr "" + +msgid "tMinimal number of incremental image backups" +msgstr "" + +msgid "tMaximal number of full image backups" +msgstr "" + +msgid "tMinimal number of full image backups" +msgstr "" + +msgid "tDelay after system startup" +msgstr "" + +msgid "tBackup window" +msgstr "" + +msgid "tExcluded files (with wildcards)" +msgstr "" + +msgid "tIncluded files (with wildcards)" +msgstr "" + +msgid "tDefault directories to backup" +msgstr "" + +msgid "tVolumes to backup" +msgstr "" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "" + +msgid "tAllow client-side starting of file backups" +msgstr "" + +msgid "tAllow client-side starting of image backups" +msgstr "" + +msgid "tAllow client-side viewing of backup logs" +msgstr "" + +msgid "tAllow client-side pausing of backups" +msgstr "" + +msgid "tAllow client-side changing of settings" +msgstr "" + +msgid "tdays" +msgstr "" + +msgid "thours" +msgstr "" + +msgid "tmin" +msgstr "" + +msgid "tMail server name" +msgstr "" + +msgid "tMail server port" +msgstr "" + +msgid "tMail server username (empty for none)" +msgstr "" + +msgid "tMail server password" +msgstr "" + +msgid "tSender E-Mail Address" +msgstr "" + +msgid "tSend mails only with SSL/TLS" +msgstr "" + +msgid "tCheck SSL/TLS certificate" +msgstr "" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "" + +msgid "tTest Mail sent successfully" +msgstr "" + +msgid "tSending test mail failed. Error:" +msgstr "" + +msgid "tFilter" +msgstr "" + +msgid "tBack" +msgstr "" + +msgid "tAdd" +msgstr "" + +msgid "tRemove" +msgstr "" + +msgid "tSave" +msgstr "" + +msgid "tLevel" +msgstr "" + +msgid "tTime" +msgstr "" + +msgid "tMessage" +msgstr "" + +msgid "tLog" +msgstr "" + +msgid "tUsername" +msgstr "" + +msgid "tRights" +msgstr "" + +msgid "tNo Users" +msgstr "" + +msgid "tCreate user" +msgstr "" + +msgid "tPassword" +msgstr "" + +msgid "tRepeat password" +msgstr "" + +msgid "tRights for" +msgstr "" + +msgid "tAbort" +msgstr "" + +msgid "tCreate" +msgstr "" + +msgid "tChange rights" +msgstr "" + +msgid "tChange password" +msgstr "" + +msgid "tLogin" +msgstr "" + +msgid "tInfos" +msgstr "" + +msgid "tSeparate settings for this client" +msgstr "" + +msgid "tServer" +msgstr "" + +msgid "tFile backups" +msgstr "" + +msgid "tImage backups" +msgstr "" + +msgid "tPermissions" +msgstr "" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "" + +msgid "tMax backup speed for local network" +msgstr "" + +msgid "tNo activities" +msgstr "" + +msgid "tSelect all" +msgstr "" + +msgid "tSelect none" +msgstr "" + +msgid "tRemove selected" +msgstr "" + +msgid "tStart for selected" +msgstr "" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "" + +msgid "tArchive every" +msgstr "" + +msgid "tArchive for" +msgstr "" + +msgid "tArchive window" +msgstr "" + +msgid "tBackup type" +msgstr "" + +msgid "tEnable internet mode (requires server restart)" +msgstr "" + +msgid "tInternet server name/IP" +msgstr "" + +msgid "tInternet server port" +msgstr "" + +msgid "tDo image backups over internet" +msgstr "" + +msgid "tDo full file backups over internet" +msgstr "" + +msgid "tMax backup speed for internet connection" +msgstr "" + +msgid "tTotal max backup speed for internet connection" +msgstr "" + +msgid "tEncrypted transfer" +msgstr "" + +msgid "tCompressed transfer" +msgstr "" + +msgid "file_backup" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "days" +msgstr "" + +msgid "weeks" +msgstr "" + +msgid "months" +msgstr "" + +msgid "year" +msgstr "" + +msgid "hour" +msgstr "" + +msgid "day" +msgstr "" + +msgid "week" +msgstr "" + +msgid "month" +msgstr "" + +msgid "years" +msgstr "" + +msgid "min" +msgstr "" + +msgid "mins" +msgstr "" + +msgid "validate_name_archive_every" +msgstr "" + +msgid "validate_name_archive_for" +msgstr "" + +msgid "forever" +msgstr "" + +msgid "backup_in_progress" +msgstr "" + +msgid "really_remove_clients" +msgstr "" + +msgid "no_client_selected" +msgstr "" + +msgid "queued_backup" +msgstr "" + +msgid "starting_backup_failed" +msgstr "" + +msgid "trying_to_stop_backup" +msgstr "" + +msgid "unarchived_in" +msgstr "" + +msgid "validate_err_notregexp_archive_window" +msgstr "" + +msgid "wait_for_archive_window" +msgstr "" + +msgid "validate_err_notregexp_image_letters" +msgstr "" + +msgid "validate_name_global_local_speed" +msgstr "" + +msgid "validate_name_global_internet_speed" +msgstr "" + +msgid "validate_name_local_speed" +msgstr "" + +msgid "validate_name_internet_speed" +msgstr "" + +msgid "enter_clientname" +msgstr "" + +msgid "internet_client_added" +msgstr "" + +msgid "change_pw" +msgstr "" + +msgid "old_pw_wrong" +msgstr "" + +msgid "tID" +msgstr "" + +msgid "tFile" +msgstr "" + +msgid "tSize" +msgstr "" + +msgid "tIncremental" +msgstr "" + +msgid "tLoading" +msgstr "" + +msgid "tStorage usage of" +msgstr "" + +msgid "tDelete domain" +msgstr "" + +msgid "tChange rights for user" +msgstr "" + +msgid "tDomain" +msgstr "" + +msgid "tTranslation" +msgstr "" + +msgid "tNew domain" +msgstr "" + +msgid "tChange" +msgstr "" + +msgid "tChange password for user" +msgstr "" + +msgid "tSaved settings successfully" +msgstr "" + +msgid "tThis client is going to be removed." +msgstr "" + +msgid "tStop removing client" +msgstr "" + +msgid "tFailed" +msgstr "" + +msgid "tSuccessfull" +msgstr "" + +msgid "tInfo" +msgstr "" + +msgid "tError" +msgstr "" + +msgid "tWarning" +msgstr "" + +msgid "tCurrent version" +msgstr "" + +msgid "tTarget version" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "" + +msgid "tNext archival" +msgstr "" + +msgid "tweeks" +msgstr "" + +msgid "tmonth" +msgstr "" + +msgid "tyears" +msgstr "" + +msgid "tforever" +msgstr "" + +msgid "tFile backup" +msgstr "" + +msgid "tIncremental file backup" +msgstr "" + +msgid "tFull file backup" +msgstr "" + +msgid "tEnable internet mode" +msgstr "" + +msgid "tInternet auth key" +msgstr "" + +msgid "tIncremental image backup" +msgstr "" + +msgid "tFull image backup" +msgstr "" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "" + +msgid "tArchived" +msgstr "" + +msgid "nospc_stalled_text" +msgstr "" + +msgid "nospc_fatal_text" +msgstr "" + +msgid "tNondefault temporary file directory" +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/pl.po b/urbackupserver/www/translations/urbackup.webinterface/pl.po new file mode 100644 index 00000000..ceaf9890 --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/pl.po @@ -0,0 +1,1127 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:33+0000\n" +"Language-Team: Polish (http://www.transifex.com/projects/p/urbackup/language/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +msgid "action_1" +msgstr "" + +msgid "action_2" +msgstr "" + +msgid "action_3" +msgstr "" + +msgid "action_4" +msgstr "" + +msgid "action_1_d" +msgstr "" + +msgid "action_2_d" +msgstr "" + +msgid "action_3_d" +msgstr "" + +msgid "action_4_d" +msgstr "" + +msgid "nav_item_6" +msgstr "" + +msgid "nav_item_5" +msgstr "" + +msgid "nav_item_4" +msgstr "" + +msgid "nav_item_3" +msgstr "" + +msgid "nav_item_2" +msgstr "" + +msgid "nav_item_1" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "overview" +msgstr "" + +msgid "ok" +msgstr "" + +msgid "no_recent_backup" +msgstr "" + +msgid "backup_never" +msgstr "" + +msgid "yes" +msgstr "" + +msgid "no" +msgstr "" + +msgid "tBackup status" +msgstr "" + +msgid "tComputer name" +msgstr "" + +msgid "tLast seen" +msgstr "" + +msgid "tLast file backup" +msgstr "" + +msgid "tLast image backup" +msgstr "" + +msgid "tFile backup status" +msgstr "" + +msgid "tImage backup status" +msgstr "" + +msgid "tShow details" +msgstr "" + +msgid "tExtra clients" +msgstr "" + +msgid "tNo extra clients" +msgstr "" + +msgid "tActions" +msgstr "" + +msgid "tOnline" +msgstr "" + +msgid "tHostname/IP" +msgstr "" + +msgid "tServer identity" +msgstr "" + +msgid "users" +msgstr "" + +msgid "general_settings" +msgstr "" + +msgid "admin" +msgstr "" + +msgid "user" +msgstr "" + +msgid "username_empty" +msgstr "" + +msgid "password_empty" +msgstr "" + +msgid "password_differ" +msgstr "" + +msgid "user_n_exist" +msgstr "" + +msgid "password_wrong" +msgstr "" + +msgid "user_exists" +msgstr "" + +msgid "session_timeout" +msgstr "" + +msgid "really_del_user" +msgstr "" + +msgid "user_add_done" +msgstr "" + +msgid "user_remove_done" +msgstr "" + +msgid "user_update_right_done" +msgstr "" + +msgid "user_pw_change_ok" +msgstr "" + +msgid "right_all" +msgstr "" + +msgid "right_none" +msgstr "" + +msgid "filter" +msgstr "" + +msgid "all" +msgstr "" + +msgid "loglevel_0" +msgstr "" + +msgid "loglevel_1" +msgstr "" + +msgid "loglevel_2" +msgstr "" + +msgid "dir_error_text" +msgstr "" + +msgid "tmpdir_error_text" +msgstr "" + +msgid "starting" +msgstr "" + +msgid "ident_err" +msgstr "" + +msgid "enter_hostname" +msgstr "" + +msgid "clients" +msgstr "" + +msgid "validate_text_empty" +msgstr "" + +msgid "validate_text_notint" +msgstr "" + +msgid "validate_name_update_freq_incr" +msgstr "" + +msgid "validate_name_update_freq_full" +msgstr "" + +msgid "validate_name_update_freq_image_full" +msgstr "" + +msgid "validate_name_update_freq_image_incr" +msgstr "" + +msgid "validate_name_max_file_incr" +msgstr "" + +msgid "validate_name_min_file_incr" +msgstr "" + +msgid "validate_name_max_file_full" +msgstr "" + +msgid "validate_name_min_file_full" +msgstr "" + +msgid "validate_name_min_image_incr" +msgstr "" + +msgid "validate_name_max_image_incr" +msgstr "" + +msgid "validate_name_min_image_full" +msgstr "" + +msgid "validate_name_max_image_full" +msgstr "" + +msgid "validate_name_startup_backup_delay" +msgstr "" + +msgid "validate_err_notregexp_backup_window" +msgstr "" + +msgid "validate_name_max_active_clients" +msgstr "" + +msgid "validate_name_max_sim_backups" +msgstr "" + +msgid "validate_name_backupfolder" +msgstr "" + +msgid "validate_name_computername" +msgstr "" + +msgid "too_many_clients_err" +msgstr "" + +msgid "really_remove_client" +msgstr "" + +msgid "computername" +msgstr "" + +msgid "storage_usage_pie_graph_title" +msgstr "" + +msgid "storage_usage_pie_graph_colname1" +msgstr "" + +msgid "storage_usage_pie_graph_colname2" +msgstr "" + +msgid "storage_usage_bar_graph_title" +msgstr "" + +msgid "storage_usage_bar_graph_colname1" +msgstr "" + +msgid "storage_usage_bar_graph_colname2" +msgstr "" + +msgid "tImages" +msgstr "" + +msgid "tFiles" +msgstr "" + +msgid "tSum" +msgstr "" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "" + +msgid "mail_settings" +msgstr "" + +msgid "upgrade_error_text" +msgstr "" + +msgid "tActivities" +msgstr "" + +msgid "tAction" +msgstr "" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "" + +msgid "tLast activities" +msgstr "" + +msgid "tStarting time" +msgstr "" + +msgid "tRequired time" +msgstr "" + +msgid "tUsed Storage" +msgstr "" + +msgid "tClients" +msgstr "" + +msgid "tLogs" +msgstr "" + +msgid "tReports" +msgstr "" + +msgid "tSend reports to" +msgstr "" + +msgid "tSend" +msgstr "" + +msgid "tBackups with a log message of at least log level" +msgstr "" + +msgid "tBackup time" +msgstr "" + +msgid "tErrors" +msgstr "" + +msgid "tWarnings" +msgstr "" + +msgid "tStorage allocation" +msgstr "" + +msgid "tStorage usage" +msgstr "" + +msgid "tAll" +msgstr "" + +msgid "tBackup storage path" +msgstr "" + +msgid "tDo not do image backups" +msgstr "" + +msgid "tDo not do file backups" +msgstr "" + +msgid "tAutomatically shut down server" +msgstr "" + +msgid "tAutoupdate clients" +msgstr "" + +msgid "tMax number of simultaneous backups" +msgstr "" + +msgid "tMax number of recently active clients" +msgstr "" + +msgid "tCleanup time window" +msgstr "" + +msgid "tAutomatically backup UrBackup database" +msgstr "" + +msgid "tInterval for incremental file backups" +msgstr "" + +msgid "tInterval for full file backups" +msgstr "" + +msgid "tInterval for incremental image backups" +msgstr "" + +msgid "tInterval for full image backups" +msgstr "" + +msgid "tMaximal number of incremental file backups" +msgstr "" + +msgid "tMinimal number of incremental file backups" +msgstr "" + +msgid "tMaximal number of full file backups" +msgstr "" + +msgid "tMinimal number of full file backups" +msgstr "" + +msgid "tMaximal number of incremental image backups" +msgstr "" + +msgid "tMinimal number of incremental image backups" +msgstr "" + +msgid "tMaximal number of full image backups" +msgstr "" + +msgid "tMinimal number of full image backups" +msgstr "" + +msgid "tDelay after system startup" +msgstr "" + +msgid "tBackup window" +msgstr "" + +msgid "tExcluded files (with wildcards)" +msgstr "" + +msgid "tIncluded files (with wildcards)" +msgstr "" + +msgid "tDefault directories to backup" +msgstr "" + +msgid "tVolumes to backup" +msgstr "" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "" + +msgid "tAllow client-side starting of file backups" +msgstr "" + +msgid "tAllow client-side starting of image backups" +msgstr "" + +msgid "tAllow client-side viewing of backup logs" +msgstr "" + +msgid "tAllow client-side pausing of backups" +msgstr "" + +msgid "tAllow client-side changing of settings" +msgstr "" + +msgid "tdays" +msgstr "" + +msgid "thours" +msgstr "" + +msgid "tmin" +msgstr "" + +msgid "tMail server name" +msgstr "" + +msgid "tMail server port" +msgstr "" + +msgid "tMail server username (empty for none)" +msgstr "" + +msgid "tMail server password" +msgstr "" + +msgid "tSender E-Mail Address" +msgstr "" + +msgid "tSend mails only with SSL/TLS" +msgstr "" + +msgid "tCheck SSL/TLS certificate" +msgstr "" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "" + +msgid "tTest Mail sent successfully" +msgstr "" + +msgid "tSending test mail failed. Error:" +msgstr "" + +msgid "tFilter" +msgstr "" + +msgid "tBack" +msgstr "" + +msgid "tAdd" +msgstr "" + +msgid "tRemove" +msgstr "" + +msgid "tSave" +msgstr "" + +msgid "tLevel" +msgstr "" + +msgid "tTime" +msgstr "" + +msgid "tMessage" +msgstr "" + +msgid "tLog" +msgstr "" + +msgid "tUsername" +msgstr "" + +msgid "tRights" +msgstr "" + +msgid "tNo Users" +msgstr "" + +msgid "tCreate user" +msgstr "" + +msgid "tPassword" +msgstr "" + +msgid "tRepeat password" +msgstr "" + +msgid "tRights for" +msgstr "" + +msgid "tAbort" +msgstr "" + +msgid "tCreate" +msgstr "" + +msgid "tChange rights" +msgstr "" + +msgid "tChange password" +msgstr "" + +msgid "tLogin" +msgstr "" + +msgid "tInfos" +msgstr "" + +msgid "tSeparate settings for this client" +msgstr "" + +msgid "tServer" +msgstr "" + +msgid "tFile backups" +msgstr "" + +msgid "tImage backups" +msgstr "" + +msgid "tPermissions" +msgstr "" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "" + +msgid "tMax backup speed for local network" +msgstr "" + +msgid "tNo activities" +msgstr "" + +msgid "tSelect all" +msgstr "" + +msgid "tSelect none" +msgstr "" + +msgid "tRemove selected" +msgstr "" + +msgid "tStart for selected" +msgstr "" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "" + +msgid "tArchive every" +msgstr "" + +msgid "tArchive for" +msgstr "" + +msgid "tArchive window" +msgstr "" + +msgid "tBackup type" +msgstr "" + +msgid "tEnable internet mode (requires server restart)" +msgstr "" + +msgid "tInternet server name/IP" +msgstr "" + +msgid "tInternet server port" +msgstr "" + +msgid "tDo image backups over internet" +msgstr "" + +msgid "tDo full file backups over internet" +msgstr "" + +msgid "tMax backup speed for internet connection" +msgstr "" + +msgid "tTotal max backup speed for internet connection" +msgstr "" + +msgid "tEncrypted transfer" +msgstr "" + +msgid "tCompressed transfer" +msgstr "" + +msgid "file_backup" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "days" +msgstr "" + +msgid "weeks" +msgstr "" + +msgid "months" +msgstr "" + +msgid "year" +msgstr "" + +msgid "hour" +msgstr "" + +msgid "day" +msgstr "" + +msgid "week" +msgstr "" + +msgid "month" +msgstr "" + +msgid "years" +msgstr "" + +msgid "min" +msgstr "" + +msgid "mins" +msgstr "" + +msgid "validate_name_archive_every" +msgstr "" + +msgid "validate_name_archive_for" +msgstr "" + +msgid "forever" +msgstr "" + +msgid "backup_in_progress" +msgstr "" + +msgid "really_remove_clients" +msgstr "" + +msgid "no_client_selected" +msgstr "" + +msgid "queued_backup" +msgstr "" + +msgid "starting_backup_failed" +msgstr "" + +msgid "trying_to_stop_backup" +msgstr "" + +msgid "unarchived_in" +msgstr "" + +msgid "validate_err_notregexp_archive_window" +msgstr "" + +msgid "wait_for_archive_window" +msgstr "" + +msgid "validate_err_notregexp_image_letters" +msgstr "" + +msgid "validate_name_global_local_speed" +msgstr "" + +msgid "validate_name_global_internet_speed" +msgstr "" + +msgid "validate_name_local_speed" +msgstr "" + +msgid "validate_name_internet_speed" +msgstr "" + +msgid "enter_clientname" +msgstr "" + +msgid "internet_client_added" +msgstr "" + +msgid "change_pw" +msgstr "" + +msgid "old_pw_wrong" +msgstr "" + +msgid "tID" +msgstr "" + +msgid "tFile" +msgstr "" + +msgid "tSize" +msgstr "" + +msgid "tIncremental" +msgstr "" + +msgid "tLoading" +msgstr "" + +msgid "tStorage usage of" +msgstr "" + +msgid "tDelete domain" +msgstr "" + +msgid "tChange rights for user" +msgstr "" + +msgid "tDomain" +msgstr "" + +msgid "tTranslation" +msgstr "" + +msgid "tNew domain" +msgstr "" + +msgid "tChange" +msgstr "" + +msgid "tChange password for user" +msgstr "" + +msgid "tSaved settings successfully" +msgstr "" + +msgid "tThis client is going to be removed." +msgstr "" + +msgid "tStop removing client" +msgstr "" + +msgid "tFailed" +msgstr "" + +msgid "tSuccessfull" +msgstr "" + +msgid "tInfo" +msgstr "" + +msgid "tError" +msgstr "" + +msgid "tWarning" +msgstr "" + +msgid "tCurrent version" +msgstr "" + +msgid "tTarget version" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "" + +msgid "tNext archival" +msgstr "" + +msgid "tweeks" +msgstr "" + +msgid "tmonth" +msgstr "" + +msgid "tyears" +msgstr "" + +msgid "tforever" +msgstr "" + +msgid "tFile backup" +msgstr "" + +msgid "tIncremental file backup" +msgstr "" + +msgid "tFull file backup" +msgstr "" + +msgid "tEnable internet mode" +msgstr "" + +msgid "tInternet auth key" +msgstr "" + +msgid "tIncremental image backup" +msgstr "" + +msgid "tFull image backup" +msgstr "" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "" + +msgid "tArchived" +msgstr "" + +msgid "nospc_stalled_text" +msgstr "" + +msgid "nospc_fatal_text" +msgstr "" + +msgid "tNondefault temporary file directory" +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/pt_BR.po b/urbackupserver/www/translations/urbackup.webinterface/pt_BR.po new file mode 100644 index 00000000..0b0b31b1 --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/pt_BR.po @@ -0,0 +1,1127 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:33+0000\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/urbackup/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +msgid "action_1" +msgstr "" + +msgid "action_2" +msgstr "" + +msgid "action_3" +msgstr "" + +msgid "action_4" +msgstr "" + +msgid "action_1_d" +msgstr "" + +msgid "action_2_d" +msgstr "" + +msgid "action_3_d" +msgstr "" + +msgid "action_4_d" +msgstr "" + +msgid "nav_item_6" +msgstr "" + +msgid "nav_item_5" +msgstr "" + +msgid "nav_item_4" +msgstr "" + +msgid "nav_item_3" +msgstr "" + +msgid "nav_item_2" +msgstr "" + +msgid "nav_item_1" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "overview" +msgstr "" + +msgid "ok" +msgstr "" + +msgid "no_recent_backup" +msgstr "" + +msgid "backup_never" +msgstr "" + +msgid "yes" +msgstr "" + +msgid "no" +msgstr "" + +msgid "tBackup status" +msgstr "" + +msgid "tComputer name" +msgstr "" + +msgid "tLast seen" +msgstr "" + +msgid "tLast file backup" +msgstr "" + +msgid "tLast image backup" +msgstr "" + +msgid "tFile backup status" +msgstr "" + +msgid "tImage backup status" +msgstr "" + +msgid "tShow details" +msgstr "" + +msgid "tExtra clients" +msgstr "" + +msgid "tNo extra clients" +msgstr "" + +msgid "tActions" +msgstr "" + +msgid "tOnline" +msgstr "" + +msgid "tHostname/IP" +msgstr "" + +msgid "tServer identity" +msgstr "" + +msgid "users" +msgstr "" + +msgid "general_settings" +msgstr "" + +msgid "admin" +msgstr "" + +msgid "user" +msgstr "" + +msgid "username_empty" +msgstr "" + +msgid "password_empty" +msgstr "" + +msgid "password_differ" +msgstr "" + +msgid "user_n_exist" +msgstr "" + +msgid "password_wrong" +msgstr "" + +msgid "user_exists" +msgstr "" + +msgid "session_timeout" +msgstr "" + +msgid "really_del_user" +msgstr "" + +msgid "user_add_done" +msgstr "" + +msgid "user_remove_done" +msgstr "" + +msgid "user_update_right_done" +msgstr "" + +msgid "user_pw_change_ok" +msgstr "" + +msgid "right_all" +msgstr "" + +msgid "right_none" +msgstr "" + +msgid "filter" +msgstr "" + +msgid "all" +msgstr "" + +msgid "loglevel_0" +msgstr "" + +msgid "loglevel_1" +msgstr "" + +msgid "loglevel_2" +msgstr "" + +msgid "dir_error_text" +msgstr "" + +msgid "tmpdir_error_text" +msgstr "" + +msgid "starting" +msgstr "" + +msgid "ident_err" +msgstr "" + +msgid "enter_hostname" +msgstr "" + +msgid "clients" +msgstr "" + +msgid "validate_text_empty" +msgstr "" + +msgid "validate_text_notint" +msgstr "" + +msgid "validate_name_update_freq_incr" +msgstr "" + +msgid "validate_name_update_freq_full" +msgstr "" + +msgid "validate_name_update_freq_image_full" +msgstr "" + +msgid "validate_name_update_freq_image_incr" +msgstr "" + +msgid "validate_name_max_file_incr" +msgstr "" + +msgid "validate_name_min_file_incr" +msgstr "" + +msgid "validate_name_max_file_full" +msgstr "" + +msgid "validate_name_min_file_full" +msgstr "" + +msgid "validate_name_min_image_incr" +msgstr "" + +msgid "validate_name_max_image_incr" +msgstr "" + +msgid "validate_name_min_image_full" +msgstr "" + +msgid "validate_name_max_image_full" +msgstr "" + +msgid "validate_name_startup_backup_delay" +msgstr "" + +msgid "validate_err_notregexp_backup_window" +msgstr "" + +msgid "validate_name_max_active_clients" +msgstr "" + +msgid "validate_name_max_sim_backups" +msgstr "" + +msgid "validate_name_backupfolder" +msgstr "" + +msgid "validate_name_computername" +msgstr "" + +msgid "too_many_clients_err" +msgstr "" + +msgid "really_remove_client" +msgstr "" + +msgid "computername" +msgstr "" + +msgid "storage_usage_pie_graph_title" +msgstr "" + +msgid "storage_usage_pie_graph_colname1" +msgstr "" + +msgid "storage_usage_pie_graph_colname2" +msgstr "" + +msgid "storage_usage_bar_graph_title" +msgstr "" + +msgid "storage_usage_bar_graph_colname1" +msgstr "" + +msgid "storage_usage_bar_graph_colname2" +msgstr "" + +msgid "tImages" +msgstr "" + +msgid "tFiles" +msgstr "" + +msgid "tSum" +msgstr "" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "" + +msgid "mail_settings" +msgstr "" + +msgid "upgrade_error_text" +msgstr "" + +msgid "tActivities" +msgstr "" + +msgid "tAction" +msgstr "" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "" + +msgid "tLast activities" +msgstr "" + +msgid "tStarting time" +msgstr "" + +msgid "tRequired time" +msgstr "" + +msgid "tUsed Storage" +msgstr "" + +msgid "tClients" +msgstr "" + +msgid "tLogs" +msgstr "" + +msgid "tReports" +msgstr "" + +msgid "tSend reports to" +msgstr "" + +msgid "tSend" +msgstr "" + +msgid "tBackups with a log message of at least log level" +msgstr "" + +msgid "tBackup time" +msgstr "" + +msgid "tErrors" +msgstr "" + +msgid "tWarnings" +msgstr "" + +msgid "tStorage allocation" +msgstr "" + +msgid "tStorage usage" +msgstr "" + +msgid "tAll" +msgstr "" + +msgid "tBackup storage path" +msgstr "" + +msgid "tDo not do image backups" +msgstr "" + +msgid "tDo not do file backups" +msgstr "" + +msgid "tAutomatically shut down server" +msgstr "" + +msgid "tAutoupdate clients" +msgstr "" + +msgid "tMax number of simultaneous backups" +msgstr "" + +msgid "tMax number of recently active clients" +msgstr "" + +msgid "tCleanup time window" +msgstr "" + +msgid "tAutomatically backup UrBackup database" +msgstr "" + +msgid "tInterval for incremental file backups" +msgstr "" + +msgid "tInterval for full file backups" +msgstr "" + +msgid "tInterval for incremental image backups" +msgstr "" + +msgid "tInterval for full image backups" +msgstr "" + +msgid "tMaximal number of incremental file backups" +msgstr "" + +msgid "tMinimal number of incremental file backups" +msgstr "" + +msgid "tMaximal number of full file backups" +msgstr "" + +msgid "tMinimal number of full file backups" +msgstr "" + +msgid "tMaximal number of incremental image backups" +msgstr "" + +msgid "tMinimal number of incremental image backups" +msgstr "" + +msgid "tMaximal number of full image backups" +msgstr "" + +msgid "tMinimal number of full image backups" +msgstr "" + +msgid "tDelay after system startup" +msgstr "" + +msgid "tBackup window" +msgstr "" + +msgid "tExcluded files (with wildcards)" +msgstr "" + +msgid "tIncluded files (with wildcards)" +msgstr "" + +msgid "tDefault directories to backup" +msgstr "" + +msgid "tVolumes to backup" +msgstr "" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "" + +msgid "tAllow client-side starting of file backups" +msgstr "" + +msgid "tAllow client-side starting of image backups" +msgstr "" + +msgid "tAllow client-side viewing of backup logs" +msgstr "" + +msgid "tAllow client-side pausing of backups" +msgstr "" + +msgid "tAllow client-side changing of settings" +msgstr "" + +msgid "tdays" +msgstr "" + +msgid "thours" +msgstr "" + +msgid "tmin" +msgstr "" + +msgid "tMail server name" +msgstr "" + +msgid "tMail server port" +msgstr "" + +msgid "tMail server username (empty for none)" +msgstr "" + +msgid "tMail server password" +msgstr "" + +msgid "tSender E-Mail Address" +msgstr "" + +msgid "tSend mails only with SSL/TLS" +msgstr "" + +msgid "tCheck SSL/TLS certificate" +msgstr "" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "" + +msgid "tTest Mail sent successfully" +msgstr "" + +msgid "tSending test mail failed. Error:" +msgstr "" + +msgid "tFilter" +msgstr "" + +msgid "tBack" +msgstr "" + +msgid "tAdd" +msgstr "" + +msgid "tRemove" +msgstr "" + +msgid "tSave" +msgstr "" + +msgid "tLevel" +msgstr "" + +msgid "tTime" +msgstr "" + +msgid "tMessage" +msgstr "" + +msgid "tLog" +msgstr "" + +msgid "tUsername" +msgstr "" + +msgid "tRights" +msgstr "" + +msgid "tNo Users" +msgstr "" + +msgid "tCreate user" +msgstr "" + +msgid "tPassword" +msgstr "" + +msgid "tRepeat password" +msgstr "" + +msgid "tRights for" +msgstr "" + +msgid "tAbort" +msgstr "" + +msgid "tCreate" +msgstr "" + +msgid "tChange rights" +msgstr "" + +msgid "tChange password" +msgstr "" + +msgid "tLogin" +msgstr "" + +msgid "tInfos" +msgstr "" + +msgid "tSeparate settings for this client" +msgstr "" + +msgid "tServer" +msgstr "" + +msgid "tFile backups" +msgstr "" + +msgid "tImage backups" +msgstr "" + +msgid "tPermissions" +msgstr "" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "" + +msgid "tMax backup speed for local network" +msgstr "" + +msgid "tNo activities" +msgstr "" + +msgid "tSelect all" +msgstr "" + +msgid "tSelect none" +msgstr "" + +msgid "tRemove selected" +msgstr "" + +msgid "tStart for selected" +msgstr "" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "" + +msgid "tArchive every" +msgstr "" + +msgid "tArchive for" +msgstr "" + +msgid "tArchive window" +msgstr "" + +msgid "tBackup type" +msgstr "" + +msgid "tEnable internet mode (requires server restart)" +msgstr "" + +msgid "tInternet server name/IP" +msgstr "" + +msgid "tInternet server port" +msgstr "" + +msgid "tDo image backups over internet" +msgstr "" + +msgid "tDo full file backups over internet" +msgstr "" + +msgid "tMax backup speed for internet connection" +msgstr "" + +msgid "tTotal max backup speed for internet connection" +msgstr "" + +msgid "tEncrypted transfer" +msgstr "" + +msgid "tCompressed transfer" +msgstr "" + +msgid "file_backup" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "days" +msgstr "" + +msgid "weeks" +msgstr "" + +msgid "months" +msgstr "" + +msgid "year" +msgstr "" + +msgid "hour" +msgstr "" + +msgid "day" +msgstr "" + +msgid "week" +msgstr "" + +msgid "month" +msgstr "" + +msgid "years" +msgstr "" + +msgid "min" +msgstr "" + +msgid "mins" +msgstr "" + +msgid "validate_name_archive_every" +msgstr "" + +msgid "validate_name_archive_for" +msgstr "" + +msgid "forever" +msgstr "" + +msgid "backup_in_progress" +msgstr "" + +msgid "really_remove_clients" +msgstr "" + +msgid "no_client_selected" +msgstr "" + +msgid "queued_backup" +msgstr "" + +msgid "starting_backup_failed" +msgstr "" + +msgid "trying_to_stop_backup" +msgstr "" + +msgid "unarchived_in" +msgstr "" + +msgid "validate_err_notregexp_archive_window" +msgstr "" + +msgid "wait_for_archive_window" +msgstr "" + +msgid "validate_err_notregexp_image_letters" +msgstr "" + +msgid "validate_name_global_local_speed" +msgstr "" + +msgid "validate_name_global_internet_speed" +msgstr "" + +msgid "validate_name_local_speed" +msgstr "" + +msgid "validate_name_internet_speed" +msgstr "" + +msgid "enter_clientname" +msgstr "" + +msgid "internet_client_added" +msgstr "" + +msgid "change_pw" +msgstr "" + +msgid "old_pw_wrong" +msgstr "" + +msgid "tID" +msgstr "" + +msgid "tFile" +msgstr "" + +msgid "tSize" +msgstr "" + +msgid "tIncremental" +msgstr "" + +msgid "tLoading" +msgstr "" + +msgid "tStorage usage of" +msgstr "" + +msgid "tDelete domain" +msgstr "" + +msgid "tChange rights for user" +msgstr "" + +msgid "tDomain" +msgstr "" + +msgid "tTranslation" +msgstr "" + +msgid "tNew domain" +msgstr "" + +msgid "tChange" +msgstr "" + +msgid "tChange password for user" +msgstr "" + +msgid "tSaved settings successfully" +msgstr "" + +msgid "tThis client is going to be removed." +msgstr "" + +msgid "tStop removing client" +msgstr "" + +msgid "tFailed" +msgstr "" + +msgid "tSuccessfull" +msgstr "" + +msgid "tInfo" +msgstr "" + +msgid "tError" +msgstr "" + +msgid "tWarning" +msgstr "" + +msgid "tCurrent version" +msgstr "" + +msgid "tTarget version" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "" + +msgid "tNext archival" +msgstr "" + +msgid "tweeks" +msgstr "" + +msgid "tmonth" +msgstr "" + +msgid "tyears" +msgstr "" + +msgid "tforever" +msgstr "" + +msgid "tFile backup" +msgstr "" + +msgid "tIncremental file backup" +msgstr "" + +msgid "tFull file backup" +msgstr "" + +msgid "tEnable internet mode" +msgstr "" + +msgid "tInternet auth key" +msgstr "" + +msgid "tIncremental image backup" +msgstr "" + +msgid "tFull image backup" +msgstr "" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "" + +msgid "tArchived" +msgstr "" + +msgid "nospc_stalled_text" +msgstr "" + +msgid "nospc_fatal_text" +msgstr "" + +msgid "tNondefault temporary file directory" +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/ru.po b/urbackupserver/www/translations/urbackup.webinterface/ru.po new file mode 100644 index 00000000..8d2ae74c --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/ru.po @@ -0,0 +1,1128 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:38+0000\n" +"Last-Translator: uroni \n" +"Language-Team: Russian (http://www.transifex.com/projects/p/urbackup/language/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru\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" + +msgid "action_1" +msgstr "Добавочный файловый бэкап" + +msgid "action_2" +msgstr "Полный файловый бэкап" + +msgid "action_3" +msgstr "Добавочный образ" + +msgid "action_4" +msgstr "Полный образ" + +msgid "action_1_d" +msgstr "Удалить добавочный файловый бэкап" + +msgid "action_2_d" +msgstr "Удалить полный файловый бэкап" + +msgid "action_3_d" +msgstr "Удалить добавочный образ" + +msgid "action_4_d" +msgstr "Удалить образ" + +msgid "nav_item_6" +msgstr "Статус" + +msgid "nav_item_5" +msgstr "В работе" + +msgid "nav_item_4" +msgstr "Бэкапы" + +msgid "nav_item_3" +msgstr "Логи" + +msgid "nav_item_2" +msgstr "Статистика" + +msgid "nav_item_1" +msgstr "Настройки" + +msgid "unknown" +msgstr "Неизвестный" + +msgid "overview" +msgstr "Обзор" + +msgid "ok" +msgstr "Ok" + +msgid "no_recent_backup" +msgstr "Нет резервной копии" + +msgid "backup_never" +msgstr "Никогда" + +msgid "yes" +msgstr "Да" + +msgid "no" +msgstr "Нет" + +msgid "tBackup status" +msgstr "Статус бэкапов" + +msgid "tComputer name" +msgstr "Имя компьютера" + +msgid "tLast seen" +msgstr "Последняя активность" + +msgid "tLast file backup" +msgstr "Последний файловый бэкап" + +msgid "tLast image backup" +msgstr "Последний образ" + +msgid "tFile backup status" +msgstr "Файловый бэкап" + +msgid "tImage backup status" +msgstr "Образ" + +msgid "tShow details" +msgstr "Подробнее" + +msgid "tExtra clients" +msgstr "Дополнительные клиенты" + +msgid "tNo extra clients" +msgstr "Нет дополнительных клиентов" + +msgid "tActions" +msgstr "Действия" + +msgid "tOnline" +msgstr "Онлайн" + +msgid "tHostname/IP" +msgstr "Имя/IP" + +msgid "tServer identity" +msgstr "Идентификация сервера" + +msgid "users" +msgstr "Пользователи" + +msgid "general_settings" +msgstr "Главные" + +msgid "admin" +msgstr "Administrator" + +msgid "user" +msgstr "User" + +msgid "username_empty" +msgstr "Пожалуйста введите имя" + +msgid "password_empty" +msgstr "Пожалуйста введите пароль" + +msgid "password_differ" +msgstr "Пароли не совпадают" + +msgid "user_n_exist" +msgstr "Пользователя не существует" + +msgid "password_wrong" +msgstr "Неправильный пароль" + +msgid "user_exists" +msgstr "Пользователь с этим именем уже существует" + +msgid "session_timeout" +msgstr "Сессия устарела. Пожалуйста войтиде снова." + +msgid "really_del_user" +msgstr "Действительно удалить пользователя?" + +msgid "user_add_done" +msgstr "Новый пользователь успешно добавлен." + +msgid "user_remove_done" +msgstr "Пользователь успешно удален." + +msgid "user_update_right_done" +msgstr "Права пользователя успешно изменены." + +msgid "user_pw_change_ok" +msgstr "Пароль пользователя успешно изменен." + +msgid "right_all" +msgstr "Все права" + +msgid "right_none" +msgstr "Без прав" + +msgid "filter" +msgstr "Фильтр" + +msgid "all" +msgstr "Все" + +msgid "loglevel_0" +msgstr "Инфо" + +msgid "loglevel_1" +msgstr "Предупреждения" + +msgid "loglevel_2" +msgstr "Ошибки" + +msgid "dir_error_text" +msgstr "Каталог, где UrBackup будет сохранять резервные копии недоступен. Пожалуйста исправьте это изменив путь в 'Настройках', либо путем придания UrBackup прав на доступ к этой папке." + +msgid "tmpdir_error_text" +msgstr "Каталог, где UrBackup будет сохранять временные файлы недоступен. Пожалуйста исправьте это изменив путь в 'Настройках', либо путем придания UrBackup прав на доступ к этой папке." + +msgid "starting" +msgstr "Запуск" + +msgid "ident_err" +msgstr "Отклонено сервером" + +msgid "enter_hostname" +msgstr "Пожалуйста введите Имя компьютера или IP адрес" + +msgid "clients" +msgstr "Клиенты" + +msgid "validate_text_empty" +msgstr "Пожалуйста введите значение для {name}" + +msgid "validate_text_notint" +msgstr "Пожалуйста введите цифру для {name}" + +msgid "validate_name_update_freq_incr" +msgstr "интервала добавочных файловых бэкапов" + +msgid "validate_name_update_freq_full" +msgstr "интервала полных файловых бэкапов" + +msgid "validate_name_update_freq_image_full" +msgstr "интервала создания добавочных образов" + +msgid "validate_name_update_freq_image_incr" +msgstr "интервала создания полных образов" + +msgid "validate_name_max_file_incr" +msgstr "максимального количества добавочных файловых бэкапов" + +msgid "validate_name_min_file_incr" +msgstr "минимального количества добавочных файловых бэкапов" + +msgid "validate_name_max_file_full" +msgstr "максимального количества полных файловых бэкапов" + +msgid "validate_name_min_file_full" +msgstr "минимального количества полных файловых бэкапов" + +msgid "validate_name_min_image_incr" +msgstr "минимального количества добавочных образов" + +msgid "validate_name_max_image_incr" +msgstr "максимального количества добавочных образов" + +msgid "validate_name_min_image_full" +msgstr "минимального количества полных образов" + +msgid "validate_name_max_image_full" +msgstr "максимального количества полных образов" + +msgid "validate_name_startup_backup_delay" +msgstr "задержки после старта системы" + +msgid "validate_err_notregexp_backup_window" +msgstr "Формат для расписания неверный" + +msgid "validate_name_max_active_clients" +msgstr "максимального количества активных клиентов" + +msgid "validate_name_max_sim_backups" +msgstr "максимального количества резервных копий" + +msgid "validate_name_backupfolder" +msgstr "путь к хранилищу бэкапов" + +msgid "validate_name_computername" +msgstr "имя компьютера" + +msgid "too_many_clients_err" +msgstr "Слишком много клиентов" + +msgid "really_remove_client" +msgstr "Вы действительно хотите удалить этого клиента? Это означает, что все его резервные копии будут удалены!" + +msgid "computername" +msgstr "Имя компьютера" + +msgid "storage_usage_pie_graph_title" +msgstr "Использование памяти" + +msgid "storage_usage_pie_graph_colname1" +msgstr "Имя компьютера" + +msgid "storage_usage_pie_graph_colname2" +msgstr "Использование памяти" + +msgid "storage_usage_bar_graph_title" +msgstr "Использование памяти" + +msgid "storage_usage_bar_graph_colname1" +msgstr "Дата" + +msgid "storage_usage_bar_graph_colname2" +msgstr "Использование памяти" + +msgid "tImages" +msgstr "Образы" + +msgid "tFiles" +msgstr "Файлы" + +msgid "tSum" +msgstr "Итого" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "Формат расписания очистки неверен" + +msgid "mail_settings" +msgstr "Почта" + +msgid "upgrade_error_text" +msgstr "UrBackup обновляет свою базу данных. Это может занять некоторое время. Сервер недоступен и не будет делать никаких резервных копий во время обновления." + +msgid "tActivities" +msgstr "В работе" + +msgid "tAction" +msgstr "Действие" + +msgid "tProgress" +msgstr "Прогресс" + +msgid "tFiles in queue" +msgstr "Файлов в очереди" + +msgid "tLast activities" +msgstr "Последняя активность" + +msgid "tStarting time" +msgstr "Время начала" + +msgid "tRequired time" +msgstr "Продолжительность" + +msgid "tUsed Storage" +msgstr "Использовано памяти" + +msgid "tClients" +msgstr "Клиенты" + +msgid "tLogs" +msgstr "Логи" + +msgid "tReports" +msgstr "Отчеты" + +msgid "tSend reports to" +msgstr "Отправить отчеты" + +msgid "tSend" +msgstr "Отправить" + +msgid "tBackups with a log message of at least log level" +msgstr "Логи уровня" + +msgid "tBackup time" +msgstr "Время бэкапа" + +msgid "tErrors" +msgstr "Ошибки" + +msgid "tWarnings" +msgstr "Предупреждения" + +msgid "tStorage allocation" +msgstr "Выделенная память" + +msgid "tStorage usage" +msgstr "Использование памяти" + +msgid "tAll" +msgstr "Все" + +msgid "tBackup storage path" +msgstr "Путь для хранения бэкапов" + +msgid "tDo not do image backups" +msgstr "Не делать бэкап образа" + +msgid "tDo not do file backups" +msgstr "Не делать файловый бэкап" + +msgid "tAutomatically shut down server" +msgstr "Автоматически выключать сервер" + +msgid "tAutoupdate clients" +msgstr "Автоматическое обновление клиентов" + +msgid "tMax number of simultaneous backups" +msgstr "Максимум одновременно выполняющихся бэкапов" + +msgid "tMax number of recently active clients" +msgstr "Максимальное количество активных клиентов" + +msgid "tCleanup time window" +msgstr "Расписание очистки бэкапов" + +msgid "tAutomatically backup UrBackup database" +msgstr "Автоматически бэкапить базу данных UrBackup" + +msgid "tInterval for incremental file backups" +msgstr "Интервал создания добавочных файловых бэкапов" + +msgid "tInterval for full file backups" +msgstr "Интервал создания полных бэкапов файлов" + +msgid "tInterval for incremental image backups" +msgstr "Интервал создания добавочных образов" + +msgid "tInterval for full image backups" +msgstr "Интервал создания полных образов" + +msgid "tMaximal number of incremental file backups" +msgstr "Максимальное количество добавочных бэкапов файлов" + +msgid "tMinimal number of incremental file backups" +msgstr "Минимальное количество добавочных бэкапов файлов" + +msgid "tMaximal number of full file backups" +msgstr "Максимальное количество полных бэкапов файлов" + +msgid "tMinimal number of full file backups" +msgstr "Минимальное количество полных бэкапов файлов" + +msgid "tMaximal number of incremental image backups" +msgstr "Максимальное количество добавочных образов" + +msgid "tMinimal number of incremental image backups" +msgstr "Минимальное количество добавочных образов" + +msgid "tMaximal number of full image backups" +msgstr "Максимальное количество полных образов" + +msgid "tMinimal number of full image backups" +msgstr "Минимальное количество полных образов" + +msgid "tDelay after system startup" +msgstr "Задержка после старта системы" + +msgid "tBackup window" +msgstr "Расписание" + +msgid "tExcluded files (with wildcards)" +msgstr "Исключить из бэкапа (по маске)" + +msgid "tIncluded files (with wildcards)" +msgstr "Включить в бэкап (по маске)" + +msgid "tDefault directories to backup" +msgstr "Каталоги по умолчанию для бэкапа" + +msgid "tVolumes to backup" +msgstr "Разделы для бэкапа" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "Разрешить клиенту менять каталоги для бэкапа" + +msgid "tAllow client-side starting of file backups" +msgstr "Разрешить клиенту запускать файловый бэкап" + +msgid "tAllow client-side starting of image backups" +msgstr "Разрешить клиенту запускать создание образа" + +msgid "tAllow client-side viewing of backup logs" +msgstr "Разрешить клиенту просматриват логи" + +msgid "tAllow client-side pausing of backups" +msgstr "Разрешить клиенту приостанавливать бэкап" + +msgid "tAllow client-side changing of settings" +msgstr "Разрешить клиенту менять настройки" + +msgid "tdays" +msgstr "дней" + +msgid "thours" +msgstr "часов" + +msgid "tmin" +msgstr "минут" + +msgid "tMail server name" +msgstr "Имя почтового сервера" + +msgid "tMail server port" +msgstr "Порт сервера" + +msgid "tMail server username (empty for none)" +msgstr "Учетная запись (если нет - оставить пустым)" + +msgid "tMail server password" +msgstr "Пароль" + +msgid "tSender E-Mail Address" +msgstr "Адрес отправителя" + +msgid "tSend mails only with SSL/TLS" +msgstr "Отправить письмо только с использованием SSL/TLS" + +msgid "tCheck SSL/TLS certificate" +msgstr "Проверить SSL/TLS сертификат" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "Отправить тестовое письмо после сохранения настроек (оставить пустым, чтобы не отправлять)" + +msgid "tTest Mail sent successfully" +msgstr "Тестовое сообщение отправлено" + +msgid "tSending test mail failed. Error:" +msgstr "Тестовое сообщение не отправлено. Ошибка: " + +msgid "tFilter" +msgstr "Фильтр" + +msgid "tBack" +msgstr "Назад" + +msgid "tAdd" +msgstr "Добавить" + +msgid "tRemove" +msgstr "Удалить" + +msgid "tSave" +msgstr "Сохранить" + +msgid "tLevel" +msgstr "Уровень" + +msgid "tTime" +msgstr "Время" + +msgid "tMessage" +msgstr "Сообщение" + +msgid "tLog" +msgstr "Лог" + +msgid "tUsername" +msgstr "Имя" + +msgid "tRights" +msgstr "Права" + +msgid "tNo Users" +msgstr "Нет пользователей" + +msgid "tCreate user" +msgstr "Добавить пользователя" + +msgid "tPassword" +msgstr "Пароль" + +msgid "tRepeat password" +msgstr "Повторить пароль" + +msgid "tRights for" +msgstr "Права" + +msgid "tAbort" +msgstr "Отмена" + +msgid "tCreate" +msgstr "Добавить" + +msgid "tChange rights" +msgstr "Изменить права" + +msgid "tChange password" +msgstr "Изменить пароль" + +msgid "tLogin" +msgstr "Войти" + +msgid "tInfos" +msgstr "Инфо" + +msgid "tSeparate settings for this client" +msgstr "Отдельные настройки для данного клиента" + +msgid "tServer" +msgstr "Сервер" + +msgid "tFile backups" +msgstr "Файловый бэкап" + +msgid "tImage backups" +msgstr "Образы" + +msgid "tPermissions" +msgstr "Права доступа" + +msgid "tClient" +msgstr "Клиент" + +msgid "tArchival" +msgstr "Архивация" + +msgid "tInternet" +msgstr "Интернет" + +msgid "tPerform autoupdates silently" +msgstr "Тихое автообновление" + +msgid "tMax backup speed for local network" +msgstr "Максимальная скорость для локальной сети" + +msgid "tNo activities" +msgstr "Нет активности" + +msgid "tSelect all" +msgstr "Отметить все" + +msgid "tSelect none" +msgstr "Снять отметки" + +msgid "tRemove selected" +msgstr "Удалить отмеченных" + +msgid "tStart for selected" +msgstr "Начать бэкап выделенных" + +msgid "tInternet clients" +msgstr "Интернет клиенты" + +msgid "tAdd additional internet clients" +msgstr "Добавить интернет клиентов" + +msgid "tClient name" +msgstr "Имя клиента" + +msgid "tNo entries for this filter" +msgstr "Нет записей для этого фильтра" + +msgid "tNo data" +msgstr "Нет данных" + +msgid "tTotal max backup speed for local network" +msgstr "Общая максимальная скорость для локальной сети" + +msgid "tArchive every" +msgstr "Архивировать каждые" + +msgid "tArchive for" +msgstr "Архивировать за" + +msgid "tArchive window" +msgstr "Расписание архивации" + +msgid "tBackup type" +msgstr "Тип бэкапа" + +msgid "tEnable internet mode (requires server restart)" +msgstr "Активировать интернет режим (потребуется перезагрузка сервера)" + +msgid "tInternet server name/IP" +msgstr "Имя сервера/IP" + +msgid "tInternet server port" +msgstr "Порт" + +msgid "tDo image backups over internet" +msgstr "Разрешить создавать образы" + +msgid "tDo full file backups over internet" +msgstr "Разрешить создавать полный файловый бэкап" + +msgid "tMax backup speed for internet connection" +msgstr "Максимальная скорость для интернет бэкапа" + +msgid "tTotal max backup speed for internet connection" +msgstr "Общая максимальная скорость для интернет бэкапа" + +msgid "tEncrypted transfer" +msgstr "Шифрованная передача" + +msgid "tCompressed transfer" +msgstr "Сжатие" + +msgid "file_backup" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "days" +msgstr "" + +msgid "weeks" +msgstr "" + +msgid "months" +msgstr "" + +msgid "year" +msgstr "" + +msgid "hour" +msgstr "" + +msgid "day" +msgstr "" + +msgid "week" +msgstr "" + +msgid "month" +msgstr "" + +msgid "years" +msgstr "" + +msgid "min" +msgstr "" + +msgid "mins" +msgstr "" + +msgid "validate_name_archive_every" +msgstr "" + +msgid "validate_name_archive_for" +msgstr "" + +msgid "forever" +msgstr "" + +msgid "backup_in_progress" +msgstr "" + +msgid "really_remove_clients" +msgstr "" + +msgid "no_client_selected" +msgstr "" + +msgid "queued_backup" +msgstr "" + +msgid "starting_backup_failed" +msgstr "" + +msgid "trying_to_stop_backup" +msgstr "" + +msgid "unarchived_in" +msgstr "" + +msgid "validate_err_notregexp_archive_window" +msgstr "" + +msgid "wait_for_archive_window" +msgstr "" + +msgid "validate_err_notregexp_image_letters" +msgstr "" + +msgid "validate_name_global_local_speed" +msgstr "" + +msgid "validate_name_global_internet_speed" +msgstr "" + +msgid "validate_name_local_speed" +msgstr "" + +msgid "validate_name_internet_speed" +msgstr "" + +msgid "enter_clientname" +msgstr "" + +msgid "internet_client_added" +msgstr "" + +msgid "change_pw" +msgstr "" + +msgid "old_pw_wrong" +msgstr "" + +msgid "tID" +msgstr "" + +msgid "tFile" +msgstr "" + +msgid "tSize" +msgstr "" + +msgid "tIncremental" +msgstr "" + +msgid "tLoading" +msgstr "" + +msgid "tStorage usage of" +msgstr "" + +msgid "tDelete domain" +msgstr "" + +msgid "tChange rights for user" +msgstr "" + +msgid "tDomain" +msgstr "" + +msgid "tTranslation" +msgstr "" + +msgid "tNew domain" +msgstr "" + +msgid "tChange" +msgstr "" + +msgid "tChange password for user" +msgstr "" + +msgid "tSaved settings successfully" +msgstr "" + +msgid "tThis client is going to be removed." +msgstr "" + +msgid "tStop removing client" +msgstr "" + +msgid "tFailed" +msgstr "" + +msgid "tSuccessfull" +msgstr "" + +msgid "tInfo" +msgstr "" + +msgid "tError" +msgstr "" + +msgid "tWarning" +msgstr "" + +msgid "tCurrent version" +msgstr "" + +msgid "tTarget version" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "" + +msgid "tNext archival" +msgstr "" + +msgid "tweeks" +msgstr "" + +msgid "tmonth" +msgstr "" + +msgid "tyears" +msgstr "" + +msgid "tforever" +msgstr "" + +msgid "tFile backup" +msgstr "" + +msgid "tIncremental file backup" +msgstr "" + +msgid "tFull file backup" +msgstr "" + +msgid "tEnable internet mode" +msgstr "" + +msgid "tInternet auth key" +msgstr "" + +msgid "tIncremental image backup" +msgstr "" + +msgid "tFull image backup" +msgstr "" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "" + +msgid "tArchived" +msgstr "" + +msgid "nospc_stalled_text" +msgstr "" + +msgid "nospc_fatal_text" +msgstr "" + +msgid "tNondefault temporary file directory" +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/sk.po b/urbackupserver/www/translations/urbackup.webinterface/sk.po new file mode 100644 index 00000000..02343c83 --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/sk.po @@ -0,0 +1,1127 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:33+0000\n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/urbackup/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +msgid "action_1" +msgstr "" + +msgid "action_2" +msgstr "" + +msgid "action_3" +msgstr "" + +msgid "action_4" +msgstr "" + +msgid "action_1_d" +msgstr "" + +msgid "action_2_d" +msgstr "" + +msgid "action_3_d" +msgstr "" + +msgid "action_4_d" +msgstr "" + +msgid "nav_item_6" +msgstr "" + +msgid "nav_item_5" +msgstr "" + +msgid "nav_item_4" +msgstr "" + +msgid "nav_item_3" +msgstr "" + +msgid "nav_item_2" +msgstr "" + +msgid "nav_item_1" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "overview" +msgstr "" + +msgid "ok" +msgstr "" + +msgid "no_recent_backup" +msgstr "" + +msgid "backup_never" +msgstr "" + +msgid "yes" +msgstr "" + +msgid "no" +msgstr "" + +msgid "tBackup status" +msgstr "" + +msgid "tComputer name" +msgstr "" + +msgid "tLast seen" +msgstr "" + +msgid "tLast file backup" +msgstr "" + +msgid "tLast image backup" +msgstr "" + +msgid "tFile backup status" +msgstr "" + +msgid "tImage backup status" +msgstr "" + +msgid "tShow details" +msgstr "" + +msgid "tExtra clients" +msgstr "" + +msgid "tNo extra clients" +msgstr "" + +msgid "tActions" +msgstr "" + +msgid "tOnline" +msgstr "" + +msgid "tHostname/IP" +msgstr "" + +msgid "tServer identity" +msgstr "" + +msgid "users" +msgstr "" + +msgid "general_settings" +msgstr "" + +msgid "admin" +msgstr "" + +msgid "user" +msgstr "" + +msgid "username_empty" +msgstr "" + +msgid "password_empty" +msgstr "" + +msgid "password_differ" +msgstr "" + +msgid "user_n_exist" +msgstr "" + +msgid "password_wrong" +msgstr "" + +msgid "user_exists" +msgstr "" + +msgid "session_timeout" +msgstr "" + +msgid "really_del_user" +msgstr "" + +msgid "user_add_done" +msgstr "" + +msgid "user_remove_done" +msgstr "" + +msgid "user_update_right_done" +msgstr "" + +msgid "user_pw_change_ok" +msgstr "" + +msgid "right_all" +msgstr "" + +msgid "right_none" +msgstr "" + +msgid "filter" +msgstr "" + +msgid "all" +msgstr "" + +msgid "loglevel_0" +msgstr "" + +msgid "loglevel_1" +msgstr "" + +msgid "loglevel_2" +msgstr "" + +msgid "dir_error_text" +msgstr "" + +msgid "tmpdir_error_text" +msgstr "" + +msgid "starting" +msgstr "" + +msgid "ident_err" +msgstr "" + +msgid "enter_hostname" +msgstr "" + +msgid "clients" +msgstr "" + +msgid "validate_text_empty" +msgstr "" + +msgid "validate_text_notint" +msgstr "" + +msgid "validate_name_update_freq_incr" +msgstr "" + +msgid "validate_name_update_freq_full" +msgstr "" + +msgid "validate_name_update_freq_image_full" +msgstr "" + +msgid "validate_name_update_freq_image_incr" +msgstr "" + +msgid "validate_name_max_file_incr" +msgstr "" + +msgid "validate_name_min_file_incr" +msgstr "" + +msgid "validate_name_max_file_full" +msgstr "" + +msgid "validate_name_min_file_full" +msgstr "" + +msgid "validate_name_min_image_incr" +msgstr "" + +msgid "validate_name_max_image_incr" +msgstr "" + +msgid "validate_name_min_image_full" +msgstr "" + +msgid "validate_name_max_image_full" +msgstr "" + +msgid "validate_name_startup_backup_delay" +msgstr "" + +msgid "validate_err_notregexp_backup_window" +msgstr "" + +msgid "validate_name_max_active_clients" +msgstr "" + +msgid "validate_name_max_sim_backups" +msgstr "" + +msgid "validate_name_backupfolder" +msgstr "" + +msgid "validate_name_computername" +msgstr "" + +msgid "too_many_clients_err" +msgstr "" + +msgid "really_remove_client" +msgstr "" + +msgid "computername" +msgstr "" + +msgid "storage_usage_pie_graph_title" +msgstr "" + +msgid "storage_usage_pie_graph_colname1" +msgstr "" + +msgid "storage_usage_pie_graph_colname2" +msgstr "" + +msgid "storage_usage_bar_graph_title" +msgstr "" + +msgid "storage_usage_bar_graph_colname1" +msgstr "" + +msgid "storage_usage_bar_graph_colname2" +msgstr "" + +msgid "tImages" +msgstr "" + +msgid "tFiles" +msgstr "" + +msgid "tSum" +msgstr "" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "" + +msgid "mail_settings" +msgstr "" + +msgid "upgrade_error_text" +msgstr "" + +msgid "tActivities" +msgstr "" + +msgid "tAction" +msgstr "" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "" + +msgid "tLast activities" +msgstr "" + +msgid "tStarting time" +msgstr "" + +msgid "tRequired time" +msgstr "" + +msgid "tUsed Storage" +msgstr "" + +msgid "tClients" +msgstr "" + +msgid "tLogs" +msgstr "" + +msgid "tReports" +msgstr "" + +msgid "tSend reports to" +msgstr "" + +msgid "tSend" +msgstr "" + +msgid "tBackups with a log message of at least log level" +msgstr "" + +msgid "tBackup time" +msgstr "" + +msgid "tErrors" +msgstr "" + +msgid "tWarnings" +msgstr "" + +msgid "tStorage allocation" +msgstr "" + +msgid "tStorage usage" +msgstr "" + +msgid "tAll" +msgstr "" + +msgid "tBackup storage path" +msgstr "" + +msgid "tDo not do image backups" +msgstr "" + +msgid "tDo not do file backups" +msgstr "" + +msgid "tAutomatically shut down server" +msgstr "" + +msgid "tAutoupdate clients" +msgstr "" + +msgid "tMax number of simultaneous backups" +msgstr "" + +msgid "tMax number of recently active clients" +msgstr "" + +msgid "tCleanup time window" +msgstr "" + +msgid "tAutomatically backup UrBackup database" +msgstr "" + +msgid "tInterval for incremental file backups" +msgstr "" + +msgid "tInterval for full file backups" +msgstr "" + +msgid "tInterval for incremental image backups" +msgstr "" + +msgid "tInterval for full image backups" +msgstr "" + +msgid "tMaximal number of incremental file backups" +msgstr "" + +msgid "tMinimal number of incremental file backups" +msgstr "" + +msgid "tMaximal number of full file backups" +msgstr "" + +msgid "tMinimal number of full file backups" +msgstr "" + +msgid "tMaximal number of incremental image backups" +msgstr "" + +msgid "tMinimal number of incremental image backups" +msgstr "" + +msgid "tMaximal number of full image backups" +msgstr "" + +msgid "tMinimal number of full image backups" +msgstr "" + +msgid "tDelay after system startup" +msgstr "" + +msgid "tBackup window" +msgstr "" + +msgid "tExcluded files (with wildcards)" +msgstr "" + +msgid "tIncluded files (with wildcards)" +msgstr "" + +msgid "tDefault directories to backup" +msgstr "" + +msgid "tVolumes to backup" +msgstr "" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "" + +msgid "tAllow client-side starting of file backups" +msgstr "" + +msgid "tAllow client-side starting of image backups" +msgstr "" + +msgid "tAllow client-side viewing of backup logs" +msgstr "" + +msgid "tAllow client-side pausing of backups" +msgstr "" + +msgid "tAllow client-side changing of settings" +msgstr "" + +msgid "tdays" +msgstr "" + +msgid "thours" +msgstr "" + +msgid "tmin" +msgstr "" + +msgid "tMail server name" +msgstr "" + +msgid "tMail server port" +msgstr "" + +msgid "tMail server username (empty for none)" +msgstr "" + +msgid "tMail server password" +msgstr "" + +msgid "tSender E-Mail Address" +msgstr "" + +msgid "tSend mails only with SSL/TLS" +msgstr "" + +msgid "tCheck SSL/TLS certificate" +msgstr "" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "" + +msgid "tTest Mail sent successfully" +msgstr "" + +msgid "tSending test mail failed. Error:" +msgstr "" + +msgid "tFilter" +msgstr "" + +msgid "tBack" +msgstr "" + +msgid "tAdd" +msgstr "" + +msgid "tRemove" +msgstr "" + +msgid "tSave" +msgstr "" + +msgid "tLevel" +msgstr "" + +msgid "tTime" +msgstr "" + +msgid "tMessage" +msgstr "" + +msgid "tLog" +msgstr "" + +msgid "tUsername" +msgstr "" + +msgid "tRights" +msgstr "" + +msgid "tNo Users" +msgstr "" + +msgid "tCreate user" +msgstr "" + +msgid "tPassword" +msgstr "" + +msgid "tRepeat password" +msgstr "" + +msgid "tRights for" +msgstr "" + +msgid "tAbort" +msgstr "" + +msgid "tCreate" +msgstr "" + +msgid "tChange rights" +msgstr "" + +msgid "tChange password" +msgstr "" + +msgid "tLogin" +msgstr "" + +msgid "tInfos" +msgstr "" + +msgid "tSeparate settings for this client" +msgstr "" + +msgid "tServer" +msgstr "" + +msgid "tFile backups" +msgstr "" + +msgid "tImage backups" +msgstr "" + +msgid "tPermissions" +msgstr "" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "" + +msgid "tMax backup speed for local network" +msgstr "" + +msgid "tNo activities" +msgstr "" + +msgid "tSelect all" +msgstr "" + +msgid "tSelect none" +msgstr "" + +msgid "tRemove selected" +msgstr "" + +msgid "tStart for selected" +msgstr "" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "" + +msgid "tArchive every" +msgstr "" + +msgid "tArchive for" +msgstr "" + +msgid "tArchive window" +msgstr "" + +msgid "tBackup type" +msgstr "" + +msgid "tEnable internet mode (requires server restart)" +msgstr "" + +msgid "tInternet server name/IP" +msgstr "" + +msgid "tInternet server port" +msgstr "" + +msgid "tDo image backups over internet" +msgstr "" + +msgid "tDo full file backups over internet" +msgstr "" + +msgid "tMax backup speed for internet connection" +msgstr "" + +msgid "tTotal max backup speed for internet connection" +msgstr "" + +msgid "tEncrypted transfer" +msgstr "" + +msgid "tCompressed transfer" +msgstr "" + +msgid "file_backup" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "days" +msgstr "" + +msgid "weeks" +msgstr "" + +msgid "months" +msgstr "" + +msgid "year" +msgstr "" + +msgid "hour" +msgstr "" + +msgid "day" +msgstr "" + +msgid "week" +msgstr "" + +msgid "month" +msgstr "" + +msgid "years" +msgstr "" + +msgid "min" +msgstr "" + +msgid "mins" +msgstr "" + +msgid "validate_name_archive_every" +msgstr "" + +msgid "validate_name_archive_for" +msgstr "" + +msgid "forever" +msgstr "" + +msgid "backup_in_progress" +msgstr "" + +msgid "really_remove_clients" +msgstr "" + +msgid "no_client_selected" +msgstr "" + +msgid "queued_backup" +msgstr "" + +msgid "starting_backup_failed" +msgstr "" + +msgid "trying_to_stop_backup" +msgstr "" + +msgid "unarchived_in" +msgstr "" + +msgid "validate_err_notregexp_archive_window" +msgstr "" + +msgid "wait_for_archive_window" +msgstr "" + +msgid "validate_err_notregexp_image_letters" +msgstr "" + +msgid "validate_name_global_local_speed" +msgstr "" + +msgid "validate_name_global_internet_speed" +msgstr "" + +msgid "validate_name_local_speed" +msgstr "" + +msgid "validate_name_internet_speed" +msgstr "" + +msgid "enter_clientname" +msgstr "" + +msgid "internet_client_added" +msgstr "" + +msgid "change_pw" +msgstr "" + +msgid "old_pw_wrong" +msgstr "" + +msgid "tID" +msgstr "" + +msgid "tFile" +msgstr "" + +msgid "tSize" +msgstr "" + +msgid "tIncremental" +msgstr "" + +msgid "tLoading" +msgstr "" + +msgid "tStorage usage of" +msgstr "" + +msgid "tDelete domain" +msgstr "" + +msgid "tChange rights for user" +msgstr "" + +msgid "tDomain" +msgstr "" + +msgid "tTranslation" +msgstr "" + +msgid "tNew domain" +msgstr "" + +msgid "tChange" +msgstr "" + +msgid "tChange password for user" +msgstr "" + +msgid "tSaved settings successfully" +msgstr "" + +msgid "tThis client is going to be removed." +msgstr "" + +msgid "tStop removing client" +msgstr "" + +msgid "tFailed" +msgstr "" + +msgid "tSuccessfull" +msgstr "" + +msgid "tInfo" +msgstr "" + +msgid "tError" +msgstr "" + +msgid "tWarning" +msgstr "" + +msgid "tCurrent version" +msgstr "" + +msgid "tTarget version" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "" + +msgid "tNext archival" +msgstr "" + +msgid "tweeks" +msgstr "" + +msgid "tmonth" +msgstr "" + +msgid "tyears" +msgstr "" + +msgid "tforever" +msgstr "" + +msgid "tFile backup" +msgstr "" + +msgid "tIncremental file backup" +msgstr "" + +msgid "tFull file backup" +msgstr "" + +msgid "tEnable internet mode" +msgstr "" + +msgid "tInternet auth key" +msgstr "" + +msgid "tIncremental image backup" +msgstr "" + +msgid "tFull image backup" +msgstr "" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "" + +msgid "tArchived" +msgstr "" + +msgid "nospc_stalled_text" +msgstr "" + +msgid "nospc_fatal_text" +msgstr "" + +msgid "tNondefault temporary file directory" +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/sv.po b/urbackupserver/www/translations/urbackup.webinterface/sv.po new file mode 100644 index 00000000..5efc7018 --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/sv.po @@ -0,0 +1,1127 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:33+0000\n" +"Language-Team: Swedish (http://www.transifex.com/projects/p/urbackup/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "action_1" +msgstr "" + +msgid "action_2" +msgstr "" + +msgid "action_3" +msgstr "" + +msgid "action_4" +msgstr "" + +msgid "action_1_d" +msgstr "" + +msgid "action_2_d" +msgstr "" + +msgid "action_3_d" +msgstr "" + +msgid "action_4_d" +msgstr "" + +msgid "nav_item_6" +msgstr "" + +msgid "nav_item_5" +msgstr "" + +msgid "nav_item_4" +msgstr "" + +msgid "nav_item_3" +msgstr "" + +msgid "nav_item_2" +msgstr "" + +msgid "nav_item_1" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "overview" +msgstr "" + +msgid "ok" +msgstr "" + +msgid "no_recent_backup" +msgstr "" + +msgid "backup_never" +msgstr "" + +msgid "yes" +msgstr "" + +msgid "no" +msgstr "" + +msgid "tBackup status" +msgstr "" + +msgid "tComputer name" +msgstr "" + +msgid "tLast seen" +msgstr "" + +msgid "tLast file backup" +msgstr "" + +msgid "tLast image backup" +msgstr "" + +msgid "tFile backup status" +msgstr "" + +msgid "tImage backup status" +msgstr "" + +msgid "tShow details" +msgstr "" + +msgid "tExtra clients" +msgstr "" + +msgid "tNo extra clients" +msgstr "" + +msgid "tActions" +msgstr "" + +msgid "tOnline" +msgstr "" + +msgid "tHostname/IP" +msgstr "" + +msgid "tServer identity" +msgstr "" + +msgid "users" +msgstr "" + +msgid "general_settings" +msgstr "" + +msgid "admin" +msgstr "" + +msgid "user" +msgstr "" + +msgid "username_empty" +msgstr "" + +msgid "password_empty" +msgstr "" + +msgid "password_differ" +msgstr "" + +msgid "user_n_exist" +msgstr "" + +msgid "password_wrong" +msgstr "" + +msgid "user_exists" +msgstr "" + +msgid "session_timeout" +msgstr "" + +msgid "really_del_user" +msgstr "" + +msgid "user_add_done" +msgstr "" + +msgid "user_remove_done" +msgstr "" + +msgid "user_update_right_done" +msgstr "" + +msgid "user_pw_change_ok" +msgstr "" + +msgid "right_all" +msgstr "" + +msgid "right_none" +msgstr "" + +msgid "filter" +msgstr "" + +msgid "all" +msgstr "" + +msgid "loglevel_0" +msgstr "" + +msgid "loglevel_1" +msgstr "" + +msgid "loglevel_2" +msgstr "" + +msgid "dir_error_text" +msgstr "" + +msgid "tmpdir_error_text" +msgstr "" + +msgid "starting" +msgstr "" + +msgid "ident_err" +msgstr "" + +msgid "enter_hostname" +msgstr "" + +msgid "clients" +msgstr "" + +msgid "validate_text_empty" +msgstr "" + +msgid "validate_text_notint" +msgstr "" + +msgid "validate_name_update_freq_incr" +msgstr "" + +msgid "validate_name_update_freq_full" +msgstr "" + +msgid "validate_name_update_freq_image_full" +msgstr "" + +msgid "validate_name_update_freq_image_incr" +msgstr "" + +msgid "validate_name_max_file_incr" +msgstr "" + +msgid "validate_name_min_file_incr" +msgstr "" + +msgid "validate_name_max_file_full" +msgstr "" + +msgid "validate_name_min_file_full" +msgstr "" + +msgid "validate_name_min_image_incr" +msgstr "" + +msgid "validate_name_max_image_incr" +msgstr "" + +msgid "validate_name_min_image_full" +msgstr "" + +msgid "validate_name_max_image_full" +msgstr "" + +msgid "validate_name_startup_backup_delay" +msgstr "" + +msgid "validate_err_notregexp_backup_window" +msgstr "" + +msgid "validate_name_max_active_clients" +msgstr "" + +msgid "validate_name_max_sim_backups" +msgstr "" + +msgid "validate_name_backupfolder" +msgstr "" + +msgid "validate_name_computername" +msgstr "" + +msgid "too_many_clients_err" +msgstr "" + +msgid "really_remove_client" +msgstr "" + +msgid "computername" +msgstr "" + +msgid "storage_usage_pie_graph_title" +msgstr "" + +msgid "storage_usage_pie_graph_colname1" +msgstr "" + +msgid "storage_usage_pie_graph_colname2" +msgstr "" + +msgid "storage_usage_bar_graph_title" +msgstr "" + +msgid "storage_usage_bar_graph_colname1" +msgstr "" + +msgid "storage_usage_bar_graph_colname2" +msgstr "" + +msgid "tImages" +msgstr "" + +msgid "tFiles" +msgstr "" + +msgid "tSum" +msgstr "" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "" + +msgid "mail_settings" +msgstr "" + +msgid "upgrade_error_text" +msgstr "" + +msgid "tActivities" +msgstr "" + +msgid "tAction" +msgstr "" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "" + +msgid "tLast activities" +msgstr "" + +msgid "tStarting time" +msgstr "" + +msgid "tRequired time" +msgstr "" + +msgid "tUsed Storage" +msgstr "" + +msgid "tClients" +msgstr "" + +msgid "tLogs" +msgstr "" + +msgid "tReports" +msgstr "" + +msgid "tSend reports to" +msgstr "" + +msgid "tSend" +msgstr "" + +msgid "tBackups with a log message of at least log level" +msgstr "" + +msgid "tBackup time" +msgstr "" + +msgid "tErrors" +msgstr "" + +msgid "tWarnings" +msgstr "" + +msgid "tStorage allocation" +msgstr "" + +msgid "tStorage usage" +msgstr "" + +msgid "tAll" +msgstr "" + +msgid "tBackup storage path" +msgstr "" + +msgid "tDo not do image backups" +msgstr "" + +msgid "tDo not do file backups" +msgstr "" + +msgid "tAutomatically shut down server" +msgstr "" + +msgid "tAutoupdate clients" +msgstr "" + +msgid "tMax number of simultaneous backups" +msgstr "" + +msgid "tMax number of recently active clients" +msgstr "" + +msgid "tCleanup time window" +msgstr "" + +msgid "tAutomatically backup UrBackup database" +msgstr "" + +msgid "tInterval for incremental file backups" +msgstr "" + +msgid "tInterval for full file backups" +msgstr "" + +msgid "tInterval for incremental image backups" +msgstr "" + +msgid "tInterval for full image backups" +msgstr "" + +msgid "tMaximal number of incremental file backups" +msgstr "" + +msgid "tMinimal number of incremental file backups" +msgstr "" + +msgid "tMaximal number of full file backups" +msgstr "" + +msgid "tMinimal number of full file backups" +msgstr "" + +msgid "tMaximal number of incremental image backups" +msgstr "" + +msgid "tMinimal number of incremental image backups" +msgstr "" + +msgid "tMaximal number of full image backups" +msgstr "" + +msgid "tMinimal number of full image backups" +msgstr "" + +msgid "tDelay after system startup" +msgstr "" + +msgid "tBackup window" +msgstr "" + +msgid "tExcluded files (with wildcards)" +msgstr "" + +msgid "tIncluded files (with wildcards)" +msgstr "" + +msgid "tDefault directories to backup" +msgstr "" + +msgid "tVolumes to backup" +msgstr "" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "" + +msgid "tAllow client-side starting of file backups" +msgstr "" + +msgid "tAllow client-side starting of image backups" +msgstr "" + +msgid "tAllow client-side viewing of backup logs" +msgstr "" + +msgid "tAllow client-side pausing of backups" +msgstr "" + +msgid "tAllow client-side changing of settings" +msgstr "" + +msgid "tdays" +msgstr "" + +msgid "thours" +msgstr "" + +msgid "tmin" +msgstr "" + +msgid "tMail server name" +msgstr "" + +msgid "tMail server port" +msgstr "" + +msgid "tMail server username (empty for none)" +msgstr "" + +msgid "tMail server password" +msgstr "" + +msgid "tSender E-Mail Address" +msgstr "" + +msgid "tSend mails only with SSL/TLS" +msgstr "" + +msgid "tCheck SSL/TLS certificate" +msgstr "" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "" + +msgid "tTest Mail sent successfully" +msgstr "" + +msgid "tSending test mail failed. Error:" +msgstr "" + +msgid "tFilter" +msgstr "" + +msgid "tBack" +msgstr "" + +msgid "tAdd" +msgstr "" + +msgid "tRemove" +msgstr "" + +msgid "tSave" +msgstr "" + +msgid "tLevel" +msgstr "" + +msgid "tTime" +msgstr "" + +msgid "tMessage" +msgstr "" + +msgid "tLog" +msgstr "" + +msgid "tUsername" +msgstr "" + +msgid "tRights" +msgstr "" + +msgid "tNo Users" +msgstr "" + +msgid "tCreate user" +msgstr "" + +msgid "tPassword" +msgstr "" + +msgid "tRepeat password" +msgstr "" + +msgid "tRights for" +msgstr "" + +msgid "tAbort" +msgstr "" + +msgid "tCreate" +msgstr "" + +msgid "tChange rights" +msgstr "" + +msgid "tChange password" +msgstr "" + +msgid "tLogin" +msgstr "" + +msgid "tInfos" +msgstr "" + +msgid "tSeparate settings for this client" +msgstr "" + +msgid "tServer" +msgstr "" + +msgid "tFile backups" +msgstr "" + +msgid "tImage backups" +msgstr "" + +msgid "tPermissions" +msgstr "" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "" + +msgid "tMax backup speed for local network" +msgstr "" + +msgid "tNo activities" +msgstr "" + +msgid "tSelect all" +msgstr "" + +msgid "tSelect none" +msgstr "" + +msgid "tRemove selected" +msgstr "" + +msgid "tStart for selected" +msgstr "" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "" + +msgid "tArchive every" +msgstr "" + +msgid "tArchive for" +msgstr "" + +msgid "tArchive window" +msgstr "" + +msgid "tBackup type" +msgstr "" + +msgid "tEnable internet mode (requires server restart)" +msgstr "" + +msgid "tInternet server name/IP" +msgstr "" + +msgid "tInternet server port" +msgstr "" + +msgid "tDo image backups over internet" +msgstr "" + +msgid "tDo full file backups over internet" +msgstr "" + +msgid "tMax backup speed for internet connection" +msgstr "" + +msgid "tTotal max backup speed for internet connection" +msgstr "" + +msgid "tEncrypted transfer" +msgstr "" + +msgid "tCompressed transfer" +msgstr "" + +msgid "file_backup" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "days" +msgstr "" + +msgid "weeks" +msgstr "" + +msgid "months" +msgstr "" + +msgid "year" +msgstr "" + +msgid "hour" +msgstr "" + +msgid "day" +msgstr "" + +msgid "week" +msgstr "" + +msgid "month" +msgstr "" + +msgid "years" +msgstr "" + +msgid "min" +msgstr "" + +msgid "mins" +msgstr "" + +msgid "validate_name_archive_every" +msgstr "" + +msgid "validate_name_archive_for" +msgstr "" + +msgid "forever" +msgstr "" + +msgid "backup_in_progress" +msgstr "" + +msgid "really_remove_clients" +msgstr "" + +msgid "no_client_selected" +msgstr "" + +msgid "queued_backup" +msgstr "" + +msgid "starting_backup_failed" +msgstr "" + +msgid "trying_to_stop_backup" +msgstr "" + +msgid "unarchived_in" +msgstr "" + +msgid "validate_err_notregexp_archive_window" +msgstr "" + +msgid "wait_for_archive_window" +msgstr "" + +msgid "validate_err_notregexp_image_letters" +msgstr "" + +msgid "validate_name_global_local_speed" +msgstr "" + +msgid "validate_name_global_internet_speed" +msgstr "" + +msgid "validate_name_local_speed" +msgstr "" + +msgid "validate_name_internet_speed" +msgstr "" + +msgid "enter_clientname" +msgstr "" + +msgid "internet_client_added" +msgstr "" + +msgid "change_pw" +msgstr "" + +msgid "old_pw_wrong" +msgstr "" + +msgid "tID" +msgstr "" + +msgid "tFile" +msgstr "" + +msgid "tSize" +msgstr "" + +msgid "tIncremental" +msgstr "" + +msgid "tLoading" +msgstr "" + +msgid "tStorage usage of" +msgstr "" + +msgid "tDelete domain" +msgstr "" + +msgid "tChange rights for user" +msgstr "" + +msgid "tDomain" +msgstr "" + +msgid "tTranslation" +msgstr "" + +msgid "tNew domain" +msgstr "" + +msgid "tChange" +msgstr "" + +msgid "tChange password for user" +msgstr "" + +msgid "tSaved settings successfully" +msgstr "" + +msgid "tThis client is going to be removed." +msgstr "" + +msgid "tStop removing client" +msgstr "" + +msgid "tFailed" +msgstr "" + +msgid "tSuccessfull" +msgstr "" + +msgid "tInfo" +msgstr "" + +msgid "tError" +msgstr "" + +msgid "tWarning" +msgstr "" + +msgid "tCurrent version" +msgstr "" + +msgid "tTarget version" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "" + +msgid "tNext archival" +msgstr "" + +msgid "tweeks" +msgstr "" + +msgid "tmonth" +msgstr "" + +msgid "tyears" +msgstr "" + +msgid "tforever" +msgstr "" + +msgid "tFile backup" +msgstr "" + +msgid "tIncremental file backup" +msgstr "" + +msgid "tFull file backup" +msgstr "" + +msgid "tEnable internet mode" +msgstr "" + +msgid "tInternet auth key" +msgstr "" + +msgid "tIncremental image backup" +msgstr "" + +msgid "tFull image backup" +msgstr "" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "" + +msgid "tArchived" +msgstr "" + +msgid "nospc_stalled_text" +msgstr "" + +msgid "nospc_fatal_text" +msgstr "" + +msgid "tNondefault temporary file directory" +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/tr_TR.po b/urbackupserver/www/translations/urbackup.webinterface/tr_TR.po new file mode 100644 index 00000000..eb2c4b2f --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/tr_TR.po @@ -0,0 +1,1127 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:33+0000\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/urbackup/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "action_1" +msgstr "" + +msgid "action_2" +msgstr "" + +msgid "action_3" +msgstr "" + +msgid "action_4" +msgstr "" + +msgid "action_1_d" +msgstr "" + +msgid "action_2_d" +msgstr "" + +msgid "action_3_d" +msgstr "" + +msgid "action_4_d" +msgstr "" + +msgid "nav_item_6" +msgstr "" + +msgid "nav_item_5" +msgstr "" + +msgid "nav_item_4" +msgstr "" + +msgid "nav_item_3" +msgstr "" + +msgid "nav_item_2" +msgstr "" + +msgid "nav_item_1" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "overview" +msgstr "" + +msgid "ok" +msgstr "" + +msgid "no_recent_backup" +msgstr "" + +msgid "backup_never" +msgstr "" + +msgid "yes" +msgstr "" + +msgid "no" +msgstr "" + +msgid "tBackup status" +msgstr "" + +msgid "tComputer name" +msgstr "" + +msgid "tLast seen" +msgstr "" + +msgid "tLast file backup" +msgstr "" + +msgid "tLast image backup" +msgstr "" + +msgid "tFile backup status" +msgstr "" + +msgid "tImage backup status" +msgstr "" + +msgid "tShow details" +msgstr "" + +msgid "tExtra clients" +msgstr "" + +msgid "tNo extra clients" +msgstr "" + +msgid "tActions" +msgstr "" + +msgid "tOnline" +msgstr "" + +msgid "tHostname/IP" +msgstr "" + +msgid "tServer identity" +msgstr "" + +msgid "users" +msgstr "" + +msgid "general_settings" +msgstr "" + +msgid "admin" +msgstr "" + +msgid "user" +msgstr "" + +msgid "username_empty" +msgstr "" + +msgid "password_empty" +msgstr "" + +msgid "password_differ" +msgstr "" + +msgid "user_n_exist" +msgstr "" + +msgid "password_wrong" +msgstr "" + +msgid "user_exists" +msgstr "" + +msgid "session_timeout" +msgstr "" + +msgid "really_del_user" +msgstr "" + +msgid "user_add_done" +msgstr "" + +msgid "user_remove_done" +msgstr "" + +msgid "user_update_right_done" +msgstr "" + +msgid "user_pw_change_ok" +msgstr "" + +msgid "right_all" +msgstr "" + +msgid "right_none" +msgstr "" + +msgid "filter" +msgstr "" + +msgid "all" +msgstr "" + +msgid "loglevel_0" +msgstr "" + +msgid "loglevel_1" +msgstr "" + +msgid "loglevel_2" +msgstr "" + +msgid "dir_error_text" +msgstr "" + +msgid "tmpdir_error_text" +msgstr "" + +msgid "starting" +msgstr "" + +msgid "ident_err" +msgstr "" + +msgid "enter_hostname" +msgstr "" + +msgid "clients" +msgstr "" + +msgid "validate_text_empty" +msgstr "" + +msgid "validate_text_notint" +msgstr "" + +msgid "validate_name_update_freq_incr" +msgstr "" + +msgid "validate_name_update_freq_full" +msgstr "" + +msgid "validate_name_update_freq_image_full" +msgstr "" + +msgid "validate_name_update_freq_image_incr" +msgstr "" + +msgid "validate_name_max_file_incr" +msgstr "" + +msgid "validate_name_min_file_incr" +msgstr "" + +msgid "validate_name_max_file_full" +msgstr "" + +msgid "validate_name_min_file_full" +msgstr "" + +msgid "validate_name_min_image_incr" +msgstr "" + +msgid "validate_name_max_image_incr" +msgstr "" + +msgid "validate_name_min_image_full" +msgstr "" + +msgid "validate_name_max_image_full" +msgstr "" + +msgid "validate_name_startup_backup_delay" +msgstr "" + +msgid "validate_err_notregexp_backup_window" +msgstr "" + +msgid "validate_name_max_active_clients" +msgstr "" + +msgid "validate_name_max_sim_backups" +msgstr "" + +msgid "validate_name_backupfolder" +msgstr "" + +msgid "validate_name_computername" +msgstr "" + +msgid "too_many_clients_err" +msgstr "" + +msgid "really_remove_client" +msgstr "" + +msgid "computername" +msgstr "" + +msgid "storage_usage_pie_graph_title" +msgstr "" + +msgid "storage_usage_pie_graph_colname1" +msgstr "" + +msgid "storage_usage_pie_graph_colname2" +msgstr "" + +msgid "storage_usage_bar_graph_title" +msgstr "" + +msgid "storage_usage_bar_graph_colname1" +msgstr "" + +msgid "storage_usage_bar_graph_colname2" +msgstr "" + +msgid "tImages" +msgstr "" + +msgid "tFiles" +msgstr "" + +msgid "tSum" +msgstr "" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "" + +msgid "mail_settings" +msgstr "" + +msgid "upgrade_error_text" +msgstr "" + +msgid "tActivities" +msgstr "" + +msgid "tAction" +msgstr "" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "" + +msgid "tLast activities" +msgstr "" + +msgid "tStarting time" +msgstr "" + +msgid "tRequired time" +msgstr "" + +msgid "tUsed Storage" +msgstr "" + +msgid "tClients" +msgstr "" + +msgid "tLogs" +msgstr "" + +msgid "tReports" +msgstr "" + +msgid "tSend reports to" +msgstr "" + +msgid "tSend" +msgstr "" + +msgid "tBackups with a log message of at least log level" +msgstr "" + +msgid "tBackup time" +msgstr "" + +msgid "tErrors" +msgstr "" + +msgid "tWarnings" +msgstr "" + +msgid "tStorage allocation" +msgstr "" + +msgid "tStorage usage" +msgstr "" + +msgid "tAll" +msgstr "" + +msgid "tBackup storage path" +msgstr "" + +msgid "tDo not do image backups" +msgstr "" + +msgid "tDo not do file backups" +msgstr "" + +msgid "tAutomatically shut down server" +msgstr "" + +msgid "tAutoupdate clients" +msgstr "" + +msgid "tMax number of simultaneous backups" +msgstr "" + +msgid "tMax number of recently active clients" +msgstr "" + +msgid "tCleanup time window" +msgstr "" + +msgid "tAutomatically backup UrBackup database" +msgstr "" + +msgid "tInterval for incremental file backups" +msgstr "" + +msgid "tInterval for full file backups" +msgstr "" + +msgid "tInterval for incremental image backups" +msgstr "" + +msgid "tInterval for full image backups" +msgstr "" + +msgid "tMaximal number of incremental file backups" +msgstr "" + +msgid "tMinimal number of incremental file backups" +msgstr "" + +msgid "tMaximal number of full file backups" +msgstr "" + +msgid "tMinimal number of full file backups" +msgstr "" + +msgid "tMaximal number of incremental image backups" +msgstr "" + +msgid "tMinimal number of incremental image backups" +msgstr "" + +msgid "tMaximal number of full image backups" +msgstr "" + +msgid "tMinimal number of full image backups" +msgstr "" + +msgid "tDelay after system startup" +msgstr "" + +msgid "tBackup window" +msgstr "" + +msgid "tExcluded files (with wildcards)" +msgstr "" + +msgid "tIncluded files (with wildcards)" +msgstr "" + +msgid "tDefault directories to backup" +msgstr "" + +msgid "tVolumes to backup" +msgstr "" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "" + +msgid "tAllow client-side starting of file backups" +msgstr "" + +msgid "tAllow client-side starting of image backups" +msgstr "" + +msgid "tAllow client-side viewing of backup logs" +msgstr "" + +msgid "tAllow client-side pausing of backups" +msgstr "" + +msgid "tAllow client-side changing of settings" +msgstr "" + +msgid "tdays" +msgstr "" + +msgid "thours" +msgstr "" + +msgid "tmin" +msgstr "" + +msgid "tMail server name" +msgstr "" + +msgid "tMail server port" +msgstr "" + +msgid "tMail server username (empty for none)" +msgstr "" + +msgid "tMail server password" +msgstr "" + +msgid "tSender E-Mail Address" +msgstr "" + +msgid "tSend mails only with SSL/TLS" +msgstr "" + +msgid "tCheck SSL/TLS certificate" +msgstr "" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "" + +msgid "tTest Mail sent successfully" +msgstr "" + +msgid "tSending test mail failed. Error:" +msgstr "" + +msgid "tFilter" +msgstr "" + +msgid "tBack" +msgstr "" + +msgid "tAdd" +msgstr "" + +msgid "tRemove" +msgstr "" + +msgid "tSave" +msgstr "" + +msgid "tLevel" +msgstr "" + +msgid "tTime" +msgstr "" + +msgid "tMessage" +msgstr "" + +msgid "tLog" +msgstr "" + +msgid "tUsername" +msgstr "" + +msgid "tRights" +msgstr "" + +msgid "tNo Users" +msgstr "" + +msgid "tCreate user" +msgstr "" + +msgid "tPassword" +msgstr "" + +msgid "tRepeat password" +msgstr "" + +msgid "tRights for" +msgstr "" + +msgid "tAbort" +msgstr "" + +msgid "tCreate" +msgstr "" + +msgid "tChange rights" +msgstr "" + +msgid "tChange password" +msgstr "" + +msgid "tLogin" +msgstr "" + +msgid "tInfos" +msgstr "" + +msgid "tSeparate settings for this client" +msgstr "" + +msgid "tServer" +msgstr "" + +msgid "tFile backups" +msgstr "" + +msgid "tImage backups" +msgstr "" + +msgid "tPermissions" +msgstr "" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "" + +msgid "tMax backup speed for local network" +msgstr "" + +msgid "tNo activities" +msgstr "" + +msgid "tSelect all" +msgstr "" + +msgid "tSelect none" +msgstr "" + +msgid "tRemove selected" +msgstr "" + +msgid "tStart for selected" +msgstr "" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "" + +msgid "tArchive every" +msgstr "" + +msgid "tArchive for" +msgstr "" + +msgid "tArchive window" +msgstr "" + +msgid "tBackup type" +msgstr "" + +msgid "tEnable internet mode (requires server restart)" +msgstr "" + +msgid "tInternet server name/IP" +msgstr "" + +msgid "tInternet server port" +msgstr "" + +msgid "tDo image backups over internet" +msgstr "" + +msgid "tDo full file backups over internet" +msgstr "" + +msgid "tMax backup speed for internet connection" +msgstr "" + +msgid "tTotal max backup speed for internet connection" +msgstr "" + +msgid "tEncrypted transfer" +msgstr "" + +msgid "tCompressed transfer" +msgstr "" + +msgid "file_backup" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "days" +msgstr "" + +msgid "weeks" +msgstr "" + +msgid "months" +msgstr "" + +msgid "year" +msgstr "" + +msgid "hour" +msgstr "" + +msgid "day" +msgstr "" + +msgid "week" +msgstr "" + +msgid "month" +msgstr "" + +msgid "years" +msgstr "" + +msgid "min" +msgstr "" + +msgid "mins" +msgstr "" + +msgid "validate_name_archive_every" +msgstr "" + +msgid "validate_name_archive_for" +msgstr "" + +msgid "forever" +msgstr "" + +msgid "backup_in_progress" +msgstr "" + +msgid "really_remove_clients" +msgstr "" + +msgid "no_client_selected" +msgstr "" + +msgid "queued_backup" +msgstr "" + +msgid "starting_backup_failed" +msgstr "" + +msgid "trying_to_stop_backup" +msgstr "" + +msgid "unarchived_in" +msgstr "" + +msgid "validate_err_notregexp_archive_window" +msgstr "" + +msgid "wait_for_archive_window" +msgstr "" + +msgid "validate_err_notregexp_image_letters" +msgstr "" + +msgid "validate_name_global_local_speed" +msgstr "" + +msgid "validate_name_global_internet_speed" +msgstr "" + +msgid "validate_name_local_speed" +msgstr "" + +msgid "validate_name_internet_speed" +msgstr "" + +msgid "enter_clientname" +msgstr "" + +msgid "internet_client_added" +msgstr "" + +msgid "change_pw" +msgstr "" + +msgid "old_pw_wrong" +msgstr "" + +msgid "tID" +msgstr "" + +msgid "tFile" +msgstr "" + +msgid "tSize" +msgstr "" + +msgid "tIncremental" +msgstr "" + +msgid "tLoading" +msgstr "" + +msgid "tStorage usage of" +msgstr "" + +msgid "tDelete domain" +msgstr "" + +msgid "tChange rights for user" +msgstr "" + +msgid "tDomain" +msgstr "" + +msgid "tTranslation" +msgstr "" + +msgid "tNew domain" +msgstr "" + +msgid "tChange" +msgstr "" + +msgid "tChange password for user" +msgstr "" + +msgid "tSaved settings successfully" +msgstr "" + +msgid "tThis client is going to be removed." +msgstr "" + +msgid "tStop removing client" +msgstr "" + +msgid "tFailed" +msgstr "" + +msgid "tSuccessfull" +msgstr "" + +msgid "tInfo" +msgstr "" + +msgid "tError" +msgstr "" + +msgid "tWarning" +msgstr "" + +msgid "tCurrent version" +msgstr "" + +msgid "tTarget version" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "" + +msgid "tNext archival" +msgstr "" + +msgid "tweeks" +msgstr "" + +msgid "tmonth" +msgstr "" + +msgid "tyears" +msgstr "" + +msgid "tforever" +msgstr "" + +msgid "tFile backup" +msgstr "" + +msgid "tIncremental file backup" +msgstr "" + +msgid "tFull file backup" +msgstr "" + +msgid "tEnable internet mode" +msgstr "" + +msgid "tInternet auth key" +msgstr "" + +msgid "tIncremental image backup" +msgstr "" + +msgid "tFull image backup" +msgstr "" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "" + +msgid "tArchived" +msgstr "" + +msgid "nospc_stalled_text" +msgstr "" + +msgid "nospc_fatal_text" +msgstr "" + +msgid "tNondefault temporary file directory" +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/uk.po b/urbackupserver/www/translations/urbackup.webinterface/uk.po new file mode 100644 index 00000000..84f69553 --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/uk.po @@ -0,0 +1,1127 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:33+0000\n" +"Language-Team: Ukrainian (http://www.transifex.com/projects/p/urbackup/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\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" + +msgid "action_1" +msgstr "" + +msgid "action_2" +msgstr "" + +msgid "action_3" +msgstr "" + +msgid "action_4" +msgstr "" + +msgid "action_1_d" +msgstr "" + +msgid "action_2_d" +msgstr "" + +msgid "action_3_d" +msgstr "" + +msgid "action_4_d" +msgstr "" + +msgid "nav_item_6" +msgstr "" + +msgid "nav_item_5" +msgstr "" + +msgid "nav_item_4" +msgstr "" + +msgid "nav_item_3" +msgstr "" + +msgid "nav_item_2" +msgstr "" + +msgid "nav_item_1" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "overview" +msgstr "" + +msgid "ok" +msgstr "" + +msgid "no_recent_backup" +msgstr "" + +msgid "backup_never" +msgstr "" + +msgid "yes" +msgstr "" + +msgid "no" +msgstr "" + +msgid "tBackup status" +msgstr "" + +msgid "tComputer name" +msgstr "" + +msgid "tLast seen" +msgstr "" + +msgid "tLast file backup" +msgstr "" + +msgid "tLast image backup" +msgstr "" + +msgid "tFile backup status" +msgstr "" + +msgid "tImage backup status" +msgstr "" + +msgid "tShow details" +msgstr "" + +msgid "tExtra clients" +msgstr "" + +msgid "tNo extra clients" +msgstr "" + +msgid "tActions" +msgstr "" + +msgid "tOnline" +msgstr "" + +msgid "tHostname/IP" +msgstr "" + +msgid "tServer identity" +msgstr "" + +msgid "users" +msgstr "" + +msgid "general_settings" +msgstr "" + +msgid "admin" +msgstr "" + +msgid "user" +msgstr "" + +msgid "username_empty" +msgstr "" + +msgid "password_empty" +msgstr "" + +msgid "password_differ" +msgstr "" + +msgid "user_n_exist" +msgstr "" + +msgid "password_wrong" +msgstr "" + +msgid "user_exists" +msgstr "" + +msgid "session_timeout" +msgstr "" + +msgid "really_del_user" +msgstr "" + +msgid "user_add_done" +msgstr "" + +msgid "user_remove_done" +msgstr "" + +msgid "user_update_right_done" +msgstr "" + +msgid "user_pw_change_ok" +msgstr "" + +msgid "right_all" +msgstr "" + +msgid "right_none" +msgstr "" + +msgid "filter" +msgstr "" + +msgid "all" +msgstr "" + +msgid "loglevel_0" +msgstr "" + +msgid "loglevel_1" +msgstr "" + +msgid "loglevel_2" +msgstr "" + +msgid "dir_error_text" +msgstr "" + +msgid "tmpdir_error_text" +msgstr "" + +msgid "starting" +msgstr "" + +msgid "ident_err" +msgstr "" + +msgid "enter_hostname" +msgstr "" + +msgid "clients" +msgstr "" + +msgid "validate_text_empty" +msgstr "" + +msgid "validate_text_notint" +msgstr "" + +msgid "validate_name_update_freq_incr" +msgstr "" + +msgid "validate_name_update_freq_full" +msgstr "" + +msgid "validate_name_update_freq_image_full" +msgstr "" + +msgid "validate_name_update_freq_image_incr" +msgstr "" + +msgid "validate_name_max_file_incr" +msgstr "" + +msgid "validate_name_min_file_incr" +msgstr "" + +msgid "validate_name_max_file_full" +msgstr "" + +msgid "validate_name_min_file_full" +msgstr "" + +msgid "validate_name_min_image_incr" +msgstr "" + +msgid "validate_name_max_image_incr" +msgstr "" + +msgid "validate_name_min_image_full" +msgstr "" + +msgid "validate_name_max_image_full" +msgstr "" + +msgid "validate_name_startup_backup_delay" +msgstr "" + +msgid "validate_err_notregexp_backup_window" +msgstr "" + +msgid "validate_name_max_active_clients" +msgstr "" + +msgid "validate_name_max_sim_backups" +msgstr "" + +msgid "validate_name_backupfolder" +msgstr "" + +msgid "validate_name_computername" +msgstr "" + +msgid "too_many_clients_err" +msgstr "" + +msgid "really_remove_client" +msgstr "" + +msgid "computername" +msgstr "" + +msgid "storage_usage_pie_graph_title" +msgstr "" + +msgid "storage_usage_pie_graph_colname1" +msgstr "" + +msgid "storage_usage_pie_graph_colname2" +msgstr "" + +msgid "storage_usage_bar_graph_title" +msgstr "" + +msgid "storage_usage_bar_graph_colname1" +msgstr "" + +msgid "storage_usage_bar_graph_colname2" +msgstr "" + +msgid "tImages" +msgstr "" + +msgid "tFiles" +msgstr "" + +msgid "tSum" +msgstr "" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "" + +msgid "mail_settings" +msgstr "" + +msgid "upgrade_error_text" +msgstr "" + +msgid "tActivities" +msgstr "" + +msgid "tAction" +msgstr "" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "" + +msgid "tLast activities" +msgstr "" + +msgid "tStarting time" +msgstr "" + +msgid "tRequired time" +msgstr "" + +msgid "tUsed Storage" +msgstr "" + +msgid "tClients" +msgstr "" + +msgid "tLogs" +msgstr "" + +msgid "tReports" +msgstr "" + +msgid "tSend reports to" +msgstr "" + +msgid "tSend" +msgstr "" + +msgid "tBackups with a log message of at least log level" +msgstr "" + +msgid "tBackup time" +msgstr "" + +msgid "tErrors" +msgstr "" + +msgid "tWarnings" +msgstr "" + +msgid "tStorage allocation" +msgstr "" + +msgid "tStorage usage" +msgstr "" + +msgid "tAll" +msgstr "" + +msgid "tBackup storage path" +msgstr "" + +msgid "tDo not do image backups" +msgstr "" + +msgid "tDo not do file backups" +msgstr "" + +msgid "tAutomatically shut down server" +msgstr "" + +msgid "tAutoupdate clients" +msgstr "" + +msgid "tMax number of simultaneous backups" +msgstr "" + +msgid "tMax number of recently active clients" +msgstr "" + +msgid "tCleanup time window" +msgstr "" + +msgid "tAutomatically backup UrBackup database" +msgstr "" + +msgid "tInterval for incremental file backups" +msgstr "" + +msgid "tInterval for full file backups" +msgstr "" + +msgid "tInterval for incremental image backups" +msgstr "" + +msgid "tInterval for full image backups" +msgstr "" + +msgid "tMaximal number of incremental file backups" +msgstr "" + +msgid "tMinimal number of incremental file backups" +msgstr "" + +msgid "tMaximal number of full file backups" +msgstr "" + +msgid "tMinimal number of full file backups" +msgstr "" + +msgid "tMaximal number of incremental image backups" +msgstr "" + +msgid "tMinimal number of incremental image backups" +msgstr "" + +msgid "tMaximal number of full image backups" +msgstr "" + +msgid "tMinimal number of full image backups" +msgstr "" + +msgid "tDelay after system startup" +msgstr "" + +msgid "tBackup window" +msgstr "" + +msgid "tExcluded files (with wildcards)" +msgstr "" + +msgid "tIncluded files (with wildcards)" +msgstr "" + +msgid "tDefault directories to backup" +msgstr "" + +msgid "tVolumes to backup" +msgstr "" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "" + +msgid "tAllow client-side starting of file backups" +msgstr "" + +msgid "tAllow client-side starting of image backups" +msgstr "" + +msgid "tAllow client-side viewing of backup logs" +msgstr "" + +msgid "tAllow client-side pausing of backups" +msgstr "" + +msgid "tAllow client-side changing of settings" +msgstr "" + +msgid "tdays" +msgstr "" + +msgid "thours" +msgstr "" + +msgid "tmin" +msgstr "" + +msgid "tMail server name" +msgstr "" + +msgid "tMail server port" +msgstr "" + +msgid "tMail server username (empty for none)" +msgstr "" + +msgid "tMail server password" +msgstr "" + +msgid "tSender E-Mail Address" +msgstr "" + +msgid "tSend mails only with SSL/TLS" +msgstr "" + +msgid "tCheck SSL/TLS certificate" +msgstr "" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "" + +msgid "tTest Mail sent successfully" +msgstr "" + +msgid "tSending test mail failed. Error:" +msgstr "" + +msgid "tFilter" +msgstr "" + +msgid "tBack" +msgstr "" + +msgid "tAdd" +msgstr "" + +msgid "tRemove" +msgstr "" + +msgid "tSave" +msgstr "" + +msgid "tLevel" +msgstr "" + +msgid "tTime" +msgstr "" + +msgid "tMessage" +msgstr "" + +msgid "tLog" +msgstr "" + +msgid "tUsername" +msgstr "" + +msgid "tRights" +msgstr "" + +msgid "tNo Users" +msgstr "" + +msgid "tCreate user" +msgstr "" + +msgid "tPassword" +msgstr "" + +msgid "tRepeat password" +msgstr "" + +msgid "tRights for" +msgstr "" + +msgid "tAbort" +msgstr "" + +msgid "tCreate" +msgstr "" + +msgid "tChange rights" +msgstr "" + +msgid "tChange password" +msgstr "" + +msgid "tLogin" +msgstr "" + +msgid "tInfos" +msgstr "" + +msgid "tSeparate settings for this client" +msgstr "" + +msgid "tServer" +msgstr "" + +msgid "tFile backups" +msgstr "" + +msgid "tImage backups" +msgstr "" + +msgid "tPermissions" +msgstr "" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "" + +msgid "tMax backup speed for local network" +msgstr "" + +msgid "tNo activities" +msgstr "" + +msgid "tSelect all" +msgstr "" + +msgid "tSelect none" +msgstr "" + +msgid "tRemove selected" +msgstr "" + +msgid "tStart for selected" +msgstr "" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "" + +msgid "tArchive every" +msgstr "" + +msgid "tArchive for" +msgstr "" + +msgid "tArchive window" +msgstr "" + +msgid "tBackup type" +msgstr "" + +msgid "tEnable internet mode (requires server restart)" +msgstr "" + +msgid "tInternet server name/IP" +msgstr "" + +msgid "tInternet server port" +msgstr "" + +msgid "tDo image backups over internet" +msgstr "" + +msgid "tDo full file backups over internet" +msgstr "" + +msgid "tMax backup speed for internet connection" +msgstr "" + +msgid "tTotal max backup speed for internet connection" +msgstr "" + +msgid "tEncrypted transfer" +msgstr "" + +msgid "tCompressed transfer" +msgstr "" + +msgid "file_backup" +msgstr "" + +msgid "hours" +msgstr "" + +msgid "days" +msgstr "" + +msgid "weeks" +msgstr "" + +msgid "months" +msgstr "" + +msgid "year" +msgstr "" + +msgid "hour" +msgstr "" + +msgid "day" +msgstr "" + +msgid "week" +msgstr "" + +msgid "month" +msgstr "" + +msgid "years" +msgstr "" + +msgid "min" +msgstr "" + +msgid "mins" +msgstr "" + +msgid "validate_name_archive_every" +msgstr "" + +msgid "validate_name_archive_for" +msgstr "" + +msgid "forever" +msgstr "" + +msgid "backup_in_progress" +msgstr "" + +msgid "really_remove_clients" +msgstr "" + +msgid "no_client_selected" +msgstr "" + +msgid "queued_backup" +msgstr "" + +msgid "starting_backup_failed" +msgstr "" + +msgid "trying_to_stop_backup" +msgstr "" + +msgid "unarchived_in" +msgstr "" + +msgid "validate_err_notregexp_archive_window" +msgstr "" + +msgid "wait_for_archive_window" +msgstr "" + +msgid "validate_err_notregexp_image_letters" +msgstr "" + +msgid "validate_name_global_local_speed" +msgstr "" + +msgid "validate_name_global_internet_speed" +msgstr "" + +msgid "validate_name_local_speed" +msgstr "" + +msgid "validate_name_internet_speed" +msgstr "" + +msgid "enter_clientname" +msgstr "" + +msgid "internet_client_added" +msgstr "" + +msgid "change_pw" +msgstr "" + +msgid "old_pw_wrong" +msgstr "" + +msgid "tID" +msgstr "" + +msgid "tFile" +msgstr "" + +msgid "tSize" +msgstr "" + +msgid "tIncremental" +msgstr "" + +msgid "tLoading" +msgstr "" + +msgid "tStorage usage of" +msgstr "" + +msgid "tDelete domain" +msgstr "" + +msgid "tChange rights for user" +msgstr "" + +msgid "tDomain" +msgstr "" + +msgid "tTranslation" +msgstr "" + +msgid "tNew domain" +msgstr "" + +msgid "tChange" +msgstr "" + +msgid "tChange password for user" +msgstr "" + +msgid "tSaved settings successfully" +msgstr "" + +msgid "tThis client is going to be removed." +msgstr "" + +msgid "tStop removing client" +msgstr "" + +msgid "tFailed" +msgstr "" + +msgid "tSuccessfull" +msgstr "" + +msgid "tInfo" +msgstr "" + +msgid "tError" +msgstr "" + +msgid "tWarning" +msgstr "" + +msgid "tCurrent version" +msgstr "" + +msgid "tTarget version" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "" + +msgid "tNext archival" +msgstr "" + +msgid "tweeks" +msgstr "" + +msgid "tmonth" +msgstr "" + +msgid "tyears" +msgstr "" + +msgid "tforever" +msgstr "" + +msgid "tFile backup" +msgstr "" + +msgid "tIncremental file backup" +msgstr "" + +msgid "tFull file backup" +msgstr "" + +msgid "tEnable internet mode" +msgstr "" + +msgid "tInternet auth key" +msgstr "" + +msgid "tIncremental image backup" +msgstr "" + +msgid "tFull image backup" +msgstr "" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "" + +msgid "tArchived" +msgstr "" + +msgid "nospc_stalled_text" +msgstr "" + +msgid "nospc_fatal_text" +msgstr "" + +msgid "tNondefault temporary file directory" +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/zh_CN.GB2312.po b/urbackupserver/www/translations/urbackup.webinterface/zh_CN.GB2312.po new file mode 100644 index 00000000..9fed995b --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/zh_CN.GB2312.po @@ -0,0 +1,1128 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:35+0000\n" +"Last-Translator: uroni \n" +"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/urbackup/language/zh_CN.GB2312/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN.GB2312\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "action_1" +msgstr "增量备份文件" + +msgid "action_2" +msgstr "完全备份文件" + +msgid "action_3" +msgstr "增量备份磁盘映像" + +msgid "action_4" +msgstr "完全备份磁盘映像" + +msgid "action_1_d" +msgstr "正在删除文件增量备份" + +msgid "action_2_d" +msgstr "正在删除文件完全备份" + +msgid "action_3_d" +msgstr "正在删除磁盘映像增量备份" + +msgid "action_4_d" +msgstr "正在删除磁盘映像完全备份" + +msgid "nav_item_6" +msgstr "状态" + +msgid "nav_item_5" +msgstr "活动" + +msgid "nav_item_4" +msgstr "备份" + +msgid "nav_item_3" +msgstr "日志" + +msgid "nav_item_2" +msgstr "统计" + +msgid "nav_item_1" +msgstr "设置" + +msgid "unknown" +msgstr "未知" + +msgid "overview" +msgstr "概览" + +msgid "ok" +msgstr "Ok" + +msgid "no_recent_backup" +msgstr "近期没有备份" + +msgid "backup_never" +msgstr "从不" + +msgid "yes" +msgstr "是" + +msgid "no" +msgstr "否" + +msgid "tBackup status" +msgstr "" + +msgid "tComputer name" +msgstr "" + +msgid "tLast seen" +msgstr "" + +msgid "tLast file backup" +msgstr "" + +msgid "tLast image backup" +msgstr "" + +msgid "tFile backup status" +msgstr "" + +msgid "tImage backup status" +msgstr "" + +msgid "tShow details" +msgstr "" + +msgid "tExtra clients" +msgstr "" + +msgid "tNo extra clients" +msgstr "" + +msgid "tActions" +msgstr "" + +msgid "tOnline" +msgstr "" + +msgid "tHostname/IP" +msgstr "" + +msgid "tServer identity" +msgstr "" + +msgid "users" +msgstr "用户" + +msgid "general_settings" +msgstr "常规" + +msgid "admin" +msgstr "管理员" + +msgid "user" +msgstr "用户" + +msgid "username_empty" +msgstr "请输入用户名" + +msgid "password_empty" +msgstr "请输入密码" + +msgid "password_differ" +msgstr "两个密码不同" + +msgid "user_n_exist" +msgstr "用户不存在" + +msgid "password_wrong" +msgstr "密码错误" + +msgid "user_exists" +msgstr "用户已存在" + +msgid "session_timeout" +msgstr "因长时间不操作,此次连接已自动断开。请重新登录。" + +msgid "really_del_user" +msgstr "确定要删除此用户吗?" + +msgid "user_add_done" +msgstr "成功添加新用户。" + +msgid "user_remove_done" +msgstr "成功删除用户。" + +msgid "user_update_right_done" +msgstr "成功变更用户权限。" + +msgid "user_pw_change_ok" +msgstr "成功变更用户密码。" + +msgid "right_all" +msgstr "全权" + +msgid "right_none" +msgstr "无权" + +msgid "filter" +msgstr "过滤器" + +msgid "all" +msgstr "全部" + +msgid "loglevel_0" +msgstr "信息" + +msgid "loglevel_1" +msgstr "警告" + +msgid "loglevel_2" +msgstr "错误" + +msgid "dir_error_text" +msgstr "无法访问UrBackup保存备份的文件夹。在“设置”中修改此文件夹的位置,或赋予UrBackup对此文件夹的访问权限可解决此问题。" + +msgid "tmpdir_error_text" +msgstr "无法访问UrBackup保存临时文件的文件夹。在“设置”中修改此文件夹的位置,或赋予UrBackup对此文件夹的访问权限可解决此问题。" + +msgid "starting" +msgstr "启动中" + +msgid "ident_err" +msgstr "服务器拒绝" + +msgid "enter_hostname" +msgstr "请输入主机名或IP地址" + +msgid "clients" +msgstr "客户端" + +msgid "validate_text_empty" +msgstr "{name}需要一个值" + +msgid "validate_text_notint" +msgstr "{name}需要一个数字值" + +msgid "validate_name_update_freq_incr" +msgstr "增量备份文件的时间间隔" + +msgid "validate_name_update_freq_full" +msgstr "完全备份文件的时间间隔" + +msgid "validate_name_update_freq_image_full" +msgstr "增量备份磁盘映像的时间间隔" + +msgid "validate_name_update_freq_image_incr" +msgstr "完全备份磁盘映像的时间间隔" + +msgid "validate_name_max_file_incr" +msgstr "文件增量备份数上限" + +msgid "validate_name_min_file_incr" +msgstr "文件增量备份数下限" + +msgid "validate_name_max_file_full" +msgstr "文件完全备份数上限" + +msgid "validate_name_min_file_full" +msgstr "文件完全备份数下限" + +msgid "validate_name_min_image_incr" +msgstr "磁盘映像增量备份数下限" + +msgid "validate_name_max_image_incr" +msgstr "磁盘映像增量备份数上限" + +msgid "validate_name_min_image_full" +msgstr "磁盘映像完全备份数下限" + +msgid "validate_name_max_image_full" +msgstr "磁盘映像完全备份数上限" + +msgid "validate_name_startup_backup_delay" +msgstr "系统启动后延迟" + +msgid "validate_err_notregexp_backup_window" +msgstr "备份窗口格式错误" + +msgid "validate_name_max_active_clients" +msgstr "近期活动客户端峰值" + +msgid "validate_name_max_sim_backups" +msgstr "同时备份峰值" + +msgid "validate_name_backupfolder" +msgstr "保存备份的路径" + +msgid "validate_name_computername" +msgstr "计算机名" + +msgid "too_many_clients_err" +msgstr "客户端过多" + +msgid "really_remove_client" +msgstr "确定删除此客户端吗?文件和磁盘映像备份将被全部删除!" + +msgid "computername" +msgstr "计算机名" + +msgid "storage_usage_pie_graph_title" +msgstr "存储空间使用情况" + +msgid "storage_usage_pie_graph_colname1" +msgstr "计算机名" + +msgid "storage_usage_pie_graph_colname2" +msgstr "存储空间使用情况" + +msgid "storage_usage_bar_graph_title" +msgstr "存储空间使用情况" + +msgid "storage_usage_bar_graph_colname1" +msgstr "日期" + +msgid "storage_usage_bar_graph_colname2" +msgstr "存储空间使用情况" + +msgid "tImages" +msgstr "" + +msgid "tFiles" +msgstr "" + +msgid "tSum" +msgstr "" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "清理窗口格式错误" + +msgid "mail_settings" +msgstr "邮件" + +msgid "upgrade_error_text" +msgstr "UrBackup正在升级内部数据库并需要一些时间。升级期间服务器无法访问并暂停全部备份任务。" + +msgid "tActivities" +msgstr "" + +msgid "tAction" +msgstr "" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "" + +msgid "tLast activities" +msgstr "" + +msgid "tStarting time" +msgstr "" + +msgid "tRequired time" +msgstr "" + +msgid "tUsed Storage" +msgstr "" + +msgid "tClients" +msgstr "" + +msgid "tLogs" +msgstr "" + +msgid "tReports" +msgstr "" + +msgid "tSend reports to" +msgstr "" + +msgid "tSend" +msgstr "" + +msgid "tBackups with a log message of at least log level" +msgstr "" + +msgid "tBackup time" +msgstr "" + +msgid "tErrors" +msgstr "" + +msgid "tWarnings" +msgstr "" + +msgid "tStorage allocation" +msgstr "" + +msgid "tStorage usage" +msgstr "" + +msgid "tAll" +msgstr "" + +msgid "tBackup storage path" +msgstr "" + +msgid "tDo not do image backups" +msgstr "" + +msgid "tDo not do file backups" +msgstr "" + +msgid "tAutomatically shut down server" +msgstr "" + +msgid "tAutoupdate clients" +msgstr "" + +msgid "tMax number of simultaneous backups" +msgstr "" + +msgid "tMax number of recently active clients" +msgstr "" + +msgid "tCleanup time window" +msgstr "" + +msgid "tAutomatically backup UrBackup database" +msgstr "" + +msgid "tInterval for incremental file backups" +msgstr "" + +msgid "tInterval for full file backups" +msgstr "" + +msgid "tInterval for incremental image backups" +msgstr "" + +msgid "tInterval for full image backups" +msgstr "" + +msgid "tMaximal number of incremental file backups" +msgstr "" + +msgid "tMinimal number of incremental file backups" +msgstr "" + +msgid "tMaximal number of full file backups" +msgstr "" + +msgid "tMinimal number of full file backups" +msgstr "" + +msgid "tMaximal number of incremental image backups" +msgstr "" + +msgid "tMinimal number of incremental image backups" +msgstr "" + +msgid "tMaximal number of full image backups" +msgstr "" + +msgid "tMinimal number of full image backups" +msgstr "" + +msgid "tDelay after system startup" +msgstr "" + +msgid "tBackup window" +msgstr "" + +msgid "tExcluded files (with wildcards)" +msgstr "" + +msgid "tIncluded files (with wildcards)" +msgstr "" + +msgid "tDefault directories to backup" +msgstr "" + +msgid "tVolumes to backup" +msgstr "" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "" + +msgid "tAllow client-side starting of file backups" +msgstr "" + +msgid "tAllow client-side starting of image backups" +msgstr "" + +msgid "tAllow client-side viewing of backup logs" +msgstr "" + +msgid "tAllow client-side pausing of backups" +msgstr "" + +msgid "tAllow client-side changing of settings" +msgstr "" + +msgid "tdays" +msgstr "" + +msgid "thours" +msgstr "" + +msgid "tmin" +msgstr "" + +msgid "tMail server name" +msgstr "" + +msgid "tMail server port" +msgstr "" + +msgid "tMail server username (empty for none)" +msgstr "" + +msgid "tMail server password" +msgstr "" + +msgid "tSender E-Mail Address" +msgstr "" + +msgid "tSend mails only with SSL/TLS" +msgstr "" + +msgid "tCheck SSL/TLS certificate" +msgstr "" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "" + +msgid "tTest Mail sent successfully" +msgstr "" + +msgid "tSending test mail failed. Error:" +msgstr "" + +msgid "tFilter" +msgstr "" + +msgid "tBack" +msgstr "" + +msgid "tAdd" +msgstr "" + +msgid "tRemove" +msgstr "" + +msgid "tSave" +msgstr "" + +msgid "tLevel" +msgstr "" + +msgid "tTime" +msgstr "" + +msgid "tMessage" +msgstr "" + +msgid "tLog" +msgstr "" + +msgid "tUsername" +msgstr "" + +msgid "tRights" +msgstr "" + +msgid "tNo Users" +msgstr "" + +msgid "tCreate user" +msgstr "" + +msgid "tPassword" +msgstr "" + +msgid "tRepeat password" +msgstr "" + +msgid "tRights for" +msgstr "" + +msgid "tAbort" +msgstr "" + +msgid "tCreate" +msgstr "" + +msgid "tChange rights" +msgstr "" + +msgid "tChange password" +msgstr "" + +msgid "tLogin" +msgstr "" + +msgid "tInfos" +msgstr "" + +msgid "tSeparate settings for this client" +msgstr "" + +msgid "tServer" +msgstr "" + +msgid "tFile backups" +msgstr "" + +msgid "tImage backups" +msgstr "" + +msgid "tPermissions" +msgstr "" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "" + +msgid "tMax backup speed for local network" +msgstr "" + +msgid "tNo activities" +msgstr "" + +msgid "tSelect all" +msgstr "" + +msgid "tSelect none" +msgstr "" + +msgid "tRemove selected" +msgstr "" + +msgid "tStart for selected" +msgstr "" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "" + +msgid "tArchive every" +msgstr "" + +msgid "tArchive for" +msgstr "" + +msgid "tArchive window" +msgstr "" + +msgid "tBackup type" +msgstr "" + +msgid "tEnable internet mode (requires server restart)" +msgstr "" + +msgid "tInternet server name/IP" +msgstr "" + +msgid "tInternet server port" +msgstr "" + +msgid "tDo image backups over internet" +msgstr "" + +msgid "tDo full file backups over internet" +msgstr "" + +msgid "tMax backup speed for internet connection" +msgstr "" + +msgid "tTotal max backup speed for internet connection" +msgstr "" + +msgid "tEncrypted transfer" +msgstr "" + +msgid "tCompressed transfer" +msgstr "" + +msgid "file_backup" +msgstr "文件备份" + +msgid "hours" +msgstr "小时" + +msgid "days" +msgstr "天" + +msgid "weeks" +msgstr "星期" + +msgid "months" +msgstr "月" + +msgid "year" +msgstr "年" + +msgid "hour" +msgstr "小时" + +msgid "day" +msgstr "日" + +msgid "week" +msgstr "星期" + +msgid "month" +msgstr "月" + +msgid "years" +msgstr "年" + +msgid "min" +msgstr "分" + +msgid "mins" +msgstr "分" + +msgid "validate_name_archive_every" +msgstr "归档周期" + +msgid "validate_name_archive_for" +msgstr "归档" + +msgid "forever" +msgstr "长期" + +msgid "backup_in_progress" +msgstr "备份进行中……" + +msgid "really_remove_clients" +msgstr "确定删除此客户端吗?文件和磁盘映像备份将被全部删除!" + +msgid "no_client_selected" +msgstr "未选择客户端" + +msgid "queued_backup" +msgstr "在队列中等待的备份任务" + +msgid "starting_backup_failed" +msgstr "备份任务启动失败" + +msgid "trying_to_stop_backup" +msgstr "正在终止备份任务,可能需要一些时间" + +msgid "unarchived_in" +msgstr "将终止归档于" + +msgid "validate_err_notregexp_archive_window" +msgstr "归档窗口格式错误" + +msgid "wait_for_archive_window" +msgstr "正在等待窗口或下次运行" + +msgid "validate_err_notregexp_image_letters" +msgstr "磁盘映像字母格式错误" + +msgid "validate_name_global_local_speed" +msgstr "通过局域网备份的总速率上限" + +msgid "validate_name_global_internet_speed" +msgstr "通过互联网备份的总速率上限" + +msgid "validate_name_local_speed" +msgstr "通过局域网备份的速率上限" + +msgid "validate_name_internet_speed" +msgstr "通过互联网备份的速率上限" + +msgid "enter_clientname" +msgstr "请输入客户端名称" + +msgid "internet_client_added" +msgstr "新客户端已添加,身份验证密钥或密码请参见“设置”。" + +msgid "change_pw" +msgstr "更改密码" + +msgid "old_pw_wrong" +msgstr "旧密码错误" + +msgid "tID" +msgstr "" + +msgid "tFile" +msgstr "" + +msgid "tSize" +msgstr "" + +msgid "tIncremental" +msgstr "" + +msgid "tLoading" +msgstr "" + +msgid "tStorage usage of" +msgstr "" + +msgid "tDelete domain" +msgstr "" + +msgid "tChange rights for user" +msgstr "" + +msgid "tDomain" +msgstr "" + +msgid "tTranslation" +msgstr "" + +msgid "tNew domain" +msgstr "" + +msgid "tChange" +msgstr "" + +msgid "tChange password for user" +msgstr "" + +msgid "tSaved settings successfully" +msgstr "" + +msgid "tThis client is going to be removed." +msgstr "" + +msgid "tStop removing client" +msgstr "" + +msgid "tFailed" +msgstr "" + +msgid "tSuccessfull" +msgstr "" + +msgid "tInfo" +msgstr "" + +msgid "tError" +msgstr "" + +msgid "tWarning" +msgstr "" + +msgid "tCurrent version" +msgstr "" + +msgid "tTarget version" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "" + +msgid "tNext archival" +msgstr "" + +msgid "tweeks" +msgstr "" + +msgid "tmonth" +msgstr "" + +msgid "tyears" +msgstr "" + +msgid "tforever" +msgstr "" + +msgid "tFile backup" +msgstr "" + +msgid "tIncremental file backup" +msgstr "" + +msgid "tFull file backup" +msgstr "" + +msgid "tEnable internet mode" +msgstr "" + +msgid "tInternet auth key" +msgstr "" + +msgid "tIncremental image backup" +msgstr "" + +msgid "tFull image backup" +msgstr "" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "" + +msgid "tArchived" +msgstr "" + +msgid "nospc_stalled_text" +msgstr "备份文件夹空间不足,UrBackup正根据设置值删除旧的磁盘映像和文件备份数据。此期间的备份性能降低,备份数据被隔离。" + +msgid "nospc_fatal_text" +msgstr "备份文件夹空间不足,UrBackup已根据设置值删除了旧的磁盘映像和文件备份数据,但当前设置值已不允许继续删除。通过更改“设置”保存更少的备份数或增加备份存储空间后UrBackup方可继续执行备份任务。" + +msgid "tNondefault temporary file directory" +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/translations/urbackup.webinterface/zh_TW.Big5.po b/urbackupserver/www/translations/urbackup.webinterface/zh_TW.Big5.po new file mode 100644 index 00000000..21c3f2db --- /dev/null +++ b/urbackupserver/www/translations/urbackup.webinterface/zh_TW.Big5.po @@ -0,0 +1,1128 @@ +# UrBackup translation +# Copyright (C) 2011-2014 See translators +# This file is distributed under the same license as the UrBackup package. +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: UrBackup\n" +"PO-Revision-Date: 2014-04-23 20:35+0000\n" +"Last-Translator: uroni \n" +"Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/projects/p/urbackup/language/zh_TW.Big5/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW.Big5\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "action_1" +msgstr "增量備份檔案" + +msgid "action_2" +msgstr "完整備份檔案" + +msgid "action_3" +msgstr "增量備份磁碟鏡像" + +msgid "action_4" +msgstr "完整備份磁碟鏡像" + +msgid "action_1_d" +msgstr "正在移除檔案增量備份" + +msgid "action_2_d" +msgstr "正在移除檔案完整備份" + +msgid "action_3_d" +msgstr "正在移除磁碟鏡像增量備份" + +msgid "action_4_d" +msgstr "正在移除磁碟鏡像完整備份" + +msgid "nav_item_6" +msgstr "狀態" + +msgid "nav_item_5" +msgstr "活動" + +msgid "nav_item_4" +msgstr "備份" + +msgid "nav_item_3" +msgstr "日志" + +msgid "nav_item_2" +msgstr "統計" + +msgid "nav_item_1" +msgstr "設定" + +msgid "unknown" +msgstr "未知" + +msgid "overview" +msgstr "概覽" + +msgid "ok" +msgstr "Ok" + +msgid "no_recent_backup" +msgstr "近期沒有備份" + +msgid "backup_never" +msgstr "從不" + +msgid "yes" +msgstr "是" + +msgid "no" +msgstr "否" + +msgid "tBackup status" +msgstr "" + +msgid "tComputer name" +msgstr "" + +msgid "tLast seen" +msgstr "" + +msgid "tLast file backup" +msgstr "" + +msgid "tLast image backup" +msgstr "" + +msgid "tFile backup status" +msgstr "" + +msgid "tImage backup status" +msgstr "" + +msgid "tShow details" +msgstr "" + +msgid "tExtra clients" +msgstr "" + +msgid "tNo extra clients" +msgstr "" + +msgid "tActions" +msgstr "" + +msgid "tOnline" +msgstr "" + +msgid "tHostname/IP" +msgstr "" + +msgid "tServer identity" +msgstr "" + +msgid "users" +msgstr "用戶" + +msgid "general_settings" +msgstr "一般" + +msgid "admin" +msgstr "管理員" + +msgid "user" +msgstr "用戶" + +msgid "username_empty" +msgstr "請鍵入用戶名" + +msgid "password_empty" +msgstr "請鍵入口令" + +msgid "password_differ" +msgstr "兩個口令不同" + +msgid "user_n_exist" +msgstr "用戶不存在" + +msgid "password_wrong" +msgstr "口令錯誤" + +msgid "user_exists" +msgstr "用戶已存在" + +msgid "session_timeout" +msgstr "因長時間不操作,此次連接已自動斷開。請重新登錄。" + +msgid "really_del_user" +msgstr "確定要移除此用戶嗎?" + +msgid "user_add_done" +msgstr "成功添加新用戶。" + +msgid "user_remove_done" +msgstr "成功移除用戶。" + +msgid "user_update_right_done" +msgstr "成功變更用戶權限。" + +msgid "user_pw_change_ok" +msgstr "成功變更用戶口令。" + +msgid "right_all" +msgstr "全權" + +msgid "right_none" +msgstr "無權" + +msgid "filter" +msgstr "過濾器" + +msgid "all" +msgstr "全部" + +msgid "loglevel_0" +msgstr "情報" + +msgid "loglevel_1" +msgstr "警告" + +msgid "loglevel_2" +msgstr "錯誤" + +msgid "dir_error_text" +msgstr "無法訪問UrBackup保存備份的資料夾。在“設定”中修改此資料夾的位置,或賦予UrBackup對此資料夾的訪問權限可解決此問題。" + +msgid "tmpdir_error_text" +msgstr "無法訪問UrBackup保存臨時檔案的資料夾。在“設定”中修改此資料夾的位置,或賦予UrBackup對此資料夾的訪問權限可解決此問題。" + +msgid "starting" +msgstr "啓動中" + +msgid "ident_err" +msgstr "伺服器拒絕" + +msgid "enter_hostname" +msgstr "請鍵入主機名或IP地址" + +msgid "clients" +msgstr "用戶端" + +msgid "validate_text_empty" +msgstr "{name}需要一個值" + +msgid "validate_text_notint" +msgstr "{name}需要一個數字值" + +msgid "validate_name_update_freq_incr" +msgstr "增量備份檔案的時間間隔" + +msgid "validate_name_update_freq_full" +msgstr "完整備份檔案的時間間隔" + +msgid "validate_name_update_freq_image_full" +msgstr "增量備份磁碟鏡像的時間間隔" + +msgid "validate_name_update_freq_image_incr" +msgstr "完整備份磁碟鏡像的時間間隔" + +msgid "validate_name_max_file_incr" +msgstr "檔案增量備分數之上限" + +msgid "validate_name_min_file_incr" +msgstr "檔案增量備分數之下限" + +msgid "validate_name_max_file_full" +msgstr "檔案完整備分數之上限" + +msgid "validate_name_min_file_full" +msgstr "檔案完整備分數之下限" + +msgid "validate_name_min_image_incr" +msgstr "磁碟鏡像增量備分數之下限" + +msgid "validate_name_max_image_incr" +msgstr "磁碟鏡像增量備分數之上限" + +msgid "validate_name_min_image_full" +msgstr "磁碟鏡像完整備分數之下限" + +msgid "validate_name_max_image_full" +msgstr "磁碟鏡像完整備分數之上限" + +msgid "validate_name_startup_backup_delay" +msgstr "系統啓動後延遲" + +msgid "validate_err_notregexp_backup_window" +msgstr "備份視窗格式錯誤" + +msgid "validate_name_max_active_clients" +msgstr "近期活動用戶端峰值" + +msgid "validate_name_max_sim_backups" +msgstr "同時備份峰值" + +msgid "validate_name_backupfolder" +msgstr "保存備份的路徑" + +msgid "validate_name_computername" +msgstr "計算機名" + +msgid "too_many_clients_err" +msgstr "用戶端過多" + +msgid "really_remove_client" +msgstr "確定移除此用戶端嗎?檔案和磁碟鏡像備份將被全部移除!" + +msgid "computername" +msgstr "計算機名" + +msgid "storage_usage_pie_graph_title" +msgstr "儲存空間使用情況" + +msgid "storage_usage_pie_graph_colname1" +msgstr "計算機名" + +msgid "storage_usage_pie_graph_colname2" +msgstr "儲存空間使用情況" + +msgid "storage_usage_bar_graph_title" +msgstr "儲存空間使用情況" + +msgid "storage_usage_bar_graph_colname1" +msgstr "日期" + +msgid "storage_usage_bar_graph_colname2" +msgstr "儲存空間使用情況" + +msgid "tImages" +msgstr "" + +msgid "tFiles" +msgstr "" + +msgid "tSum" +msgstr "" + +msgid "validate_err_notregexp_cleanup_window" +msgstr "清理視窗格式錯誤" + +msgid "mail_settings" +msgstr "郵件" + +msgid "upgrade_error_text" +msgstr "UrBackup正在升級內部數據庫並需要一些時間。升級期間伺服器無法訪問並暫停全部備份任務。" + +msgid "tActivities" +msgstr "" + +msgid "tAction" +msgstr "" + +msgid "tProgress" +msgstr "" + +msgid "tFiles in queue" +msgstr "" + +msgid "tLast activities" +msgstr "" + +msgid "tStarting time" +msgstr "" + +msgid "tRequired time" +msgstr "" + +msgid "tUsed Storage" +msgstr "" + +msgid "tClients" +msgstr "" + +msgid "tLogs" +msgstr "" + +msgid "tReports" +msgstr "" + +msgid "tSend reports to" +msgstr "" + +msgid "tSend" +msgstr "" + +msgid "tBackups with a log message of at least log level" +msgstr "" + +msgid "tBackup time" +msgstr "" + +msgid "tErrors" +msgstr "" + +msgid "tWarnings" +msgstr "" + +msgid "tStorage allocation" +msgstr "" + +msgid "tStorage usage" +msgstr "" + +msgid "tAll" +msgstr "" + +msgid "tBackup storage path" +msgstr "" + +msgid "tDo not do image backups" +msgstr "" + +msgid "tDo not do file backups" +msgstr "" + +msgid "tAutomatically shut down server" +msgstr "" + +msgid "tAutoupdate clients" +msgstr "" + +msgid "tMax number of simultaneous backups" +msgstr "" + +msgid "tMax number of recently active clients" +msgstr "" + +msgid "tCleanup time window" +msgstr "" + +msgid "tAutomatically backup UrBackup database" +msgstr "" + +msgid "tInterval for incremental file backups" +msgstr "" + +msgid "tInterval for full file backups" +msgstr "" + +msgid "tInterval for incremental image backups" +msgstr "" + +msgid "tInterval for full image backups" +msgstr "" + +msgid "tMaximal number of incremental file backups" +msgstr "" + +msgid "tMinimal number of incremental file backups" +msgstr "" + +msgid "tMaximal number of full file backups" +msgstr "" + +msgid "tMinimal number of full file backups" +msgstr "" + +msgid "tMaximal number of incremental image backups" +msgstr "" + +msgid "tMinimal number of incremental image backups" +msgstr "" + +msgid "tMaximal number of full image backups" +msgstr "" + +msgid "tMinimal number of full image backups" +msgstr "" + +msgid "tDelay after system startup" +msgstr "" + +msgid "tBackup window" +msgstr "" + +msgid "tExcluded files (with wildcards)" +msgstr "" + +msgid "tIncluded files (with wildcards)" +msgstr "" + +msgid "tDefault directories to backup" +msgstr "" + +msgid "tVolumes to backup" +msgstr "" + +msgid "tAllow client-side changing of the directories to backup" +msgstr "" + +msgid "tAllow client-side starting of file backups" +msgstr "" + +msgid "tAllow client-side starting of image backups" +msgstr "" + +msgid "tAllow client-side viewing of backup logs" +msgstr "" + +msgid "tAllow client-side pausing of backups" +msgstr "" + +msgid "tAllow client-side changing of settings" +msgstr "" + +msgid "tdays" +msgstr "" + +msgid "thours" +msgstr "" + +msgid "tmin" +msgstr "" + +msgid "tMail server name" +msgstr "" + +msgid "tMail server port" +msgstr "" + +msgid "tMail server username (empty for none)" +msgstr "" + +msgid "tMail server password" +msgstr "" + +msgid "tSender E-Mail Address" +msgstr "" + +msgid "tSend mails only with SSL/TLS" +msgstr "" + +msgid "tCheck SSL/TLS certificate" +msgstr "" + +msgid "" +"tSend test mail to this email address after saving the settings (leave empty" +" to not send a test mail)" +msgstr "" + +msgid "tTest Mail sent successfully" +msgstr "" + +msgid "tSending test mail failed. Error:" +msgstr "" + +msgid "tFilter" +msgstr "" + +msgid "tBack" +msgstr "" + +msgid "tAdd" +msgstr "" + +msgid "tRemove" +msgstr "" + +msgid "tSave" +msgstr "" + +msgid "tLevel" +msgstr "" + +msgid "tTime" +msgstr "" + +msgid "tMessage" +msgstr "" + +msgid "tLog" +msgstr "" + +msgid "tUsername" +msgstr "" + +msgid "tRights" +msgstr "" + +msgid "tNo Users" +msgstr "" + +msgid "tCreate user" +msgstr "" + +msgid "tPassword" +msgstr "" + +msgid "tRepeat password" +msgstr "" + +msgid "tRights for" +msgstr "" + +msgid "tAbort" +msgstr "" + +msgid "tCreate" +msgstr "" + +msgid "tChange rights" +msgstr "" + +msgid "tChange password" +msgstr "" + +msgid "tLogin" +msgstr "" + +msgid "tInfos" +msgstr "" + +msgid "tSeparate settings for this client" +msgstr "" + +msgid "tServer" +msgstr "" + +msgid "tFile backups" +msgstr "" + +msgid "tImage backups" +msgstr "" + +msgid "tPermissions" +msgstr "" + +msgid "tClient" +msgstr "" + +msgid "tArchival" +msgstr "" + +msgid "tInternet" +msgstr "" + +msgid "tPerform autoupdates silently" +msgstr "" + +msgid "tMax backup speed for local network" +msgstr "" + +msgid "tNo activities" +msgstr "" + +msgid "tSelect all" +msgstr "" + +msgid "tSelect none" +msgstr "" + +msgid "tRemove selected" +msgstr "" + +msgid "tStart for selected" +msgstr "" + +msgid "tInternet clients" +msgstr "" + +msgid "tAdd additional internet clients" +msgstr "" + +msgid "tClient name" +msgstr "" + +msgid "tNo entries for this filter" +msgstr "" + +msgid "tNo data" +msgstr "" + +msgid "tTotal max backup speed for local network" +msgstr "" + +msgid "tArchive every" +msgstr "" + +msgid "tArchive for" +msgstr "" + +msgid "tArchive window" +msgstr "" + +msgid "tBackup type" +msgstr "" + +msgid "tEnable internet mode (requires server restart)" +msgstr "" + +msgid "tInternet server name/IP" +msgstr "" + +msgid "tInternet server port" +msgstr "" + +msgid "tDo image backups over internet" +msgstr "" + +msgid "tDo full file backups over internet" +msgstr "" + +msgid "tMax backup speed for internet connection" +msgstr "" + +msgid "tTotal max backup speed for internet connection" +msgstr "" + +msgid "tEncrypted transfer" +msgstr "" + +msgid "tCompressed transfer" +msgstr "" + +msgid "file_backup" +msgstr "檔案備份" + +msgid "hours" +msgstr "小時" + +msgid "days" +msgstr "天" + +msgid "weeks" +msgstr "星期" + +msgid "months" +msgstr "月" + +msgid "year" +msgstr "年" + +msgid "hour" +msgstr "小時" + +msgid "day" +msgstr "日" + +msgid "week" +msgstr "星期" + +msgid "month" +msgstr "月" + +msgid "years" +msgstr "年" + +msgid "min" +msgstr "分" + +msgid "mins" +msgstr "分" + +msgid "validate_name_archive_every" +msgstr "歸檔周期" + +msgid "validate_name_archive_for" +msgstr "歸檔" + +msgid "forever" +msgstr "長期" + +msgid "backup_in_progress" +msgstr "備份進行中……" + +msgid "really_remove_clients" +msgstr "確定移除此用戶端嗎?檔案和磁碟鏡像備份將被全部移除!" + +msgid "no_client_selected" +msgstr "未選擇用戶端" + +msgid "queued_backup" +msgstr "在佇列中等待的備份任務" + +msgid "starting_backup_failed" +msgstr "備份任務啓動失敗" + +msgid "trying_to_stop_backup" +msgstr "正在終止備份任務,可能需要一些時間" + +msgid "unarchived_in" +msgstr "將終止歸檔于" + +msgid "validate_err_notregexp_archive_window" +msgstr "歸檔視窗格式錯誤" + +msgid "wait_for_archive_window" +msgstr "正在等待視窗或下次執行" + +msgid "validate_err_notregexp_image_letters" +msgstr "磁碟鏡像字母格式錯誤" + +msgid "validate_name_global_local_speed" +msgstr "通過本地網路備份的總速率上限" + +msgid "validate_name_global_internet_speed" +msgstr "通過互聯網備份的總速率上限" + +msgid "validate_name_local_speed" +msgstr "通過本地網路備份的速率上限" + +msgid "validate_name_internet_speed" +msgstr "通過互聯網備份的速率上限" + +msgid "enter_clientname" +msgstr "請鍵入用戶端名稱" + +msgid "internet_client_added" +msgstr "新用戶端已添加,身份驗證密鑰或口令請參見“設定”。" + +msgid "change_pw" +msgstr "更改口令" + +msgid "old_pw_wrong" +msgstr "舊口令錯誤" + +msgid "tID" +msgstr "" + +msgid "tFile" +msgstr "" + +msgid "tSize" +msgstr "" + +msgid "tIncremental" +msgstr "" + +msgid "tLoading" +msgstr "" + +msgid "tStorage usage of" +msgstr "" + +msgid "tDelete domain" +msgstr "" + +msgid "tChange rights for user" +msgstr "" + +msgid "tDomain" +msgstr "" + +msgid "tTranslation" +msgstr "" + +msgid "tNew domain" +msgstr "" + +msgid "tChange" +msgstr "" + +msgid "tChange password for user" +msgstr "" + +msgid "tSaved settings successfully" +msgstr "" + +msgid "tThis client is going to be removed." +msgstr "" + +msgid "tStop removing client" +msgstr "" + +msgid "tFailed" +msgstr "" + +msgid "tSuccessfull" +msgstr "" + +msgid "tInfo" +msgstr "" + +msgid "tError" +msgstr "" + +msgid "tWarning" +msgstr "" + +msgid "tCurrent version" +msgstr "" + +msgid "tTarget version" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings." +msgstr "" + +msgid "tNext archival" +msgstr "" + +msgid "tweeks" +msgstr "" + +msgid "tmonth" +msgstr "" + +msgid "tyears" +msgstr "" + +msgid "tforever" +msgstr "" + +msgid "tFile backup" +msgstr "" + +msgid "tIncremental file backup" +msgstr "" + +msgid "tFull file backup" +msgstr "" + +msgid "tEnable internet mode" +msgstr "" + +msgid "tInternet auth key" +msgstr "" + +msgid "tIncremental image backup" +msgstr "" + +msgid "tFull image backup" +msgstr "" + +msgid "" +"tClients are removed during the cleanup time window, if they are offline." +msgstr "" + +msgid "tArchived" +msgstr "" + +msgid "nospc_stalled_text" +msgstr "備份資料夾空間不足,UrBackup正根據設定值移除舊的磁碟鏡像和檔案備份數據。此期間的備份性能降低,備份數據被隔離。" + +msgid "nospc_fatal_text" +msgstr "備份資料夾空間不足,UrBackup已根據設定值移除了舊的磁碟鏡像和檔案備份數據,但當前設定值已不允許繼續移除。通過更改“設定”保存更少的備份數或增加備份儲存空間後UrBackup方可繼續執行備份任務。" + +msgid "tNondefault temporary file directory" +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window." +msgstr "" + +msgid "about_urbackup" +msgstr "" + +msgid "loading" +msgstr "" + +msgid "authentication_err" +msgstr "" + +msgid "tInverval for incremental image backups" +msgstr "" + +msgid "action_5" +msgstr "" + +msgid "action_6" +msgstr "" + +msgid "really_recalculate" +msgstr "" + +msgid "database_error_text" +msgstr "" + +msgid "creating_filescache_text" +msgstr "" + +msgid "tDownload folder as ZIP" +msgstr "" + +msgid "tOld password" +msgstr "" + +msgid "tNew password" +msgstr "" + +msgid "tRepeat new password" +msgstr "" + +msgid "tChanging password failed:" +msgstr "" + +msgid "tChanged password successfully" +msgstr "" + +msgid "tNumber of file entries processed" +msgstr "" + +msgid "tUrBackup live log" +msgstr "" + +msgid "tLive Log" +msgstr "" + +msgid "tShow" +msgstr "" + +msgid "tThere is a new version of UrBackup server available" +msgstr "" + +msgid "tIndexing..." +msgstr "" + +msgid "tDelete" +msgstr "" + +msgid "tDownload client from update server" +msgstr "" + +msgid "tGlobal soft filesystem quota" +msgstr "" + +msgid "tDisable" +msgstr "" + +msgid "tCompress image backups" +msgstr "" + +msgid "tAllow client-side starting of full file backups" +msgstr "" + +msgid "tAllow client-side starting of incremental file backups" +msgstr "" + +msgid "tAllow client-side starting of full image backups" +msgstr "" + +msgid "tAllow client-side starting of incremental image backups" +msgstr "" + +msgid "tBackup window for incremental file backups" +msgstr "" + +msgid "tBackup window for full file backups" +msgstr "" + +msgid "tBackup window for incremental image backups" +msgstr "" + +msgid "tBackup window for full image backups" +msgstr "" + +msgid "tSoft client quota" +msgstr "" + +msgid "tCalculate file-hashes on the client" +msgstr "" + +msgid "tAdvanced" +msgstr "" + +msgid "tTemporary files as file backup buffer" +msgstr "" + +msgid "tTemporary files as image backup buffer" +msgstr "" + +msgid "tLocal full file backup transfer mode" +msgstr "" + +msgid "tRaw" +msgstr "" + +msgid "tHashed" +msgstr "" + +msgid "tInternet full file backup transfer mode" +msgstr "" + +msgid "tLocal incremental file backup transfer mode" +msgstr "" + +msgid "tBlock differences - hashed" +msgstr "" + +msgid "tInternet incremental file backup transfer mode" +msgstr "" + +msgid "tLocal image backup transfer mode" +msgstr "" + +msgid "tInternet image backup transfer mode" +msgstr "" + +msgid "tFile hash collection amount" +msgstr "" + +msgid "tFile hash collection timeout" +msgstr "" + +msgid "tFile hash collection database cachesize" +msgstr "" + +msgid "tMB" +msgstr "" + +msgid "tUpdate stats database cachesize" +msgstr "" + +msgid "tCache database type for file entries" +msgstr "" + +msgid "tNone" +msgstr "" + +msgid "tCache database size for file entries" +msgstr "" + +msgid "tSuspend index limit" +msgstr "" + +msgid "tUse symlinks during incremental file backups" +msgstr "" + +msgid "tEnd-to-end verification of all file backups" +msgstr "" + +msgid "tServer admin mail address" +msgstr "" + +msgid "" +"tWarning: The settings configured on the client will overwrite the settings " +"configured here. If you want to change this behaviour do not allow the " +"client to change settings. " +msgstr "" + +msgid "tClient download" +msgstr "" + +msgid "tDownload" +msgstr "" + +msgid "tStatus" +msgstr "" + +msgid "tIP" +msgstr "" + +msgid "tClient version" +msgstr "" + +msgid "tOperating System" +msgstr "" + +msgid "tShow all clients" +msgstr "" + +msgid "tThis client is going to be removed. " +msgstr "" + +msgid "tClients are removed during the cleanup in the cleanup time window. " +msgstr "" + +msgid "tRecalculate statistics" +msgstr "" diff --git a/urbackupserver/www/update_translation.bat b/urbackupserver/www/update_translation.bat new file mode 100644 index 00000000..c0de772b --- /dev/null +++ b/urbackupserver/www/update_translation.bat @@ -0,0 +1,3 @@ +tx pull -a +tx pull -l en +python translation_helper.py \ No newline at end of file