From 5277f70d577016a9a8f228b4d65a3915dbd334f7 Mon Sep 17 00:00:00 2001 From: HelioGuilherme66 Date: Wed, 14 Aug 2024 01:44:53 +0100 Subject: [PATCH 1/4] Use a local copy of RF 7.0.1 languages.py --- src/robotide/lib/compat/parsing/__init__.py | 1 + src/robotide/lib/compat/parsing/language.py | 26 +- src/robotide/lib/compat/parsing/languages.py | 1302 +++++++++++++++++ src/robotide/lib/robot/parsing/model.py | 5 +- .../localization/ja_JP/LC_MESSAGES/RIDE.mo | Bin 48420 -> 51491 bytes .../localization/ja_JP/LC_MESSAGES/RIDE.po | 15 +- .../localization/ro_RO/LC_MESSAGES/RIDE.mo | Bin 54815 -> 57963 bytes .../localization/ro_RO/LC_MESSAGES/RIDE.po | 13 +- .../localization/ru_RU/LC_MESSAGES/RIDE.mo | Bin 66596 -> 69731 bytes .../localization/ru_RU/LC_MESSAGES/RIDE.po | 17 +- .../localization/uk_UA/LC_MESSAGES/RIDE.mo | Bin 58122 -> 61164 bytes .../localization/uk_UA/LC_MESSAGES/RIDE.po | 9 +- src/robotide/ui/filedialogs.py | 11 +- src/robotide/version.py | 2 +- 14 files changed, 1362 insertions(+), 39 deletions(-) create mode 100644 src/robotide/lib/compat/parsing/languages.py diff --git a/src/robotide/lib/compat/parsing/__init__.py b/src/robotide/lib/compat/parsing/__init__.py index e8d04110e..20ab11f7b 100644 --- a/src/robotide/lib/compat/parsing/__init__.py +++ b/src/robotide/lib/compat/parsing/__init__.py @@ -14,3 +14,4 @@ from .validator import ErrorReporter from .language import get_english_label, get_localized_setting +from .languages import * diff --git a/src/robotide/lib/compat/parsing/language.py b/src/robotide/lib/compat/parsing/language.py index 567fc5c36..fba58db80 100644 --- a/src/robotide/lib/compat/parsing/language.py +++ b/src/robotide/lib/compat/parsing/language.py @@ -19,7 +19,11 @@ except ImportError as e: sys.stderr.write(f"Trying to import robot's languages module returned error: {repr(e)}\n") sys.stderr.write("You need to have Robot Framework v6.0 or newer to use languages in test suites.\n") - Language = None + try: + # Using local copy of https://github.com/robotframework/robotframework/blob/v7.0.1/src/robot/conf/languages.py + from .languages import Language + except ImportError: + Language = None from robot.errors import DataError from robotide.lib.robot.utils import Utf8Reader @@ -43,7 +47,10 @@ def check_file_language(path): from robot.conf.languages import Languages except ImportError as err: sys.stderr.write(f"Trying to import robot's languages module returned error: {repr(err)}\n") - return None + try: + from .languages import Languages + except ImportError: + return None try: build_lang = Languages(language_string, add_english=False) except (DataError, ModuleNotFoundError) as err: @@ -73,7 +80,10 @@ def get_language_name(lang_code): from robot.conf.languages import Languages except ImportError as err: sys.stderr.write(f"Trying to import robot's languages module returned error: {repr(err)}\n") - return None + try: + from .languages import Languages + except ImportError: + return None try: build_lang = Languages(lang_code.replace('_', '-'), add_english=False) except (DataError, ModuleNotFoundError) as err: @@ -123,7 +133,7 @@ def get_headers_for(language, tables_headers, lowercase=True): try: if not mlang: mlang = 'en' - lang = Language.from_name(mlang.replace('_','-')) + lang = Language.from_name(mlang.replace('_', '-')) languages.add(lang) except ValueError: print(f"DEBUG: language.py get_headers_for Exception at language={mlang}") @@ -146,7 +156,8 @@ def get_headers_for(language, tables_headers, lowercase=True): header = list(headers.keys())[inx].lower() if lowercase else list(headers.keys())[inx] build_headings.append(header) break - except Exception as e: + except Exception as ex: + print(f"DEBUG: robotide.lib.compat.parsing.language.py get_headers: {ex}") pass inx += 1 for bh in build_headings: @@ -203,7 +214,8 @@ def get_settings_for(language, settings_names): setting = list(settings.keys())[inx] build_table[setting] = item break - except Exception as e: + except Exception as ex: + print(f"DEBUG: robotide.lib.compat.parsing.language.py get_settings: {ex}") pass inx += 1 # print(f"DEBUG: language.py get_settings_for RETURN build_table={build_table}") @@ -223,7 +235,7 @@ def get_english_label(lang, label): except ValueError: print(f"DEBUG: language.py get_english_label Exception at language={lang}") else: - mlang = Language.from_name(lang.replace('_','-')) + mlang = Language.from_name(lang.replace('_', '-')) if not mlang: print(f"DEBUG: language.py get_english_label lang={lang} not found") return None diff --git a/src/robotide/lib/compat/parsing/languages.py b/src/robotide/lib/compat/parsing/languages.py new file mode 100644 index 000000000..b0b12aa63 --- /dev/null +++ b/src/robotide/lib/compat/parsing/languages.py @@ -0,0 +1,1302 @@ +# Copyright 2008-2015 Nokia Networks +# Copyright 2016- Robot Framework Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import inspect +from itertools import chain +from pathlib import Path +from typing import cast, Iterable, Iterator, Union + +from robot.errors import DataError +from robot.utils import classproperty, is_list_like, Importer, normalize + + +LanguageLike = Union['Language', str, Path] +LanguagesLike = Union['Languages', LanguageLike, Iterable[LanguageLike], None] + + +class Languages: + """Stores languages and unifies translations. + + Example:: + + languages = Languages('de', add_english=False) + print(languages.settings) + languages = Languages(['pt-BR', 'Finnish', 'MyLang.py']) + for lang in languages: + print(lang.name, lang.code) + """ + + def __init__(self, languages: 'Iterable[LanguageLike]|LanguageLike|None' = (), + add_english: bool = True): + """ + :param languages: Initial language or list of languages. + Languages can be given as language codes or names, paths or names of + language modules to load, or as :class:`Language` instances. + :param add_english: If True, English is added automatically. + :raises: :class:`~robot.errors.DataError` if a given language is not found. + + :meth:`add_language` can be used to add languages after initialization. + """ + self.languages: 'list[Language]' = [] + self.headers: 'dict[str, str]' = {} + self.settings: 'dict[str, str]' = {} + self.bdd_prefixes: 'set[str]' = set() + self.true_strings: 'set[str]' = {'True', '1'} + self.false_strings: 'set[str]' = {'False', '0', 'None', ''} + for lang in self._get_languages(languages, add_english): + self._add_language(lang) + + def reset(self, languages: Iterable[LanguageLike] = (), add_english: bool = True): + """Resets the instance to the given languages.""" + self.__init__(languages, add_english) + + def add_language(self, lang: LanguageLike): + """Add new language. + + :param lang: Language to add. Can be a language code or name, name or + path of a language module to load, or a :class:`Language` instance. + :raises: :class:`~robot.errors.DataError` if the language is not found. + + Language codes and names are passed to by :meth:`Language.from_name`. + Language modules are imported and :class:`Language` subclasses in them + loaded. + """ + if isinstance(lang, Language): + languages = [lang] + elif isinstance(lang, Path) or self._exists(Path(lang)): + languages = self._import_language_module(Path(lang)) + else: + try: + languages = [Language.from_name(lang)] + except ValueError as err1: + try: + languages = self._import_language_module(lang) + except DataError as err2: + raise DataError(f'{err1} {err2}') from None + for lang in languages: + self._add_language(lang) + + def _exists(self, path: Path): + try: + return path.exists() + except OSError: # Can happen on Windows w/ Python < 3.10. + return False + + def _add_language(self, lang: 'Language'): + if lang in self.languages: + return + self.languages.append(lang) + self.headers.update({n.title(): lang.headers[n] for n in lang.headers if n}) + self.settings.update({n.title(): lang.settings[n] for n in lang.settings if n}) + self.bdd_prefixes |= {p.title() for p in lang.bdd_prefixes} + self.true_strings |= {s.title() for s in lang.true_strings} + self.false_strings |= {s.title() for s in lang.false_strings} + + def _get_languages(self, languages, add_english=True) -> 'list[Language]': + languages = self._resolve_languages(languages, add_english) + available = self._get_available_languages() + returned: 'list[Language]' = [] + for lang in languages: + if isinstance(lang, Language): + returned.append(lang) + elif isinstance(lang, Path): + returned.extend(self._import_language_module(lang)) + else: + normalized = normalize(lang, ignore='-') + if normalized in available: + returned.append(available[normalized]()) + else: + returned.extend(self._import_language_module(lang)) + return returned + + def _resolve_languages(self, languages, add_english=True): + if not languages: + languages = [] + elif is_list_like(languages): + languages = list(languages) + else: + languages = [languages] + if add_english: + languages.append(En()) + return languages + + def _get_available_languages(self) -> 'dict[str, type[Language]]': + available = {} + for lang in Language.__subclasses__(): + available[normalize(cast(str, lang.code), ignore='-')] = lang + available[normalize(cast(str, lang.name))] = lang + if '' in available: + available.pop('') + return available + + def _import_language_module(self, name_or_path) -> 'list[Language]': + def is_language(member): + return (inspect.isclass(member) + and issubclass(member, Language) + and member is not Language) + if isinstance(name_or_path, Path): + name_or_path = name_or_path.absolute() + elif self._exists(Path(name_or_path)): + name_or_path = Path(name_or_path).absolute() + module = Importer('language file').import_module(name_or_path) + return [value() for _, value in inspect.getmembers(module, is_language)] + + def __iter__(self) -> 'Iterator[Language]': + return iter(self.languages) + + +class Language: + """Base class for language definitions. + + New translations can be added by extending this class and setting class + attributes listed below. + + Language :attr:`code` is got based on the class name and :attr:`name` + based on the docstring. + """ + settings_header = None + variables_header = None + test_cases_header = None + tasks_header = None + keywords_header = None + comments_header = None + library_setting = None + resource_setting = None + variables_setting = None + name_setting = None + documentation_setting = None + metadata_setting = None + suite_setup_setting = None + suite_teardown_setting = None + test_setup_setting = None + task_setup_setting = None + test_teardown_setting = None + task_teardown_setting = None + test_template_setting = None + task_template_setting = None + test_timeout_setting = None + task_timeout_setting = None + test_tags_setting = None + task_tags_setting = None + keyword_tags_setting = None + tags_setting = None + setup_setting = None + teardown_setting = None + template_setting = None + timeout_setting = None + arguments_setting = None + given_prefixes = [] + when_prefixes = [] + then_prefixes = [] + and_prefixes = [] + but_prefixes = [] + true_strings = [] + false_strings = [] + + @classmethod + def from_name(cls, name) -> 'Language': + """Return language class based on given `name`. + + Name can either be a language name (e.g. 'Finnish' or 'Brazilian Portuguese') + or a language code (e.g. 'fi' or 'pt-BR'). Matching is case and space + insensitive and the hyphen is ignored when matching language codes. + + Raises `ValueError` if no matching language is found. + """ + normalized = normalize(name, ignore='-') + for lang in cls.__subclasses__(): + if normalized == normalize(lang.__name__): + return lang() + if lang.__doc__ and normalized == normalize(lang.__doc__.splitlines()[0]): + return lang() + raise ValueError(f"No language with name '{name}' found.") + + @classproperty + def code(cls) -> str: + """Language code like 'fi' or 'pt-BR'. + + Got based on the class name. If the class name is two characters (or less), + the code is just the name in lower case. If it is longer, a hyphen is added + and the remainder of the class name is upper-cased. + + This special property can be accessed also directly from the class. + """ + if cls is Language: + return cls.__dict__['code'] + code = cast(type, cls).__name__.lower() + if len(code) < 3: + return code + return f'{code[:2]}-{code[2:].upper()}' + + @classproperty + def name(cls) -> str: + """Language name like 'Finnish' or 'Brazilian Portuguese'. + + Got from the first line of the class docstring. + + This special property can be accessed also directly from the class. + """ + if cls is Language: + return cls.__dict__['name'] + return cls.__doc__.splitlines()[0] if cls.__doc__ else '' + + @property + def headers(self) -> 'dict[str|None, str]': + return { + self.settings_header: En.settings_header, + self.variables_header: En.variables_header, + self.test_cases_header: En.test_cases_header, + self.tasks_header: En.tasks_header, + self.keywords_header: En.keywords_header, + self.comments_header: En.comments_header + } + + @property + def settings(self) -> 'dict[str|None, str]': + return { + self.library_setting: En.library_setting, + self.resource_setting: En.resource_setting, + self.variables_setting: En.variables_setting, + self.name_setting: En.name_setting, + self.documentation_setting: En.documentation_setting, + self.metadata_setting: En.metadata_setting, + self.suite_setup_setting: En.suite_setup_setting, + self.suite_teardown_setting: En.suite_teardown_setting, + self.test_setup_setting: En.test_setup_setting, + self.task_setup_setting: En.task_setup_setting, + self.test_teardown_setting: En.test_teardown_setting, + self.task_teardown_setting: En.task_teardown_setting, + self.test_template_setting: En.test_template_setting, + self.task_template_setting: En.task_template_setting, + self.test_timeout_setting: En.test_timeout_setting, + self.task_timeout_setting: En.task_timeout_setting, + self.test_tags_setting: En.test_tags_setting, + self.task_tags_setting: En.task_tags_setting, + self.keyword_tags_setting: En.keyword_tags_setting, + self.tags_setting: En.tags_setting, + self.setup_setting: En.setup_setting, + self.teardown_setting: En.teardown_setting, + self.template_setting: En.template_setting, + self.timeout_setting: En.timeout_setting, + self.arguments_setting: En.arguments_setting, + } + + @property + def bdd_prefixes(self) -> 'set[str]': + return set(chain(self.given_prefixes, self.when_prefixes, self.then_prefixes, + self.and_prefixes, self.but_prefixes)) + + def __eq__(self, other): + return isinstance(other, type(self)) + + def __hash__(self): + return hash(type(self)) + + +class En(Language): + """English""" + settings_header = 'Settings' + variables_header = 'Variables' + test_cases_header = 'Test Cases' + tasks_header = 'Tasks' + keywords_header = 'Keywords' + comments_header = 'Comments' + library_setting = 'Library' + resource_setting = 'Resource' + variables_setting = 'Variables' + name_setting = 'Name' + documentation_setting = 'Documentation' + metadata_setting = 'Metadata' + suite_setup_setting = 'Suite Setup' + suite_teardown_setting = 'Suite Teardown' + test_setup_setting = 'Test Setup' + task_setup_setting = 'Task Setup' + test_teardown_setting = 'Test Teardown' + task_teardown_setting = 'Task Teardown' + test_template_setting = 'Test Template' + task_template_setting = 'Task Template' + test_timeout_setting = 'Test Timeout' + task_timeout_setting = 'Task Timeout' + test_tags_setting = 'Test Tags' + task_tags_setting = 'Task Tags' + keyword_tags_setting = 'Keyword Tags' + setup_setting = 'Setup' + teardown_setting = 'Teardown' + template_setting = 'Template' + tags_setting = 'Tags' + timeout_setting = 'Timeout' + arguments_setting = 'Arguments' + given_prefixes = ['Given'] + when_prefixes = ['When'] + then_prefixes = ['Then'] + and_prefixes = ['And'] + but_prefixes = ['But'] + true_strings = ['True', 'Yes', 'On'] + false_strings = ['False', 'No', 'Off'] + + +class Cs(Language): + """Czech""" + settings_header = 'Nastavení' + variables_header = 'Proměnné' + test_cases_header = 'Testovací případy' + tasks_header = 'Úlohy' + keywords_header = 'Klíčová slova' + comments_header = 'Komentáře' + library_setting = 'Knihovna' + resource_setting = 'Zdroj' + variables_setting = 'Proměnná' + name_setting = 'Název' + documentation_setting = 'Dokumentace' + metadata_setting = 'Metadata' + suite_setup_setting = 'Příprava sady' + suite_teardown_setting = 'Ukončení sady' + test_setup_setting = 'Příprava testu' + test_teardown_setting = 'Ukončení testu' + test_template_setting = 'Šablona testu' + test_timeout_setting = 'Časový limit testu' + test_tags_setting = 'Štítky testů' + task_setup_setting = 'Příprava úlohy' + task_teardown_setting = 'Ukončení úlohy' + task_template_setting = 'Šablona úlohy' + task_timeout_setting = 'Časový limit úlohy' + task_tags_setting = 'Štítky úloh' + keyword_tags_setting = 'Štítky klíčových slov' + tags_setting = 'Štítky' + setup_setting = 'Příprava' + teardown_setting = 'Ukončení' + template_setting = 'Šablona' + timeout_setting = 'Časový limit' + arguments_setting = 'Argumenty' + given_prefixes = ['Pokud'] + when_prefixes = ['Když'] + then_prefixes = ['Pak'] + and_prefixes = ['A'] + but_prefixes = ['Ale'] + true_strings = ['Pravda', 'Ano', 'Zapnuto'] + false_strings = ['Nepravda', 'Ne', 'Vypnuto', 'Nic'] + + +class Nl(Language): + """Dutch""" + settings_header = 'Instellingen' + variables_header = 'Variabelen' + test_cases_header = 'Testgevallen' + tasks_header = 'Taken' + keywords_header = 'Sleutelwoorden' + comments_header = 'Opmerkingen' + library_setting = 'Bibliotheek' + resource_setting = 'Resource' + variables_setting = 'Variabele' + name_setting = 'Naam' + documentation_setting = 'Documentatie' + metadata_setting = 'Metadata' + suite_setup_setting = 'Suite Preconditie' + suite_teardown_setting = 'Suite Postconditie' + test_setup_setting = 'Test Preconditie' + test_teardown_setting = 'Test Postconditie' + test_template_setting = 'Test Sjabloon' + test_timeout_setting = 'Test Time-out' + test_tags_setting = 'Test Labels' + task_setup_setting = 'Taak Preconditie' + task_teardown_setting = 'Taak Postconditie' + task_template_setting = 'Taak Sjabloon' + task_timeout_setting = 'Taak Time-out' + task_tags_setting = 'Taak Labels' + keyword_tags_setting = 'Sleutelwoord Labels' + tags_setting = 'Labels' + setup_setting = 'Preconditie' + teardown_setting = 'Postconditie' + template_setting = 'Sjabloon' + timeout_setting = 'Time-out' + arguments_setting = 'Parameters' + given_prefixes = ['Stel', 'Gegeven'] + when_prefixes = ['Als'] + then_prefixes = ['Dan'] + and_prefixes = ['En'] + but_prefixes = ['Maar'] + true_strings = ['Waar', 'Ja', 'Aan'] + false_strings = ['Onwaar', 'Nee', 'Uit', 'Geen'] + + +class Bs(Language): + """Bosnian""" + settings_header = 'Postavke' + variables_header = 'Varijable' + test_cases_header = 'Test Cases' + tasks_header = 'Taskovi' + keywords_header = 'Keywords' + comments_header = 'Komentari' + library_setting = 'Biblioteka' + resource_setting = 'Resursi' + variables_setting = 'Varijable' + documentation_setting = 'Dokumentacija' + metadata_setting = 'Metadata' + suite_setup_setting = 'Suite Postavke' + suite_teardown_setting = 'Suite Teardown' + test_setup_setting = 'Test Postavke' + test_teardown_setting = 'Test Teardown' + test_template_setting = 'Test Template' + test_timeout_setting = 'Test Timeout' + test_tags_setting = 'Test Tagovi' + task_setup_setting = 'Task Postavke' + task_teardown_setting = 'Task Teardown' + task_template_setting = 'Task Template' + task_timeout_setting = 'Task Timeout' + task_tags_setting = 'Task Tagovi' + keyword_tags_setting = 'Keyword Tagovi' + tags_setting = 'Tagovi' + setup_setting = 'Postavke' + teardown_setting = 'Teardown' + template_setting = 'Template' + timeout_setting = 'Timeout' + arguments_setting = 'Argumenti' + given_prefixes = ['Uslovno'] + when_prefixes = ['Kada'] + then_prefixes = ['Tada'] + and_prefixes = ['I'] + but_prefixes = ['Ali'] + + +class Fi(Language): + """Finnish""" + settings_header = 'Asetukset' + variables_header = 'Muuttujat' + test_cases_header = 'Testit' + tasks_header = 'Tehtävät' + keywords_header = 'Avainsanat' + comments_header = 'Kommentit' + library_setting = 'Kirjasto' + resource_setting = 'Resurssi' + variables_setting = 'Muuttujat' + documentation_setting = 'Dokumentaatio' + metadata_setting = 'Metatiedot' + name_setting = "Nimi" + suite_setup_setting = 'Setin Alustus' + suite_teardown_setting = 'Setin Alasajo' + test_setup_setting = 'Testin Alustus' + task_setup_setting = 'Tehtävän Alustus' + test_teardown_setting = 'Testin Alasajo' + task_teardown_setting = 'Tehtävän Alasajo' + test_template_setting = 'Testin Malli' + task_template_setting = 'Tehtävän Malli' + test_timeout_setting = 'Testin Aikaraja' + task_timeout_setting = 'Tehtävän Aikaraja' + test_tags_setting = 'Testin Tagit' + task_tags_setting = 'Tehtävän Tagit' + keyword_tags_setting = 'Avainsanan Tagit' + tags_setting = 'Tagit' + setup_setting = 'Alustus' + teardown_setting = 'Alasajo' + template_setting = 'Malli' + timeout_setting = 'Aikaraja' + arguments_setting = 'Argumentit' + given_prefixes = ['Oletetaan'] + when_prefixes = ['Kun'] + then_prefixes = ['Niin'] + and_prefixes = ['Ja'] + but_prefixes = ['Mutta'] + true_strings = ['Tosi', 'Kyllä', 'Päällä'] + false_strings = ['Epätosi', 'Ei', 'Pois'] + + +class Fr(Language): + """French""" + settings_header = 'Paramètres' + variables_header = 'Variables' + test_cases_header = 'Unités de test' + tasks_header = 'Tâches' + keywords_header = 'Mots-clés' + comments_header = 'Commentaires' + library_setting = 'Bibliothèque' + resource_setting = 'Ressource' + variables_setting = 'Variable' + name_setting = 'Nom' + documentation_setting = 'Documentation' + metadata_setting = 'Méta-donnée' + suite_setup_setting = 'Mise en place de suite' + suite_teardown_setting = 'Démontage de suite' + test_setup_setting = 'Mise en place de test' + test_teardown_setting = 'Démontage de test' + test_template_setting = 'Modèle de test' + test_timeout_setting = 'Délai de test' + test_tags_setting = 'Étiquette de test' + task_setup_setting = 'Mise en place de tâche' + task_teardown_setting = 'Démontage de test' + task_template_setting = 'Modèle de tâche' + task_timeout_setting = 'Délai de tâche' + task_tags_setting = 'Étiquette de tâche' + keyword_tags_setting = 'Etiquette de mot-clé' + tags_setting = 'Étiquette' + setup_setting = 'Mise en place' + teardown_setting = 'Démontage' + template_setting = 'Modèle' + timeout_setting = "Délai d'attente" + arguments_setting = 'Arguments' + given_prefixes = ['Étant donné'] + when_prefixes = ['Lorsque'] + then_prefixes = ['Alors'] + and_prefixes = ['Et'] + but_prefixes = ['Mais'] + true_strings = ['Vrai', 'Oui', 'Actif'] + false_strings = ['Faux', 'Non', 'Désactivé', 'Aucun'] + + +class De(Language): + """German""" + settings_header = 'Einstellungen' + variables_header = 'Variablen' + test_cases_header = 'Testfälle' + tasks_header = 'Aufgaben' + keywords_header = 'Schlüsselwörter' + comments_header = 'Kommentare' + library_setting = 'Bibliothek' + resource_setting = 'Ressource' + variables_setting = 'Variablen' + name_setting = 'Name' + documentation_setting = 'Dokumentation' + metadata_setting = 'Metadaten' + suite_setup_setting = 'Suitevorbereitung' + suite_teardown_setting = 'Suitenachbereitung' + test_setup_setting = 'Testvorbereitung' + test_teardown_setting = 'Testnachbereitung' + test_template_setting = 'Testvorlage' + test_timeout_setting = 'Testzeitlimit' + test_tags_setting = 'Testmarker' + task_setup_setting = 'Aufgabenvorbereitung' + task_teardown_setting = 'Aufgabennachbereitung' + task_template_setting = 'Aufgabenvorlage' + task_timeout_setting = 'Aufgabenzeitlimit' + task_tags_setting = 'Aufgabenmarker' + keyword_tags_setting = 'Schlüsselwortmarker' + tags_setting = 'Marker' + setup_setting = 'Vorbereitung' + teardown_setting = 'Nachbereitung' + template_setting = 'Vorlage' + timeout_setting = 'Zeitlimit' + arguments_setting = 'Argumente' + given_prefixes = ['Angenommen'] + when_prefixes = ['Wenn'] + then_prefixes = ['Dann'] + and_prefixes = ['Und'] + but_prefixes = ['Aber'] + true_strings = ['Wahr', 'Ja', 'An', 'Ein'] + false_strings = ['Falsch', 'Nein', 'Aus', 'Unwahr'] + + +class PtBr(Language): + """Brazilian Portuguese""" + settings_header = 'Configurações' + variables_header = 'Variáveis' + test_cases_header = 'Casos de Teste' + tasks_header = 'Tarefas' + keywords_header = 'Palavras-Chave' + comments_header = 'Comentários' + library_setting = 'Biblioteca' + resource_setting = 'Recurso' + variables_setting = 'Variável' + name_setting = 'Nome' + documentation_setting = 'Documentação' + metadata_setting = 'Metadados' + suite_setup_setting = 'Configuração da Suíte' + suite_teardown_setting = 'Finalização de Suíte' + test_setup_setting = 'Inicialização de Teste' + test_teardown_setting = 'Finalização de Teste' + test_template_setting = 'Modelo de Teste' + test_timeout_setting = 'Tempo Limite de Teste' + test_tags_setting = 'Test Tags' + task_setup_setting = 'Inicialização de Tarefa' + task_teardown_setting = 'Finalização de Tarefa' + task_template_setting = 'Modelo de Tarefa' + task_timeout_setting = 'Tempo Limite de Tarefa' + task_tags_setting = 'Task Tags' + keyword_tags_setting = 'Keyword Tags' + tags_setting = 'Etiquetas' + setup_setting = 'Inicialização' + teardown_setting = 'Finalização' + template_setting = 'Modelo' + timeout_setting = 'Tempo Limite' + arguments_setting = 'Argumentos' + given_prefixes = ['Dado'] + when_prefixes = ['Quando'] + then_prefixes = ['Então'] + and_prefixes = ['E'] + but_prefixes = ['Mas'] + true_strings = ['Verdadeiro', 'Verdade', 'Sim', 'Ligado'] + false_strings = ['Falso', 'Não', 'Desligado', 'Desativado', 'Nada'] + + +class Pt(Language): + """Portuguese""" + settings_header = 'Definições' + variables_header = 'Variáveis' + test_cases_header = 'Casos de Teste' + tasks_header = 'Tarefas' + keywords_header = 'Palavras-Chave' + comments_header = 'Comentários' + library_setting = 'Biblioteca' + resource_setting = 'Recurso' + variables_setting = 'Variável' + name_setting = 'Nome' + documentation_setting = 'Documentação' + metadata_setting = 'Metadados' + suite_setup_setting = 'Inicialização de Suíte' + suite_teardown_setting = 'Finalização de Suíte' + test_setup_setting = 'Inicialização de Teste' + test_teardown_setting = 'Finalização de Teste' + test_template_setting = 'Modelo de Teste' + test_timeout_setting = 'Tempo Limite de Teste' + test_tags_setting = 'Etiquetas de Testes' + task_setup_setting = 'Inicialização de Tarefa' + task_teardown_setting = 'Finalização de Tarefa' + task_template_setting = 'Modelo de Tarefa' + task_timeout_setting = 'Tempo Limite de Tarefa' + task_tags_setting = 'Etiquetas de Tarefas' + keyword_tags_setting = 'Etiquetas de Palavras-Chave' + tags_setting = 'Etiquetas' + setup_setting = 'Inicialização' + teardown_setting = 'Finalização' + template_setting = 'Modelo' + timeout_setting = 'Tempo Limite' + arguments_setting = 'Argumentos' + given_prefixes = ['Dado'] + when_prefixes = ['Quando'] + then_prefixes = ['Então'] + and_prefixes = ['E'] + but_prefixes = ['Mas'] + true_strings = ['Verdadeiro', 'Verdade', 'Sim', 'Ligado'] + false_strings = ['Falso', 'Não', 'Desligado', 'Desativado', 'Nada'] + + +class Th(Language): + """Thai""" + settings_header = 'การตั้งค่า' + variables_header = 'กำหนดตัวแปร' + test_cases_header = 'การทดสอบ' + tasks_header = 'งาน' + keywords_header = 'คำสั่งเพิ่มเติม' + comments_header = 'คำอธิบาย' + library_setting = 'ชุดคำสั่งที่ใช้' + resource_setting = 'ไฟล์ที่ใช้' + variables_setting = 'ชุดตัวแปร' + documentation_setting = 'เอกสาร' + metadata_setting = 'รายละเอียดเพิ่มเติม' + suite_setup_setting = 'กำหนดค่าเริ่มต้นของชุดการทดสอบ' + suite_teardown_setting = 'คืนค่าของชุดการทดสอบ' + test_setup_setting = 'กำหนดค่าเริ่มต้นของการทดสอบ' + task_setup_setting = 'กำหนดค่าเริ่มต้นของงาน' + test_teardown_setting = 'คืนค่าของการทดสอบ' + task_teardown_setting = 'คืนค่าของงาน' + test_template_setting = 'โครงสร้างของการทดสอบ' + task_template_setting = 'โครงสร้างของงาน' + test_timeout_setting = 'เวลารอของการทดสอบ' + task_timeout_setting = 'เวลารอของงาน' + test_tags_setting = 'กลุ่มของการทดสอบ' + task_tags_setting = 'กลุ่มของงาน' + keyword_tags_setting = 'กลุ่มของคำสั่งเพิ่มเติม' + setup_setting = 'กำหนดค่าเริ่มต้น' + teardown_setting = 'คืนค่า' + template_setting = 'โครงสร้าง' + tags_setting = 'กลุ่ม' + timeout_setting = 'หมดเวลา' + arguments_setting = 'ค่าที่ส่งเข้ามา' + given_prefixes = ['กำหนดให้'] + when_prefixes = ['เมื่อ'] + then_prefixes = ['ดังนั้น'] + and_prefixes = ['และ'] + but_prefixes = ['แต่'] + + +class Pl(Language): + """Polish""" + settings_header = 'Ustawienia' + variables_header = 'Zmienne' + test_cases_header = 'Przypadki Testowe' + tasks_header = 'Zadania' + keywords_header = 'Słowa Kluczowe' + comments_header = 'Komentarze' + library_setting = 'Biblioteka' + resource_setting = 'Zasób' + variables_setting = 'Zmienne' + name_setting = 'Nazwa' + documentation_setting = 'Dokumentacja' + metadata_setting = 'Metadane' + suite_setup_setting = 'Inicjalizacja Zestawu' + suite_teardown_setting = 'Ukończenie Zestawu' + test_setup_setting = 'Inicjalizacja Testu' + test_teardown_setting = 'Ukończenie Testu' + test_template_setting = 'Szablon Testu' + test_timeout_setting = 'Limit Czasowy Testu' + test_tags_setting = 'Znaczniki Testu' + task_setup_setting = 'Inicjalizacja Zadania' + task_teardown_setting = 'Ukończenie Zadania' + task_template_setting = 'Szablon Zadania' + task_timeout_setting = 'Limit Czasowy Zadania' + task_tags_setting = 'Znaczniki Zadania' + keyword_tags_setting = 'Znaczniki Słowa Kluczowego' + tags_setting = 'Znaczniki' + setup_setting = 'Inicjalizacja' + teardown_setting = 'Ukończenie' + template_setting = 'Szablon' + timeout_setting = 'Limit Czasowy' + arguments_setting = 'Argumenty' + given_prefixes = ['Zakładając', 'Zakładając, że', 'Mając'] + when_prefixes = ['Jeżeli', 'Jeśli', 'Gdy', 'Kiedy'] + then_prefixes = ['Wtedy'] + and_prefixes = ['Oraz', 'I'] + but_prefixes = ['Ale'] + true_strings = ['Prawda', 'Tak', 'Włączone'] + false_strings = ['Fałsz', 'Nie', 'Wyłączone', 'Nic'] + + +class Uk(Language): + """Ukrainian""" + settings_header = 'Налаштування' + variables_header = 'Змінні' + test_cases_header = 'Тест-кейси' + tasks_header = 'Завдань' + keywords_header = 'Ключових слова' + comments_header = 'Коментарів' + library_setting = 'Бібліотека' + resource_setting = 'Ресурс' + variables_setting = 'Змінна' + documentation_setting = 'Документація' + metadata_setting = 'Метадані' + suite_setup_setting = 'Налаштування Suite' + suite_teardown_setting = 'Розбірка Suite' + test_setup_setting = 'Налаштування тесту' + test_teardown_setting = 'Розбирання тестy' + test_template_setting = 'Тестовий шаблон' + test_timeout_setting = 'Час тестування' + test_tags_setting = 'Тестові теги' + task_setup_setting = 'Налаштування завдання' + task_teardown_setting = 'Розбір завдання' + task_template_setting = 'Шаблон завдання' + task_timeout_setting = 'Час очікування завдання' + task_tags_setting = 'Теги завдань' + keyword_tags_setting = 'Теги ключових слів' + tags_setting = 'Теги' + setup_setting = 'Встановлення' + teardown_setting = 'Cпростовувати пункт за пунктом' + template_setting = 'Шаблон' + timeout_setting = 'Час вийшов' + arguments_setting = 'Аргументи' + given_prefixes = ['Дано'] + when_prefixes = ['Коли'] + then_prefixes = ['Тоді'] + and_prefixes = ['Та'] + but_prefixes = ['Але'] + + +class Es(Language): + """Spanish""" + settings_header = 'Configuraciones' + variables_header = 'Variables' + test_cases_header = 'Casos de prueba' + tasks_header = 'Tareas' + keywords_header = 'Palabras clave' + comments_header = 'Comentarios' + library_setting = 'Biblioteca' + resource_setting = 'Recursos' + variables_setting = 'Variable' + name_setting = 'Nombre' + documentation_setting = 'Documentación' + metadata_setting = 'Metadatos' + suite_setup_setting = 'Configuración de la Suite' + suite_teardown_setting = 'Desmontaje de la Suite' + test_setup_setting = 'Configuración de prueba' + test_teardown_setting = 'Desmontaje de la prueba' + test_template_setting = 'Plantilla de prueba' + test_timeout_setting = 'Tiempo de espera de la prueba' + test_tags_setting = 'Etiquetas de la prueba' + task_setup_setting = 'Configuración de tarea' + task_teardown_setting = 'Desmontaje de tareas' + task_template_setting = 'Plantilla de tareas' + task_timeout_setting = 'Tiempo de espera de las tareas' + task_tags_setting = 'Etiquetas de las tareas' + keyword_tags_setting = 'Etiquetas de palabras clave' + tags_setting = 'Etiquetas' + setup_setting = 'Configuración' + teardown_setting = 'Desmontaje' + template_setting = 'Plantilla' + timeout_setting = 'Tiempo agotado' + arguments_setting = 'Argumentos' + given_prefixes = ['Dado'] + when_prefixes = ['Cuando'] + then_prefixes = ['Entonces'] + and_prefixes = ['Y'] + but_prefixes = ['Pero'] + true_strings = ['Verdadero', 'Si', 'On'] + false_strings = ['Falso', 'No', 'Off', 'Ninguno'] + + +class Ru(Language): + """Russian""" + settings_header = 'Настройки' + variables_header = 'Переменные' + test_cases_header = 'Заголовки тестов' + tasks_header = 'Задача' + keywords_header = 'Ключевые слова' + comments_header = 'Комментарии' + library_setting = 'Библиотека' + resource_setting = 'Ресурс' + variables_setting = 'Переменные' + documentation_setting = 'Документация' + metadata_setting = 'Метаданные' + suite_setup_setting = 'Инициализация комплекта тестов' + suite_teardown_setting = 'Завершение комплекта тестов' + test_setup_setting = 'Инициализация теста' + test_teardown_setting = 'Завершение теста' + test_template_setting = 'Шаблон теста' + test_timeout_setting = 'Лимит выполнения теста' + test_tags_setting = 'Теги тестов' + task_setup_setting = 'Инициализация задания' + task_teardown_setting = 'Завершение задания' + task_template_setting = 'Шаблон задания' + task_timeout_setting = 'Лимит задания' + task_tags_setting = 'Метки заданий' + keyword_tags_setting = 'Метки ключевых слов' + tags_setting = 'Метки' + setup_setting = 'Инициализация' + teardown_setting = 'Завершение' + template_setting = 'Шаблон' + timeout_setting = 'Лимит' + arguments_setting = 'Аргументы' + given_prefixes = ['Дано'] + when_prefixes = ['Когда'] + then_prefixes = ['Тогда'] + and_prefixes = ['И'] + but_prefixes = ['Но'] + + +class ZhCn(Language): + """Chinese Simplified""" + settings_header = '设置' + variables_header = '变量' + test_cases_header = '用例' + tasks_header = '任务' + keywords_header = '关键字' + comments_header = '备注' + library_setting = '程序库' + resource_setting = '资源文件' + variables_setting = '变量文件' + documentation_setting = '说明' + metadata_setting = '元数据' + suite_setup_setting = '用例集启程' + suite_teardown_setting = '用例集终程' + test_setup_setting = '用例启程' + test_teardown_setting = '用例终程' + test_template_setting = '用例模板' + test_timeout_setting = '用例超时' + test_tags_setting = '用例标签' + task_setup_setting = '任务启程' + task_teardown_setting = '任务终程' + task_template_setting = '任务模板' + task_timeout_setting = '任务超时' + task_tags_setting = '任务标签' + keyword_tags_setting = '关键字标签' + tags_setting = '标签' + setup_setting = '启程' + teardown_setting = '终程' + template_setting = '模板' + timeout_setting = '超时' + arguments_setting = '参数' + given_prefixes = ['假定'] + when_prefixes = ['当'] + then_prefixes = ['那么'] + and_prefixes = ['并且'] + but_prefixes = ['但是'] + true_strings = ['真', '是', '开'] + false_strings = ['假', '否', '关', '空'] + + +class ZhTw(Language): + """Chinese Traditional""" + settings_header = '設置' + variables_header = '變量' + test_cases_header = '案例' + tasks_header = '任務' + keywords_header = '關鍵字' + comments_header = '備註' + library_setting = '函式庫' + resource_setting = '資源文件' + variables_setting = '變量文件' + documentation_setting = '說明' + metadata_setting = '元數據' + suite_setup_setting = '測試套啟程' + suite_teardown_setting = '測試套終程' + test_setup_setting = '測試啟程' + test_teardown_setting = '測試終程' + test_template_setting = '測試模板' + test_timeout_setting = '測試逾時' + test_tags_setting = '測試標籤' + task_setup_setting = '任務啟程' + task_teardown_setting = '任務終程' + task_template_setting = '任務模板' + task_timeout_setting = '任務逾時' + task_tags_setting = '任務標籤' + keyword_tags_setting = '關鍵字標籤' + tags_setting = '標籤' + setup_setting = '啟程' + teardown_setting = '終程' + template_setting = '模板' + timeout_setting = '逾時' + arguments_setting = '参数' + given_prefixes = ['假定'] + when_prefixes = ['當'] + then_prefixes = ['那麼'] + and_prefixes = ['並且'] + but_prefixes = ['但是'] + true_strings = ['真', '是', '開'] + false_strings = ['假', '否', '關', '空'] + + +class Tr(Language): + """Turkish""" + settings_header = 'Ayarlar' + variables_header = 'Değişkenler' + test_cases_header = 'Test Durumları' + tasks_header = 'Görevler' + keywords_header = 'Anahtar Kelimeler' + comments_header = 'Yorumlar' + library_setting = 'Kütüphane' + resource_setting = 'Kaynak' + variables_setting = 'Değişkenler' + documentation_setting = 'Dokümantasyon' + metadata_setting = 'Üstveri' + suite_setup_setting = 'Takım Kurulumu' + suite_teardown_setting = 'Takım Bitişi' + test_setup_setting = 'Test Kurulumu' + task_setup_setting = 'Görev Kurulumu' + test_teardown_setting = 'Test Bitişi' + task_teardown_setting = 'Görev Bitişi' + test_template_setting = 'Test Taslağı' + task_template_setting = 'Görev Taslağı' + test_timeout_setting = 'Test Zaman Aşımı' + task_timeout_setting = 'Görev Zaman Aşımı' + test_tags_setting = 'Test Etiketleri' + task_tags_setting = 'Görev Etiketleri' + keyword_tags_setting = 'Anahtar Kelime Etiketleri' + setup_setting = 'Kurulum' + teardown_setting = 'Bitiş' + template_setting = 'Taslak' + tags_setting = 'Etiketler' + timeout_setting = 'Zaman Aşımı' + arguments_setting = 'Argümanlar' + given_prefixes = ['Diyelim ki'] + when_prefixes = ['Eğer ki'] + then_prefixes = ['O zaman'] + and_prefixes = ['Ve'] + but_prefixes = ['Ancak'] + true_strings = ['Doğru', 'Evet', 'Açik'] + false_strings = ['Yanliş', 'Hayir', 'Kapali'] + + +class Sv(Language): + """Swedish""" + settings_header = 'Inställningar' + variables_header = 'Variabler' + test_cases_header = 'Testfall' + tasks_header = 'Taskar' + keywords_header = 'Nyckelord' + comments_header = 'Kommentarer' + library_setting = 'Bibliotek' + resource_setting = 'Resurs' + variables_setting = 'Variabel' + name_setting = 'Namn' + documentation_setting = 'Dokumentation' + metadata_setting = 'Metadata' + suite_setup_setting = 'Svit konfigurering' + suite_teardown_setting = 'Svit nedrivning' + test_setup_setting = 'Test konfigurering' + test_teardown_setting = 'Test nedrivning' + test_template_setting = 'Test mall' + test_timeout_setting = 'Test timeout' + test_tags_setting = 'Test taggar' + task_setup_setting = 'Task konfigurering' + task_teardown_setting = 'Task nedrivning' + task_template_setting = 'Task mall' + task_timeout_setting = 'Task timeout' + task_tags_setting = 'Arbetsuppgift taggar' + keyword_tags_setting = 'Nyckelord taggar' + tags_setting = 'Taggar' + setup_setting = 'Konfigurering' + teardown_setting = 'Nedrivning' + template_setting = 'Mall' + timeout_setting = 'Timeout' + arguments_setting = 'Argument' + given_prefixes = ['Givet'] + when_prefixes = ['När'] + then_prefixes = ['Då'] + and_prefixes = ['Och'] + but_prefixes = ['Men'] + true_strings = ['Sant', 'Ja', 'På'] + false_strings = ['Falskt', 'Nej', 'Av', 'Ingen'] + + +class Bg(Language): + """Bulgarian""" + settings_header = 'Настройки' + variables_header = 'Променливи' + test_cases_header = 'Тестови случаи' + tasks_header = 'Задачи' + keywords_header = 'Ключови думи' + comments_header = 'Коментари' + library_setting = 'Библиотека' + resource_setting = 'Ресурс' + variables_setting = 'Променлива' + documentation_setting = 'Документация' + metadata_setting = 'Метаданни' + suite_setup_setting = 'Първоначални настройки на комплекта' + suite_teardown_setting = 'Приключване на комплекта' + test_setup_setting = 'Първоначални настройки на тестове' + test_teardown_setting = 'Приключване на тестове' + test_template_setting = 'Шаблон за тестове' + test_timeout_setting = 'Таймаут за тестове' + test_tags_setting = 'Етикети за тестове' + task_setup_setting = 'Първоначални настройки на задачи' + task_teardown_setting = 'Приключване на задачи' + task_template_setting = 'Шаблон за задачи' + task_timeout_setting = 'Таймаут за задачи' + task_tags_setting = 'Етикети за задачи' + keyword_tags_setting = 'Етикети за ключови думи' + tags_setting = 'Етикети' + setup_setting = 'Първоначални настройки' + teardown_setting = 'Приключване' + template_setting = 'Шаблон' + timeout_setting = 'Таймаут' + arguments_setting = 'Аргументи' + given_prefixes = ['В случай че'] + when_prefixes = ['Когато'] + then_prefixes = ['Тогава'] + and_prefixes = ['И'] + but_prefixes = ['Но'] + true_strings = ['Вярно', 'Да', 'Включен'] + false_strings = ['Невярно', 'Не', 'Изключен', 'Нищо'] + + +class Ro(Language): + """Romanian""" + settings_header = 'Setari' + variables_header = 'Variabile' + test_cases_header = 'Cazuri De Test' + tasks_header = 'Sarcini' + keywords_header = 'Cuvinte Cheie' + comments_header = 'Comentarii' + library_setting = 'Librarie' + resource_setting = 'Resursa' + variables_setting = 'Variabila' + name_setting = 'Nume' + documentation_setting = 'Documentatie' + metadata_setting = 'Metadate' + suite_setup_setting = 'Configurare De Suita' + suite_teardown_setting = 'Configurare De Intrerupere' + test_setup_setting = 'Setare De Test' + test_teardown_setting = 'Inrerupere De Test' + test_template_setting = 'Sablon De Test' + test_timeout_setting = 'Timp Expirare Test' + test_tags_setting = 'Taguri De Test' + task_setup_setting = 'Configuarare activitate' + task_teardown_setting = 'Intrerupere activitate' + task_template_setting = 'Sablon de activitate' + task_timeout_setting = 'Timp de expirare activitate' + task_tags_setting = 'Etichete activitate' + keyword_tags_setting = 'Etichete metode' + tags_setting = 'Etichete' + setup_setting = 'Setare' + teardown_setting = 'Intrerupere' + template_setting = 'Sablon' + timeout_setting = 'Expirare' + arguments_setting = 'Argumente' + given_prefixes = ['Fie ca'] + when_prefixes = ['Cand'] + then_prefixes = ['Atunci'] + and_prefixes = ['Si'] + but_prefixes = ['Dar'] + true_strings = ['Adevarat', 'Da', 'Cand'] + false_strings = ['Fals', 'Nu', 'Oprit', 'Niciun'] + + +class It(Language): + """Italian""" + settings_header = 'Impostazioni' + variables_header = 'Variabili' + test_cases_header = 'Casi Di Test' + tasks_header = 'Attività' + keywords_header = 'Parole Chiave' + comments_header = 'Commenti' + library_setting = 'Libreria' + resource_setting = 'Risorsa' + variables_setting = 'Variabile' + name_setting = 'Nome' + documentation_setting = 'Documentazione' + metadata_setting = 'Metadati' + suite_setup_setting = 'Configurazione Suite' + suite_teardown_setting = 'Distruzione Suite' + test_setup_setting = 'Configurazione Test' + test_teardown_setting = 'Distruzione Test' + test_template_setting = 'Modello Test' + test_timeout_setting = 'Timeout Test' + test_tags_setting = 'Tag Del Test' + task_setup_setting = 'Configurazione Attività' + task_teardown_setting = 'Distruzione Attività' + task_template_setting = 'Modello Attività' + task_timeout_setting = 'Timeout Attività' + task_tags_setting = 'Tag Attività' + keyword_tags_setting = 'Tag Parola Chiave' + tags_setting = 'Tag' + setup_setting = 'Configurazione' + teardown_setting = 'Distruzione' + template_setting = 'Template' + timeout_setting = 'Timeout' + arguments_setting = 'Parametri' + given_prefixes = ['Dato'] + when_prefixes = ['Quando'] + then_prefixes = ['Allora'] + and_prefixes = ['E'] + but_prefixes = ['Ma'] + true_strings = ['Vero', 'Sì', 'On'] + false_strings = ['Falso', 'No', 'Off', 'Nessuno'] + + +class Hi(Language): + """Hindi""" + settings_header = 'स्थापना' + variables_header = 'चर' + test_cases_header = 'नियत कार्य प्रवेशिका' + tasks_header = 'कार्य प्रवेशिका' + keywords_header = 'कुंजीशब्द' + comments_header = 'टिप्पणी' + library_setting = 'कोड़ प्रतिबिंब संग्रह' + resource_setting = 'संसाधन' + variables_setting = 'चर' + documentation_setting = 'प्रलेखन' + metadata_setting = 'अधि-आंकड़ा' + suite_setup_setting = 'जांच की शुरुवात' + suite_teardown_setting = 'परीक्षण कार्य अंत' + test_setup_setting = 'परीक्षण कार्य प्रारंभ' + test_teardown_setting = 'परीक्षण कार्य अंत' + test_template_setting = 'परीक्षण ढांचा' + test_timeout_setting = 'परीक्षण कार्य समय समाप्त' + test_tags_setting = 'जाँचका उपनाम' + task_setup_setting = 'परीक्षण कार्य प्रारंभ' + task_teardown_setting = 'परीक्षण कार्य अंत' + task_template_setting = 'परीक्षण ढांचा' + task_timeout_setting = 'कार्य समयबाह्य' + task_tags_setting = 'कार्यका उपनाम' + keyword_tags_setting = 'कुंजीशब्द का उपनाम' + tags_setting = 'निशान' + setup_setting = 'व्यवस्थापना' + teardown_setting = 'विमोचन' + template_setting = 'साँचा' + timeout_setting = 'समय समाप्त' + arguments_setting = 'प्राचल' + given_prefixes = ['दिया हुआ'] + when_prefixes = ['जब'] + then_prefixes = ['तब'] + and_prefixes = ['और'] + but_prefixes = ['परंतु'] + true_strings = ['यथार्थ', 'निश्चित', 'हां', 'पर'] + false_strings = ['गलत', 'नहीं', 'हालाँकि', 'यद्यपि', 'नहीं', 'हैं'] + + +class Vi(Language): + """Vietnamese + + New in Robot Framework 6.1. + """ + settings_header = 'Cài Đặt' + variables_header = 'Các biến số' + test_cases_header = 'Các kịch bản kiểm thử' + tasks_header = 'Các nghiệm vụ' + keywords_header = 'Các từ khóa' + comments_header = 'Các chú thích' + library_setting = 'Thư viện' + resource_setting = 'Tài nguyên' + variables_setting = 'Biến số' + name_setting = 'Tên' + documentation_setting = 'Tài liệu hướng dẫn' + metadata_setting = 'Dữ liệu tham chiếu' + suite_setup_setting = 'Tiền thiết lập bộ kịch bản kiểm thử' + suite_teardown_setting = 'Hậu thiết lập bộ kịch bản kiểm thử' + test_setup_setting = 'Tiền thiết lập kịch bản kiểm thử' + test_teardown_setting = 'Hậu thiết lập kịch bản kiểm thử' + test_template_setting = 'Mẫu kịch bản kiểm thử' + test_timeout_setting = 'Thời gian chờ kịch bản kiểm thử' + test_tags_setting = 'Các nhãn kịch bản kiểm thử' + task_setup_setting = 'Tiền thiểt lập nhiệm vụ' + task_teardown_setting = 'Hậu thiết lập nhiệm vụ' + task_template_setting = 'Mẫu nhiễm vụ' + task_timeout_setting = 'Thời gian chờ nhiệm vụ' + task_tags_setting = 'Các nhãn nhiệm vụ' + keyword_tags_setting = 'Các từ khóa nhãn' + tags_setting = 'Các thẻ' + setup_setting = 'Tiền thiết lập' + teardown_setting = 'Hậu thiết lập' + template_setting = 'Mẫu' + timeout_setting = 'Thời gian chờ' + arguments_setting = 'Các đối số' + given_prefixes = ['Đã cho'] + when_prefixes = ['Khi'] + then_prefixes = ['Thì'] + and_prefixes = ['Và'] + but_prefixes = ['Nhưng'] + true_strings = ['Đúng', 'Vâng', 'Mở'] + false_strings = ['Sai', 'Không', 'Tắt', 'Không Có Gì'] + + +class Ja(Language): + """Japanese + + New in Robot Framework 7.0.1. + """ + settings_header = '設定' + variables_header = '変数' + test_cases_header = 'テスト ケース' + tasks_header = 'タスク' + keywords_header = 'キーワード' + comments_header = 'コメント' + library_setting = 'ライブラリ' + resource_setting = 'リソース' + variables_setting = '変数' + name_setting = '名前' + documentation_setting = 'ドキュメント' + metadata_setting = 'メタデータ' + suite_setup_setting = 'スイート セットアップ' + suite_teardown_setting = 'スイート ティアダウン' + test_setup_setting = 'テスト セットアップ' + task_setup_setting = 'タスク セットアップ' + test_teardown_setting = 'テスト ティアダウン' + task_teardown_setting = 'タスク ティアダウン' + test_template_setting = 'テスト テンプレート' + task_template_setting = 'タスク テンプレート' + test_timeout_setting = 'テスト タイムアウト' + task_timeout_setting = 'タスク タイムアウト' + test_tags_setting = 'テスト タグ' + task_tags_setting = 'タスク タグ' + keyword_tags_setting = 'キーワード タグ' + setup_setting = 'セットアップ' + teardown_setting = 'ティアダウン' + template_setting = 'テンプレート' + tags_setting = 'タグ' + timeout_setting = 'タイムアウト' + arguments_setting = '引数' + given_prefixes = ['仮定', '指定', '前提条件'] + when_prefixes = ['条件', '次の場合', 'もし', '実行条件'] + then_prefixes = ['アクション', 'その時', '動作'] + and_prefixes = ['および', '及び', 'かつ', '且つ', 'ならびに', '並びに', 'そして', 'それから'] + but_prefixes = ['ただし', '但し'] + true_strings = ['真', '有効', 'はい', 'オン'] + false_strings = ['偽', '無効', 'いいえ', 'オフ'] diff --git a/src/robotide/lib/robot/parsing/model.py b/src/robotide/lib/robot/parsing/model.py index d131f599c..4d3e03fe0 100644 --- a/src/robotide/lib/robot/parsing/model.py +++ b/src/robotide/lib/robot/parsing/model.py @@ -21,7 +21,10 @@ try: from robot.conf.languages import Language except ModuleNotFoundError: - Language = None + try: + from robotide.lib.compat.parsing.languages import Language + except ImportError: + Language = None from robotide.lib.compat.parsing import language as lang from robotide.lib.robot.errors import DataError diff --git a/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.mo b/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.mo index 3ed3a138eedf4549881deb0bfbe7e14caf017453..4b6096b29700fc9d20c5262276240161cb9aed8c 100644 GIT binary patch delta 12446 zcmYk>3w%%YAII_Ix*1~^V{Gg<+ic9%#>|~D*Ib51?hL~;<}yO~F_CL7BbP`FSqQ0+ zNGKwy{>c3nMgNMFOQrh1-ur&{e>jiFXV35Fd(Qcu@9mr|ZTPcj-jZUA%Dew4>Ns1& zoPuM~Gmhg+X)(Gm5B>27mcet_5pQ8>tP|%r#jzPyz?SHNz0n5;VKQc8d)$K|SUlcw z!ZAGFaXY;!w4*{7Zp2W$WAoCr9j6v~3hIW*SOeE#bv%J;@ILyYUmeHs#&Gn*+SnIc zVI|DNK-`ZmJX^=@IMEayQK1IH5*#N2>tadljnCphEQ{N$A6ZYJMt%YP@mExPCF(LO z7>_M*G%mpRumrY9bR17?>!zR{cR?@gZ%+(IP5D^sG<$vlmZE+I>VfO6A6Sp0I&cMp z(5s%~RL1H^-<;;y8ONhK;yy}YD20=#j?}I1I5C)vEVDD(=Ic=BPob9JGHUHT8kmlh zL3PZ98hK6R5@$GSX7f<@y^m`DDl%ZVkql6*31DmS1;{0#=e*r{bm0cn zCfb9o@DNr-Pd11;5Q*9o9Z;LI7rJmRYBO#@b#Mpz;BM3m979d{HPj5;M$OoR=5BLg zaW;S&4nW-)hPogDBQP1&KnAL#qfs+66V=gGs1961&B!g(!0ur=EXLPO?fRqgaMY3} zxGCty)|iCtQJZW&YH8j=P1!co$PS}s=s0Q$Poo;VhI+s6VK0nmX|9`Qor_wUrKk=b zwz|KhpoY(*UZ-oQk$N#K_1F)!DZ?-bYoR*W7PSO}uny*8H9U$D_#=j+PiynRsf*8% z&%$T%0w(GGk7#2aJOs5?i>#Yb9XN;@>DQc$k*gQjA2Tx|0_sQ3E>dg5)=7w%V7N4(mb`}|NN zjKC_`1ljOTZ`6HjkZ+u`3EjH!1_izq&X1_It9 zrSUjwq-RkBx@>)fS`y!mX6CA6!GJq5|1M6XP@x7#p=Mwn_QelTn0Oz`PaziQK5!jM~&o7EQVWA4eUT~ zJcgQ)v#9GHU>PjZ+3cONsOw#*4%J89mxAh8U-ZEVsHK_Xrl6j@g&NUGtbu1y4Le;- z$GlNf=!e>*k=6!Sj=a6idt*5H2<(GPP``%nqB=!JixI#Po5QpW>O?N-AQ7>OD{48~#$WUsiL(G=QHF#+4+ zK~zUdrJ5Uku>pBSd>*@?W-K2yg{M#*`Wd6p>1JlK2I_-U8(peK&A@mpg*jO8`+q(K ztS-#CbMBVTSmcJBMoElJ$EmPks+8UY0 z`@ZYJ`m6Am3jK2N?rC;+4QnIRQglR(s2>Jmwsiq&^KC-yp`DnDe_#vj)XTKD7&Vi5 zsDW-nb!2}p=3g`L6&2d0=TSYqiZ$>dYHD4*&4VM*Mc&lr{V|Aq0#?SQsQb6u`p>W) z`3=;AEAvhUVNKL`q_vxZrYIdXlCh{wHWjrL3s4un6-g2$+y2M#cQv4moK@=Rnoojs^c zS3a%aEA8~bB=UDK5APyla&iZnPw;&lN*+DPah9nbd$=jo7;GBML6+6Ig59xEy7>|= zL9OvB?1XQkruHss27bq2EI!2iUJperNnfmsV^Jf|M=jy|s7-hb-Kw}rK{q@?HRw$@ zHAPiWuU~Cc1IefvNx>4>12wh%P}dK`9XJImV(c(;e{0m9c^-9N26|%FFy>zkOrS!W zFUR_t^=;Jo1E>)n!%BD()$t!t9sU!wN4zr3?}k8(B5#VSABrA04z+|+P&4*<2J@dl z;d?4v7&P4c`fQBK)365Spk`nz>c%~&j-0_Nc-QLvg85EFqaN7O+QFKNp49ijl9=wM zpxvB_u{aTR<7U)_JFI(c{UOv;9=G`=)C}CT`R}L?&=XtlpJ`?w%o>kDMfne0)Qr1( zk2E9ALXB(@YA4low@u)A~%gC<@XDz;nk1ztWMwx*v!_nkN zkp1l>l2p_C|2l*T~HnBi{o%2>bkqA zO;|45`qJD`DKtG=EOtcmAF@Sudb)WTX45$7FR0Cxum^=#GlXtZF zN~}qK0NdgnoQSpgq1SFJ?#6dfOFeuN^WTNSD->Gbd2ENlFPR<>K|NqR>h(K>8qrbI z?mdmEcoBK!ow&(n=2oEEdmA<7KclV>ox-$Z6gI;RQ&@jZ%}pwT@OSh>pQ&ckgke?k zuGk4jqZ&SlrLY*&r|Z43DY{Vg{cXKo?`Gtau^4`Y1Mnb@z|d(FG=hcG%#AluBm4zJ z@GoqPLDS9J_rNCPSy&ynq4vUQtctfW6g_gxfNG%HYlT|cuE@4ger&qnolHR=JIFdh%v^A9kbywohS31d+M=!pgG*nBo>Ms^@e z=XUl}SVF~Ds1Xc$#r)+m3$?cUv6s$c3yhv^8XSq*JL6E-%|y-Q3VVJx>ODVT&!0kF ze*<;heGKLKj_(|Eq7G^=Bx6Zjf!dU7t^4fxZ|(V7bM1Yo4kV+dw7ad(!WeQl*2Hb7 zk)Ol)cnd>$zB6W?Ik6OV!#Y$?Pg$>`9&i`cp`zT~7pvlSoQ$Qg)&gT9_9Rb2ZMs#c zrP+ZR*cp5tFQHo%39p(CG(tV7Evm=8QM-8-YENv&_IMi;F=3&pe*ty<7950UF#{Ve z;tyHefI~2BvAKUPszYZNGymG9e^F5m{g#*!RzqFT6xE?Ys1c60`81p7qDHs|`PezT zQ0>&pHTO5h81gimFSNdg>hSqo=3kqk_)_!WF!UpDX7jE#ABi5+Pe-ls9P4`QK)w$( zlb*}W-vi|^lRO4n;VSgUYgq81L%lsd?$^u%TVQo6x?vPfwr<1#@-MLp-b8hz=yFr< zg<2XHYNP{D4}2BXq0^`iUPR4I)C%+EtB(!I-J2-rwY!e7SbU}Vya z8P%Z~s3lp6`X1zA2p+_Wcnt&bG3t8XRVI%_&3F=~=>6|c;Uy}zV?T_3-P|x2pC^A4 z)se@j2YRkH4fvsEEFLRh4-CRAjK+Cb33p=zevRev5o#c1)~H?9-=9JmD#B1bjYBom z8g=79)JSIA^XpJ=#ctHhowq(g-52tPS;9uBO*|O2)^jis_n`)KA6xN!r|4SK)3&Id z4MeSF25Rb;VTu|)!x_G41Yu2S0|5qF&TT} zfjs74CjvK^2BNS#`7@YWIEOxwRBmi z4$ejmWTDMBZgQI`+De5QI)>V0=TI|q12vL=P&c~XGWCh5k##3LAnKcPD8x4F=R@;N2a{0ubw}-; z2{z9|wf`xqopV?U-6h{PCwwr9iZIjzI-o}OoIRh3nh`gu=dWAOp{@(qV*Xl=#c=W_ zSQ!VRW^M}B!Ccg9c@#tR{$Hn{_qWJaGtxlR2S>*dTB1Dcg1fLEme^+gS$!~S zgu7AK9Y=NS0;;{=Py-8i$6ObT)%5;9L!l8Tx}q+474@DjLrw7)s0RKm&t=r9Z$f5|NeiDLQ^V+pw?<5vNp~> zEQ1%ZJ>JG(OnA>U*adaIht1QinWzqoMGb5gsw0a~GntQ?i4*TJ|2pvl6}rKB-{_C( zVRh7ntxz|n*?fj|E$aS#Hb0GO=bp`rePHejLABQ$18@LpiN=4x{3lX)g9`QZ3})h0 z%)k!2`FP+5*bb}jp%XX?)A1WjD#E9BFaK^#KJi0yfABv3S|Xo=zhmu>_^&LC+|TUd zc565H0rMx)U#Ol>`q*@20lq-K+~&m&n%Bk~Yf&GGdJ9rfACyhl0gqz^toVs}3t~|t zZi;&CQc=$tiJDpWbP6sCYcLcKpr+~?YHI&Q%}n4S^L|%DosY+&Mfgv2OeBBquzBEI z)B{#wG2DjQd^^zt_h30Zh-LKte?>tJUPfK`#9Hi#Y1j*EQr{fap-k&c)Q9K|>qXRv z0zWnFB;YvmMyUIDVk%y;dHiSkgNOC+Lm`sM+m7sD|rfB&K2nPDXv< z)}sgRw|;6piJsJ-L5=td`rv2*W>Y%;o29_Y6CEg|468>E0k53;Vwk_4IBz_@cwf;JW5e;}i;St5fHOOb;e~7J| zD2>6y078c!=gVRkwxBMgpq9TE@kjC;BGT50vBV$5IpQ$qVhf(f^LtbAHWg)w&Xk)F z+7CJw5!DMybd~c(xoIBi=tG>RJQt%eh*(DODR92VQ}{CR384+B!-IN#qIGQ04~@S# zjq0=dHldHjuUs?{>r(#*u27ud!2ux>Lk|C=bD|L<2%co}u99L+bRQ zDm>Ou_>SCtfFEfj+R4W#m*An_VmI=Vls}+6iuj3q0lr2|rQ8GykGm9B+B^`m$S2$U zN6POLXNZ@nTSpuxMicvr*!9T%#44g1=R66$eoKk7)J-BT6YIz`aRk9P z%L&6=LPsN_Hf{Yy?u*T^J&{LzMARbE2|IrNP$bz)R3kjp0DejQM!ZP;OP!9oL^utW zr>+I%3#g+TMq_2p>Gwhk@smAA(Ya^K(VYMOse1Q&B>b}b|M3^4P1MD4;rn=>{16_) z@G&G4pYkNsp%0Oc9fUWrkXXd|R#`Vh@E{(%&FQuz$=DP?|B{{P6Z zr9e89%(Q5@@qpMxT?UbA zZ|IHuS|~WYD3_;0Rq=HqfY9+ZF_vNt%OdwpuOhU&-&aKDywEwD;=s0O` zYU6iAZCk$^XA$+OYf7{ycGz>{@e28NBAd`rhiFz%;vcg)A5Zy`z5XApMZVSM?l&k@ zq+&9$nCL(}rY@97qTGhqOz3!IaDL$2OE>UcA# znV&VO_exM^t2}$Q~sOscAJkU*D;ECOmwpKs?*^?8*`{@ zNqI{_4V#*}nnV@bzW%4v-KXx`$#s6b>fZQK#b-oP(?M{O3r#iPAJO6+P_MjdR}_ zP$8v$OnibXF0NtS#OS#AxHzv4X=AfvQpco?9GjVzoi(PRtL@?Z%#18on{gSL!_vo$ zNOv_JmQF?gp@kJm!?LnRq-A8r4$2zQH22zo8M!%W;Z@tDk4ztvmYqI0rp3gDu2B<* zre|lTPsolPHPICxTQ_%O+P1(RG4>)orgK*M;EZfno!ErfU7ZJxEnmd7>+tx`E0u7y X%zANTZs+7Gx%rFg@4B}rq1OKZX`4sK delta 9322 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 F;6Dy??C1ah diff --git a/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.po b/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.po index d0098968e..a136c80fa 100644 --- a/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.po @@ -2,20 +2,21 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" "POT-Creation-Date: 2024-08-11 11:13+0100\n" -"PO-Revision-Date: 2024-07-17 01:27\n" -"Last-Translator: \n" +"PO-Revision-Date: 2024-08-14 00:56+0100\n" +"Last-Translator: Hélio Guilherme \n" "Language-Team: Japanese\n" "Language: ja_JP\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: pygettext.py 1.5\n" "Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: pygettext.py 1.5\n" "X-Crowdin-Project: robotframework-ride\n" "X-Crowdin-Project-ID: 637294\n" "X-Crowdin-Language: ja\n" "X-Crowdin-File: /master/src/robotide/localization/RIDE.pot\n" "X-Crowdin-File-ID: 14\n" +"X-Generator: Poedit 3.4.4\n" #: /home2/helio/github/RIDE/tools/../src/robotide/application/application.py:396 msgid "Found Robot Framework version %s from %s." @@ -631,11 +632,11 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:48 msgid "Move Rows Up | Move Rows Up | Alt-Up\n" -msgstr "Move Rows Up | Move Rows Up | Move Rows Up | Alt-Up\n" +msgstr "Move Rows Up | Move Rows Up | Alt-Up\n" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:49 msgid "Move Rows Down | Move Rows Down | Alt-Down\n" -msgstr "Move Rows | Move Rows Down | Alt-Down\n" +msgstr "Move Rows Down| Move Rows Down | Alt-Down\n" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:50 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:66 @@ -647,8 +648,8 @@ msgid "" "Content Assistance (Ctrl-Space or Ctrl-Alt-Space) | Show possible keyword " "and variable completions | | | POSITION-70\n" msgstr "" -"コンテンツ支援 (Ctrl-SpaceまたはCtrl-Alt-Space) | キーワードと変数補完を表" -"示| | | POSITION-70\n" +"コンテンツ支援 (Ctrl-SpaceまたはCtrl-Alt-Space) | キーワードと変数補完を表示 " +"| | | POSITION-70\n" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:88 msgid "" diff --git a/src/robotide/localization/ro_RO/LC_MESSAGES/RIDE.mo b/src/robotide/localization/ro_RO/LC_MESSAGES/RIDE.mo index 20eef6d44d4e077e8f8986562f68e36fd75ee695..94ef12542259dca80b99ceea0ff37e14c93a3754 100644 GIT binary patch delta 12857 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 delta 9696 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\n" "Language-Team: Romanian\n" "Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: pygettext.py 1.5\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && " "n%100<20)) ? 1 : 2);\n" +"Generated-By: pygettext.py 1.5\n" "X-Crowdin-Project: robotframework-ride\n" "X-Crowdin-Project-ID: 637294\n" "X-Crowdin-Language: ro\n" "X-Crowdin-File: /master/src/robotide/localization/RIDE.pot\n" "X-Crowdin-File-ID: 14\n" +"X-Generator: Poedit 3.4.4\n" #: /home2/helio/github/RIDE/tools/../src/robotide/application/application.py:396 msgid "Found Robot Framework version %s from %s." @@ -649,7 +650,7 @@ msgstr "Mută rândurile sus | Mută rândurile în sus | Alt-Up\n" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:49 msgid "Move Rows Down | Move Rows Down | Alt-Down\n" -msgstr "Mută rândurile în jos | Mută rândurile Jos | Alt-Jos\n" +msgstr "Mută rândurile în jos | Mută rândurile Jos | Alt-Down\n" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:50 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:66 @@ -1262,7 +1263,7 @@ msgstr "Du-te la Definitional\tCtrl-B" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:101 msgid "Undo\tCtrl-Z" -msgstr "x \tCtrl-Z" +msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:102 msgid "Redo\tCtrl-Y" @@ -1415,7 +1416,7 @@ msgstr "Mutați \tCtrl-up" #: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:667 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:768 msgid "Move Down\tCtrl-Down" -msgstr "Mută Down\tCtrl-Jos" +msgstr "Mută Down\tCtrl-Down" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:100 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:233 diff --git a/src/robotide/localization/ru_RU/LC_MESSAGES/RIDE.mo b/src/robotide/localization/ru_RU/LC_MESSAGES/RIDE.mo index 0646d0fe1aef45b044bd761b9544e40d5b4cd67a..953192d8d5de28084a218c2b5feac946563a299c 100644 GIT binary patch delta 12638 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\n" "Language-Team: Russian\n" "Language: ru_RU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: pygettext.py 1.5\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 " "&& n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 " "&& n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" +"Generated-By: pygettext.py 1.5\n" "X-Crowdin-Project: robotframework-ride\n" "X-Crowdin-Project-ID: 637294\n" "X-Crowdin-Language: ru\n" "X-Crowdin-File: /master/src/robotide/localization/RIDE.pot\n" "X-Crowdin-File-ID: 14\n" +"X-Generator: Poedit 3.4.4\n" #: /home2/helio/github/RIDE/tools/../src/robotide/application/application.py:396 msgid "Found Robot Framework version %s from %s." @@ -543,10 +544,10 @@ msgid "" " " msgstr "" "[Navigate]\n" -" ! o &Back | Вернуться к предыдущему местоположению в дереве | Alt-%s " -"| ART_GO_BACK\n" -" ! o &Вперед | Перейти к следующему местоположению в дереве | Alt-%s " -"| ART_GO_FORWARD\n" +" !Вернуться | Вернуться к предыдущему местоположению в дереве | Alt-" +"%s | ART_GO_BACK\n" +" !Двигаться вперед | Перейти к следующему местоположению в дереве | " +"Alt-%s | ART_GO_FORWARD\n" " " #: /home2/helio/github/RIDE/tools/../src/robotide/controller/ui/treecontroller.py:55 @@ -2394,7 +2395,7 @@ msgstr "!Поиск неиспользованных ключевых слов | #: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:68 msgid "!Manage Plugins | | | | POSITION-81\n" -msgstr "!Управление плагинами | | | | | POSITION-81\n" +msgstr "!Управление плагинами | | | | POSITION-81\n" #: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:69 msgid "!View All Tags | | F7 | | POSITION-82\n" diff --git a/src/robotide/localization/uk_UA/LC_MESSAGES/RIDE.mo b/src/robotide/localization/uk_UA/LC_MESSAGES/RIDE.mo index b0ea489f611eb7b9e0cbc4344572d5cb6755f5e1..8e3b68c5bd927b6633dfbf85969a0a1cfd12b4fe 100644 GIT binary patch delta 12265 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 V?i!LlBJaZ4;l+17?^|T_{{YtAe@FlT delta 9219 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 DV_h|E diff --git a/src/robotide/localization/uk_UA/LC_MESSAGES/RIDE.po b/src/robotide/localization/uk_UA/LC_MESSAGES/RIDE.po index 3ec282a1a..f617bc7a6 100644 --- a/src/robotide/localization/uk_UA/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/uk_UA/LC_MESSAGES/RIDE.po @@ -2,22 +2,23 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" "POT-Creation-Date: 2024-08-11 11:13+0100\n" -"PO-Revision-Date: 2024-07-17 01:27\n" -"Last-Translator: \n" +"PO-Revision-Date: 2024-08-14 01:30+0100\n" +"Last-Translator: Hélio Guilherme \n" "Language-Team: Ukrainian\n" "Language: uk_UA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: pygettext.py 1.5\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 " "&& n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 " "&& n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" +"Generated-By: pygettext.py 1.5\n" "X-Crowdin-Project: robotframework-ride\n" "X-Crowdin-Project-ID: 637294\n" "X-Crowdin-Language: uk\n" "X-Crowdin-File: /master/src/robotide/localization/RIDE.pot\n" "X-Crowdin-File-ID: 14\n" +"X-Generator: Poedit 3.4.4\n" #: /home2/helio/github/RIDE/tools/../src/robotide/application/application.py:396 msgid "Found Robot Framework version %s from %s." @@ -2314,7 +2315,7 @@ msgstr "!View всі Теги | | F7 | | POSITION-82\n" #: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:70 msgid "!Preferences | | | | POSITION-99\n" -msgstr "!Preferences | | | POSITION-99\n" +msgstr "!Preferences | | | | POSITION-99\n" #: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:71 msgid "[Help]\n" diff --git a/src/robotide/ui/filedialogs.py b/src/robotide/ui/filedialogs.py index b4cb1987f..486e0fafe 100644 --- a/src/robotide/ui/filedialogs.py +++ b/src/robotide/ui/filedialogs.py @@ -30,11 +30,12 @@ from ..widgets import Label, RIDEDialog try: from robot.conf.languages import Language -except ImportError as e: - import sys - sys.stderr.write(f"Trying to import robot's languages module returned error: {repr(e)}\n") - sys.stderr.write("You need to have Robot Framework v6.0 or newer to use languages in test suites.\n") - Language = None +except ImportError: + try: + from robotide.lib.compat.parsing.languages import Language + except ImportError: + Language = None + _ = wx.GetTranslation # To keep linter/code analyser happy builtins.__dict__['_'] = wx.GetTranslation diff --git a/src/robotide/version.py b/src/robotide/version.py index 7de3717c0..a410acfd8 100644 --- a/src/robotide/version.py +++ b/src/robotide/version.py @@ -15,4 +15,4 @@ # # Automatically generated by `tasks.py`. -VERSION = 'v2.1dev67' +VERSION = 'v2.1dev68' From 5e91a3fb589072917fe0315f604a73bc6743bd54 Mon Sep 17 00:00:00 2001 From: HelioGuilherme66 Date: Wed, 14 Aug 2024 02:29:30 +0100 Subject: [PATCH 2/4] Add Korean language support for UI. --- CHANGELOG.adoc | 1 + README.adoc | 2 +- src/robotide/application/releasenotes.py | 2 + src/robotide/lib/compat/parsing/languages.py | 45 + src/robotide/localization/TRANSLATORS.adoc | 2 +- .../localization/ko_KR/LC_MESSAGES/RIDE.mo | Bin 0 -> 1215 bytes .../localization/ko_KR/LC_MESSAGES/RIDE.po | 2770 +++++++++++++++++ tools/geni18n.py | 5 +- 8 files changed, 2823 insertions(+), 4 deletions(-) create mode 100644 src/robotide/localization/ko_KR/LC_MESSAGES/RIDE.mo create mode 100644 src/robotide/localization/ko_KR/LC_MESSAGES/RIDE.po diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 4de98db18..abe9c7dd9 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -11,6 +11,7 @@ and this project adheres to http://semver.org/spec/v2.0.0.html[Semantic Versioni === Added +- Added Korean language support for UI, experimental. - Added option ``caret style`` to change insert caret to `block` or `line` in Text Editor, by editing ``settings.cfg``. The color of the caret is the same as `setting` and will be adjusted for better contrast with the background. diff --git a/README.adoc b/README.adoc index 64ef86415..e5e02e56f 100644 --- a/README.adoc +++ b/README.adoc @@ -40,7 +40,7 @@ Likewise, the current version of wxPython, is 4.2.1, but RIDE is known to work w `pip install -U robotframework-ride` -(3.8 <= python <= 3.12) Install current development version (**2.1dev67**) with: +(3.8 <= python <= 3.12) Install current development version (**2.1dev68**) with: `pip install -U https://github.com/robotframework/RIDE/archive/master.zip` diff --git a/src/robotide/application/releasenotes.py b/src/robotide/application/releasenotes.py index d8b4cace7..cb310ac71 100644 --- a/src/robotide/application/releasenotes.py +++ b/src/robotide/application/releasenotes.py @@ -158,6 +158,7 @@ def set_content(self, html_win, content):
  • This version supports Python 3.8 up to 3.12.
  • There are some changes, or known issues:
    • ❌ - Removed support for Python 3.6 and 3.7
    • +
    • ✔ - Added Korean language support for UI, experimental.
    • ✔ - Added caret style to change insert caret to 'block' or 'line' in Text Editor, by editing settings.cfg. The color of the caret is the same as 'setting' and will be adjusted for better contrast with the background.
    • @@ -196,6 +197,7 @@ def set_content(self, html_win, content):

    New Features and Fixes Highlights

      +
    • Added Korean language support for UI, experimental.
    • Fixed wrong item selection, like Test Suite, when doing right-click actions in Project Explorer.
    • Fixed delete variable from Test Suite settings remaining in Project Explorer.
    • Added caret style to change insert caret to 'block' or 'line' in Text Editor, by editing diff --git a/src/robotide/lib/compat/parsing/languages.py b/src/robotide/lib/compat/parsing/languages.py index b0b12aa63..1a6a3f06f 100644 --- a/src/robotide/lib/compat/parsing/languages.py +++ b/src/robotide/lib/compat/parsing/languages.py @@ -1300,3 +1300,48 @@ class Ja(Language): but_prefixes = ['ただし', '但し'] true_strings = ['真', '有効', 'はい', 'オン'] false_strings = ['偽', '無効', 'いいえ', 'オフ'] + + +class Ko(Language): + """Korean + + New in NEXT Robot Framework after 7.0.1. + """ + settings_header = '설정' + variables_header = '변수' + test_cases_header = '테스트 사례' + tasks_header = '작업' + keywords_header = '키워드' + comments_header = '의견' + library_setting = '라이브러리' + resource_setting = '자료' + variables_setting = '변수' + name_setting = '이름' + documentation_setting = '문서' + metadata_setting = '메타데이터' + suite_setup_setting = '스위트 설정' + suite_teardown_setting = '스위트 중단' + test_setup_setting = '테스트 설정' + task_setup_setting = '작업 설정' + test_teardown_setting = '테스트 중단' + task_teardown_setting = '작업 중단' + test_template_setting = '테스트 템플릿' + task_template_setting = '작업 템플릿' + test_timeout_setting = '테스트 시간 초과' + task_timeout_setting = '작업 시간 초과' + test_tags_setting = '테스트 태그' + task_tags_setting = '작업 태그' + keyword_tags_setting = '키워드 태그' + setup_setting = '설정' + teardown_setting = '중단' + template_setting = '템플릿' + tags_setting = '태그' + timeout_setting = '시간 초과' + arguments_setting = '주장' + given_prefixes = ['주어진'] + when_prefixes = ['때'] + then_prefixes = ['보다'] + and_prefixes = ['그리고'] + but_prefixes = ['하지만'] + true_strings = ['참', '네', '켜기'] + false_strings = ['거짓', '아니오', '끄기'] diff --git a/src/robotide/localization/TRANSLATORS.adoc b/src/robotide/localization/TRANSLATORS.adoc index 3db52cab5..ddec9fce6 100644 --- a/src/robotide/localization/TRANSLATORS.adoc +++ b/src/robotide/localization/TRANSLATORS.adoc @@ -3,5 +3,5 @@ ifdef::env-github[:outfilesuffix: .adoc] - https://github.com/HelioGuilherme66[Hélio Guilherme]: Portuguese, Brazilian Portuguese - https://github.com/JFoederer[J. Foederer]: Dutch -- Nataliya Umanska: Ukrainian +- Hyeonho Kang: Korean - Unknown: Pirates diff --git a/src/robotide/localization/ko_KR/LC_MESSAGES/RIDE.mo b/src/robotide/localization/ko_KR/LC_MESSAGES/RIDE.mo new file mode 100644 index 0000000000000000000000000000000000000000..a894db0b4cca5141aea93cc1c56c8a107cb3f887 GIT binary patch literal 1215 zcmZ`&OKVd>6dvCia3j)%xHv@wMds$wXzQ&NZJIu4wINnhU_4BAP2~>n~(+MPW)fnL&$#Q zb!3zG6ZtZ-5jQ&h$lb^(WRw2@`6%*xWRxJ7PWB;;nVt_KjGi$pvuOwL3zra*DDcb_ zr~(J!xsJ!-4wt?oJYWjQFn3F2JeO+(5(VbvIgE)sNpmVn+=KMUKoW97!Wf388Ah8) znBa2ebGRxL_eokz3I&6b75R*iQ=27D`jC^N2q%4uTq}r~W*hBt!NQkTQrzYlMMtvqMzd!dq^Xo^7oyV1@=$7=ruiMmY>Eyr#cha1VsRSjq0u-*VshT(7TTt~prwBr`IEONL|;OMxOZ#ym(geo$}wKAf35!W|o zKqojW+Au04XWpjQhADAtG#$D!awWOdZ`6u}62ep5!_wsv_NMq<6)w5V@p>UsVAAKR z@A||b?b*sRE#|nSNiQR^j+eKgXVOujlshe%O9zE4`Zjo_#;@NO>xJfL-zg6|`yhI{ zH#EdOE^!oD+F!PzRL*l{>RP2TM6I)-n=~QC3`*11jQ>5@ztZT)fDPxmx?|_#+ces9 zF%#J49&}vXZn%h3=Q8ZeOt^7)cw%8!WSHyRV+xNfZ0?v<66%kojapGtr?nY#VkyD1 zj)E>LZpA}H&%doLt?8vI)K&uhD$q*-)L&H4QLoHzRF{F&9tC<~7876Bp9Za5{drN( zEkf;nwf?Y5^s}mdwhFb6vl}a4jDTJY>XlU;ylPzj+M6|~&Am1Y5c=g46RWI2z4ER$ w_W&an*{S#EQ`qVZAA^4WSO<&v96&FB)s=bu@YANse_O=fR&g^s>$IJ}0ozog+yDRo literal 0 HcmV?d00001 diff --git a/src/robotide/localization/ko_KR/LC_MESSAGES/RIDE.po b/src/robotide/localization/ko_KR/LC_MESSAGES/RIDE.po new file mode 100644 index 000000000..826aa2a95 --- /dev/null +++ b/src/robotide/localization/ko_KR/LC_MESSAGES/RIDE.po @@ -0,0 +1,2770 @@ +msgid "" +msgstr "" +"Project-Id-Version: robotframework-ride\n" +"POT-Creation-Date: 2024-08-09 23:52+0100\n" +"PO-Revision-Date: 2024-08-14 02:11+0100\n" +"Last-Translator: Hélio Guilherme \n" +"Language-Team: Korean\n" +"Language: ko_KR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: pygettext.py 1.5\n" +"X-Crowdin-Project: robotframework-ride\n" +"X-Crowdin-Project-ID: 637294\n" +"X-Crowdin-Language: ko\n" +"X-Crowdin-File: /master/src/robotide/localization/RIDE.pot\n" +"X-Crowdin-File-ID: 14\n" +"X-Generator: Poedit 3.4.4\n" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/application.py:396 +msgid "Robot Framework version %s from %s." +msgstr "Robot Framework 버전을 %s 에서 %s 찾았습니다." + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:54 +#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:57 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:65 +msgid "Help" +msgstr "도움" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:54 +#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:71 +msgid "Release Notes" +msgstr "출시 노트" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:56 +msgid "Show the release notes" +msgstr "출시 노트 보기" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:57 +#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:77 +msgid "Offline Change Log" +msgstr "오프라인 출시 노트" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:59 +msgid "Show the offline CHANGELOG" +msgstr "오프라인 출시 노트 보기" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:78 +msgid "Check the online version at " +msgstr "온라인 버전을 확인하기 " + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/restartutil.py:31 +msgid "Re-open RIDE for Language Change" +msgstr "언어 변경을 위해선 RIDE를 다시 시작해야 합니다." + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/restartutil.py:32 +msgid "Language change will only be correct after re-opening RIDE." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/restartutil.py:33 +msgid "Do you want to CLOSE RIDE now?" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/restartutil.py:53 +msgid "Completed Language Change" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/restartutil.py:54 +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:188 +msgid "You should close this RIDE (Process ID = " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:110 +msgid "New development version is available." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:110 +msgid "Upgrade?" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:111 +msgid "You may install version %s with:" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:112 +msgid "Click OK to Upgrade now!" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:113 +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:221 +msgid "" +"After upgrade you will see another dialog informing to close this RIDE " +"instance." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:121 +msgid "No Upgrade Available" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:121 +msgid "You have the latest version of RIDE." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:122 +msgid " Have a nice day :)" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:179 +msgid "An error occurred when installing new version" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:179 +msgid "Failed to Upgrade" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:188 +msgid "Completed Upgrade" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:208 +msgid "Update available" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:216 +msgid " available from " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:216 +msgid "New version " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:217 +msgid "See this version " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:219 +msgid "You can update with the command:" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:220 +msgid "Or, click Upgrade Now" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:222 +msgid "See the latest development " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:227 +msgid "" +"I'm using another method for RIDE updates\n" +" and do not need automatic update checks" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:232 +msgid "remind me later" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:238 +msgid "Upgrade Now" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:59 +msgid "Started RIDE %s using python version %s with wx version %s in %s." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:72 +msgid "Thanks all RIDE translators: %s" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:74 +msgid "RIDE -- Robot Framework Test Data Editor" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:76 +msgid "RIDE %s running on Python %s." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:77 +msgid "RIDE is a test data editor for %s." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:78 +msgid "For more information, see project pages at %s." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:79 +msgid "Some of the icons are from %s." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:80 +msgid "" +"%s the maintainer of the project thanks the original authors and all users " +"and collaborators." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:81 +msgid "" +"A special thanks to %s for having sponsored the development of translated " +"test suites content compatibility with %s Version 6.1, in their %s." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:424 +msgid "Log options" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:432 +msgid "Output directory: " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:450 +msgid "Add suite name to log names" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:453 +msgid "Add timestamp to log names" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:456 +msgid "Save Console and Message logs" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:474 +msgid "Select Logs Directory" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:496 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:483 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:487 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:628 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:571 +msgid "Arguments" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:508 +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:534 +msgid "Arguments for the test run. Arguments are space separated list." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:553 +msgid "Does not execute - help or version option given" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:558 +msgid "Unknown option(s):" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:564 +msgid "Tests filters" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:573 +msgid "Only run tests with these tags:" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:576 +msgid "Skip tests with these tags:" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:672 +msgid "Script to run tests:" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:99 +msgid "Stop a running test" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:100 +msgid "Step over" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:130 +msgid "A plugin for running tests from within RIDE" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:157 +msgid "Run" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:226 +msgid "Run Tests" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:226 +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:230 +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:236 +#: /home2/helio/github/RIDE/tools/../src/robotide/log/log.py:86 +#: /home2/helio/github/RIDE/tools/../src/robotide/parserlog/parserlog.py:85 +#: /home2/helio/github/RIDE/tools/../src/robotide/postinstall/desktopshortcut.py:54 +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/searchtests.py:41 +#: /home2/helio/github/RIDE/tools/../src/robotide/spec/specimporter.py:36 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:53 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:799 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:811 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:41 +msgid "Tools" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:228 +msgid "Run the selected tests" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:230 +msgid "Run Tests with Debug" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:233 +msgid "Run the selected tests with Debug" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:236 +msgid "Stop Test Run" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:320 +msgid "[ SENDING STOP SIGNAL ]\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:327 +msgid "[ SENDING PAUSE SIGNAL ]\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:333 +msgid "[ SENDING CONTINUE SIGNAL ]\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:339 +msgid "[ SENDING STEP NEXT SIGNAL ]\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:345 +msgid "[ SENDING STEP OVER SIGNAL ]\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:378 +msgid "command: %s\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:448 +msgid "" +"There are unsaved modifications.\n" +" Do you want to save all changes and run the tests?" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:450 +msgid "Unsaved Modifications" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:459 +msgid "" +"No tests selected. \n" +"Continue anyway?" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:461 +msgid "No tests selected" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:523 +msgid "" +"\n" +"Test finished {}" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:557 +msgid "Messages log exceeded 80% of process memory, stopping for now..." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:715 +msgid "Start" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:716 +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:719 +msgid "Start robot" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:717 +msgid "Start running the robot test suite" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:718 +msgid "Debug" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:720 +msgid "Start running the robot test suite with DEBUG loglevel" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:722 +#: /home2/helio/github/RIDE/tools/../src/robotide/run/ui.py:29 +msgid "Stop" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:726 +msgid "Pause" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:728 +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:729 +msgid "Pause test execution" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:730 +msgid "Continue" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:733 +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:734 +msgid "Continue test execution" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:735 +msgid "Next" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:736 +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:737 +msgid "Step next" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:762 +msgid "Execution Profile: " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:765 +msgid "Choose which method to use for running the tests" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:772 +msgid "Open Logs Directory" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:774 +msgid "View All Logs in Explorer" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:775 +msgid " Report" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:776 +msgid "View Robot Report in Browser (CtrlCmd-R)" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:778 +msgid " Log" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:779 +msgid "View Robot Log in Browser (CtrlCmd-L)" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:786 +msgid " Autosave " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:787 +msgid "Automatically save all changes before running" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:792 +msgid " Pause after failure " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:793 +msgid "Automatically pause after failing keyword" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:901 +msgid "Console log" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:905 +msgid "Message log" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1028 +msgid "Starting test:" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1033 +msgid "Ending test:" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1041 +msgid "UNKNOWN STATUS:" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1069 +msgid "<< PAUSED >>" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1074 +msgid "<< CONTINUE >>" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1115 +msgid "" +"There isn't logs directory. \n" +"Please, run the tests and try again" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1117 +msgid "No logs directory" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1203 +msgid "elapsed time: %s pass: %s skip: %s fail: %s" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1234 +msgid " current keyword: " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/controller/ui/treecontroller.py:41 +msgid "" +"[Navigate]\n" +" !Go &Back | Go back to previous location in tree | Alt-%s | " +"ART_GO_BACK\n" +" !Go &Forward | Go forward to next location in tree | Alt-%s | " +"ART_GO_FORWARD\n" +" " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/controller/ui/treecontroller.py:55 +msgid "Add Tag to selected" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/controller/ui/treecontroller.py:55 +#: /home2/helio/github/RIDE/tools/../src/robotide/controller/ui/treecontroller.py:57 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/listeditor.py:39 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:644 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 +msgid "Edit" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/controller/ui/treecontroller.py:57 +msgid "Clear Selected" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/controller/ui/treecontroller.py:70 +msgid "Add Tag To Selected" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/controller/ui/treecontroller.py:70 +msgid "Enter Tag Name" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:31 +msgid "[Edit]\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:32 +msgid "&Undo | Undo last modification | Ctrlcmd-Z\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:33 +msgid "&Redo | Redo modification | Ctrlcmd-Y\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:35 +msgid "Cu&t | Cut | Ctrlcmd-X\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:36 +msgid "&Copy | Copy | Ctrlcmd-C\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:37 +msgid "&Paste | Paste | Ctrlcmd-V\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:38 +msgid "&Insert | Insert | Shift-Ctrl-V\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:39 +msgid "&Delete | Delete | Del\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:40 +msgid "Comment Rows | Comment selected rows | Ctrlcmd-3\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:41 +msgid "Comment Cells | Comment cells with # | Ctrlcmd-Shift-3\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:42 +msgid "Uncomment Rows | Uncomment selected rows | Ctrlcmd-4\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:43 +msgid "Uncomment Cells | Uncomment cells with # | Ctrlcmd-Shift-4\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:44 +msgid "Insert Cells | Insert Cells | Ctrlcmd-Shift-I\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:45 +msgid "Delete Cells | Delete Cells | Ctrlcmd-Shift-D\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:46 +msgid "Insert Rows | Insert Rows | Ctrlcmd-I\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:47 +msgid "Delete Rows | Delete Rows | Ctrlcmd-D\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:48 +msgid "Move Rows Up | Move Rows Up | Alt-Up\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:49 +msgid "Move Rows Down | Move Rows Down | Alt-Down\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:50 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:66 +msgid "[Tools]\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:51 +msgid "" +"Content Assistance (Ctrl-Space or Ctrl-Alt-Space) | Show possible keyword " +"and variable completions | | | POSITION-70\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:88 +msgid "" +"The default editor plugin. Also known as Grid or Cell Editor.\n" +"\n" +" This plugin implements editors for the various items of Robot Framework\n" +" test data.\n" +" " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:95 +msgid "Editor" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:27 +msgid "" +"Possible pipes in the value must be escaped with a backslash like '\\|'." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:28 +msgid "Separate tags with a pipe character like 'tag | second tag | 3rd'." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:29 +msgid "" +"Separate possible arguments with a pipe character like 'My Keyword | arg 1 | " +"arg 2'." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:30 +msgid "" +"Use time syntax like '1min 10s' or '2 hours' or give the value as seconds.\n" +"Before Robot v3.0.1 an optional message could have been specified like '3 " +"minutes | My message here'." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:33 +msgid "" +"Specify the arguments separated with a pipe character like '${arg1} | " +"${arg2}'.\n" +"Default values are given using equal sign and the last argument can be a " +"list variable.\n" +"Example: '${arg1} | ${arg2}=default value | @{rest}'.\n" +"Note. You can use variable shortcuts in this field." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:37 +msgid "" +"Alias can be used to import same library multiple times with different " +"names.\n" +"Alias is prepended with: " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:39 +msgid "" +" . Note that since Robot v6.0, imports with old WITH NAME are replaced by AS." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:41 +msgid "Give name and value of the variable." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:42 +msgid "" +"Give name and value of the variable. Input list variable items into separate " +"cells." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:44 +msgid "" +"Give name and value of the variable. Input dictionary items into separate " +"cells." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:45 +msgid "Individual items must be in format `key=value`" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:46 +msgid "" +"Give name, optional arguments and optional alias of the library to import." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:47 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:49 +msgid "Separate multiple arguments with a pipe character like 'arg 1 | arg 2'." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:48 +msgid "Give path and optional arguments of the variable file to import." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:50 +msgid "Give path to the resource file to import." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:51 +msgid "Existing resources will be automatically loaded to the resource tree." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:52 +msgid "Give the documentation." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:52 +msgid "New resources must be created separately." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:53 +msgid "Simple formatting like *bold* and _italic_ can be used." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:54 +msgid "Additionally, URLs are converted to clickable links." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:55 +msgid "These tags are set to all test cases in this test suite." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:56 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:61 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:65 +msgid "Inherited tags are not shown in this view." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:57 +msgid "" +"These tags are set to all test cases in this test suite unless test cases " +"have their own tags." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:59 +msgid "" +"These tags are applied to all test cases in this test suite. This field " +"exists since Robot Framework 6.0 and will replace Force and Default Tags " +"after version 7.0." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:63 +msgid "" +"These tags are set to this test case in addition to Force Tags and they " +"override possible Default Tags." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:66 +msgid "" +"This keyword is executed before executing any of the test cases or lower " +"level suites." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:68 +msgid "" +"This keyword is executed after all test cases and lower level suites have " +"been executed." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:70 +msgid "" +"This keyword is executed before every test case in this suite unless test " +"cases override it." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:72 +msgid "" +"This keyword is executed after every test case in this suite unless test " +"cases override it." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:74 +msgid "" +"This keyword is executed before other keywords in this test case or keyword." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:75 +msgid "In test cases, overrides possible Test Setup set on the suite level." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:76 +msgid "Setup in keywords exists since Robot v7.0." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:77 +msgid "" +"This keyword is executed after other keywords in this test case or keyword " +"even if the test or keyword fails." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:79 +msgid "In test cases, overrides possible Test Teardown set on the suite level." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:81 +msgid "Specifies the default template keyword used by tests in this suite." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:82 +msgid "" +"The test cases will contain only data to use as arguments to that keyword." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:83 +msgid "Specifies the template keyword to use." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:84 +msgid "" +"The test itself will contain only data to use as arguments to that keyword." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:86 +msgid "" +"Specify the return value. Use a pipe character to separate multiple values." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:89 +msgid "" +"Maximum time test cases in this suite are allowed to execute before aborting " +"them forcefully." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:90 +msgid "Can be overridden by individual test cases using Timeout setting." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:91 +msgid "" +"Maximum time this test/keyword is allowed to execute before aborting it " +"forcefully." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:92 +msgid "" +"With test cases this setting overrides Test Timeout set on the suite level." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:93 +msgid "Give a name and a value for the suite metadata." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:94 +msgid "Give a name for the new test case." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:95 +msgid "Give a name and arguments for the new user keyword." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:96 +msgid "Give a name for the new user keyword." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:72 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:483 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:571 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:724 +msgid "Comment" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:123 +msgid "Scalar Variable" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:131 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:150 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:170 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:196 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:548 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:571 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 +#: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 +msgid "Name" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:131 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:151 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:171 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:549 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:483 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:724 +msgid "Value" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:143 +msgid "List Variable" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:163 +msgid "Dictionary Variable" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:187 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:572 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:651 +msgid "Library" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:197 +msgid "Alias" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:197 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:223 +msgid "Args" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:216 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:572 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:666 +msgid "Variables" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:222 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:240 +msgid "Path" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:235 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:572 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:658 +msgid "Resource" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:253 +#: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 +msgid "Documentation" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:302 +msgid "Force Tags" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:315 +msgid "Default Tags" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:328 +msgid "Test Tags" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:341 +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:61 +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:85 +msgid "Tags" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:369 +msgid "Suite Setup is run before any tests" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:374 +msgid "Suite Setup" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:387 +msgid "Suite Teardown" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:401 +msgid "Test Setup" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:415 +msgid "Test Teardown" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:428 +msgid "Setup" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:442 +msgid "Teardown" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:456 +msgid "Template" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:470 +msgid "Test Template" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:499 +msgid "Return Value" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:516 +msgid "Test Timeout" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:530 +msgid "Timeout" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:543 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:724 +msgid "Metadata" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:562 +msgid "New Test Case" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:587 +msgid "Copy User Keyword" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:616 +msgid "New User Keyword" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editors.py:163 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editors.py:396 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:195 +msgid " (READ ONLY)" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editors.py:225 +msgid "Settings" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editors.py:346 +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:61 +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:85 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 +#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:143 +msgid "Source" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editors.py:383 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:207 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:476 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:741 +msgid "Find Usages" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/fieldeditors.py:191 +msgid "Columns" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/fieldeditors.py:195 +msgid "" +"Number of columns that are shown in this editor. Selected value is stored " +"and used globally." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:86 +msgid "Delete Cells\tCtrl-Shift-D" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:86 +msgid "Insert Cells\tCtrl-Shift-I" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:87 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:358 +msgid "Insert Rows\tCtrl-I" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:87 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:359 +msgid "Delete Rows\tCtrl-D" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:88 +msgid "Copy\tCtrl-C" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:88 +msgid "Cut\tCtrl-X" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:88 +msgid "Select All\tCtrl-A" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:89 +msgid "Delete\tDel" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:89 +msgid "Insert\tCtrl-Shift-V" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:89 +msgid "Paste\tCtrl-V" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:92 +msgid "Create Keyword" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:93 +msgid "Extract Keyword" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:94 +msgid "Extract Variable" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:95 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1156 +msgid "Rename Keyword" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:96 +msgid "Find Where Used" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:97 +msgid "JSON Editor\tCtrl-Shift-J" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:99 +msgid "Go to Definition\tCtrl-B" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:101 +msgid "Undo\tCtrl-Z" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:102 +msgid "Redo\tCtrl-Y" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:104 +msgid "Make Variable\tCtrl-1" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:105 +msgid "Make List Variable\tCtrl-2" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:106 +msgid "Make Dict Variable\tCtrl-5" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:361 +msgid "Comment Cells\tCtrl-Shift-3" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:362 +msgid "Uncomment Cells\tCtrl-Shift-4" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:110 +msgid "Move Cursor Down\tAlt-Enter" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:112 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:353 +msgid "Comment Rows\tCtrl-3" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:113 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:354 +msgid "Uncomment Rows\tCtrl-4" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:355 +msgid "Move Rows Up\tAlt-Up" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:115 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:356 +msgid "Move Rows Down\tAlt-Down" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:116 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:357 +msgid "Swap Row Up\tCtrl-T" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:920 +msgid "" +"Keyword was not detected by RIDE\n" +"
      Possible corrections:
      \n" +"
        \n" +"
      • Import library or resource file containing the keyword.\n" +"
      • For library import errors: Consider importing library spec " +"XML\n" +" (Tools / Import Library Spec XML or by adding the XML file with " +"the\n" +" correct name to PYTHONPATH) to enable keyword completion\n" +" for example for Java libraries.\n" +" Library spec XML can be created using libdoc tool from Robot " +"Framework.
      • \n" +"
      " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1156 +msgid "New name" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1168 +msgid "Save" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1169 +msgid "Cancel" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1195 +msgid "Error in JSON:" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1195 +msgid "Save anyway?" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1196 +msgid "Validation Error!" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1337 +msgid "Please select what you want to check for usage" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1340 +msgid "Complete cell content" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1341 +msgid "Variable " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1353 +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:669 +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:49 +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:127 +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:184 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:98 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:160 +msgid "Search" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/listeditor.py:39 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:233 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:368 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:667 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:768 +msgid "Delete" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/listeditor.py:39 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:663 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:764 +msgid "Move Up\tCtrl-Up" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/listeditor.py:39 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:664 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:765 +msgid "Move Down\tCtrl-Down" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:100 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:233 +msgid "Clear" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:483 +msgid "Variable" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:484 +msgid "Add Dict" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:484 +msgid "Add List" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:484 +msgid "Add Scalar" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:571 +msgid "Import" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:571 +msgid "Name / Path" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:572 +msgid "Import Failed Help" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:586 +msgid "Add Import" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:629 +#: /home2/helio/github/RIDE/tools/../src/robotide/spec/specimporter.py:33 +#: /home2/helio/github/RIDE/tools/../src/robotide/spec/specimporter.py:62 +msgid "Import Library Spec XML" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:672 +msgid "" +"
      Possible corrections and notes:
      \n" +"
      " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:672 +msgid "Import failure handling" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:725 +msgid "Add Metadata" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:132 +msgid "Text Edit" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:468 +msgid "ERROR: Data sanity check failed!" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:468 +msgid "Error at line" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:469 +msgid "Reset changes?" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:470 +msgid "Can not apply changes from Text Editor" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:652 +msgid "Apply Changes" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:679 +msgid "Syntax colorization disabled due to missing requirements." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:680 +msgid "Get help" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:695 +msgid "" +"

      Syntax colorization

      \n" +"

      \n" +" Syntax colorization for Text Edit uses Pygments syntax highlighter.\n" +"

      \n" +"

      \n" +" Install Pygments from command line with:\n" +"

      \n"
      +"            pip install pygments\n"
      +"        
      \n" +" Or:\n" +"
      \n"
      +"            easy_install pygments\n"
      +"        
      \n" +" Then, restart RIDE.\n" +"

      \n" +"

      \n" +" If you do not have pip or easy_install,\n" +" follow these instructions.\n" +"

      \n" +"

      \n" +" For more information about installing Pygments, see the site.\n" +"

      \n" +" " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:720 +msgid "Getting syntax colorization" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:819 +msgid "No matches found." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/log/log.py:45 +msgid "RIDE Log" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/log/log.py:86 +msgid "View RIDE Log" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/parserlog/parserlog.py:45 +msgid "Parser Log" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/parserlog/parserlog.py:85 +msgid "View Parser Log" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/postinstall/desktopshortcut.py:55 +msgid "Create RIDE Desktop Shortcut" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:42 +msgid "Text background" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:82 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:93 +msgid "Reset colors to default" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:83 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:94 +msgid "Save or Load settings" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:122 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:193 +msgid "Font Size" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:134 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:205 +msgid "Zoom Factor" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:140 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:211 +msgid "Use fixed width font" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:146 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:217 +msgid "Font Face" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:158 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:161 +msgid "Text Editor" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:162 +msgid "Text Editor Settings" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:173 +msgid "Argument foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:174 +msgid "Comment foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:416 +msgid "Error foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:176 +msgid "Gherkin keyword foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:177 +msgid "Heading foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:178 +msgid "Import foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:179 +msgid "Variable foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:180 +msgid "Keyword definition foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:181 +msgid "Keyword call foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:182 +msgid "Separator" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:183 +msgid "Setting foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:184 +msgid "Syntax characters" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:414 +msgid "Text foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:233 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:275 +msgid "Enable auto suggestions" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:241 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:244 +msgid "Grid Editor" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:245 +msgid "Grid Editor Settings" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:254 +msgid "Default column size" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:261 +msgid "Auto size columns" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:265 +msgid "" +"Max column size\n" +"(applies when auto size is on)" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:270 +msgid "Word wrap and auto size rows" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:313 +msgid "User Keyword Foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:314 +msgid "Library Keyword Foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:315 +msgid "Variable Foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:316 +msgid "Unknown Variable Foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:317 +msgid "Comments Foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:318 +msgid "Default Foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:319 +msgid "Empty Foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:340 +msgid "Variable Background" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:341 +msgid "Keyword Background" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:342 +msgid "Mandatory Field Background" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:343 +msgid "Optional Field Background" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:344 +msgid "Mandatory Empty Field Background" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:345 +msgid "Unknown Background" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:346 +msgid "Error Background" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:347 +msgid "Highlight Background" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:373 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:376 +msgid "Test Runner" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:377 +msgid "Test Runner Settings" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:381 +msgid "Colors will be active after next RIDE restart." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:395 +msgid "Shows console colors set by" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:397 +msgid "Asks for confirmation to run all tests if none selected " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:417 +msgid "Fail foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:418 +msgid "Pass foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:419 +msgid "Skip foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:96 +msgid "Apply to Project and File Explorer panels" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:142 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:286 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:590 +msgid "RIDE - Preferences" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +msgid "Language" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:243 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:246 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:249 +msgid "General" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:247 +msgid "General Settings" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:256 +msgid "Foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:257 +msgid "Background" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:258 +msgid "Secondary Foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:259 +msgid "Secondary Background" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:260 +msgid "Text Foreground" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:261 +msgid "Help Background" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/imports.py:28 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/imports.py:32 +msgid "Importing" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/imports.py:31 +msgid "Library imports and PYTHONPATH" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/imports.py:42 +msgid "Comma separated list of libraries to be automatically imported." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/imports.py:44 +msgid "" +"Comma separated list of directories to be added to PYTHONPATH when libraries " +"are searched." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/imports.py:46 +msgid "Comma separated list of directories containing library spec files." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:41 +msgid "Save or Load Settings" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:47 +msgid "Load settings from file..." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:48 +msgid "Save settings to file..." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:53 +msgid "Current directory:" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:70 +msgid "File with Settings to Load" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:96 +msgid "Save Settings to file" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:109 +msgid "Could not open settings file \"%s\" for writing" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:121 +msgid "Error trying to get '%s' from file %s" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:136 +msgid "Invalid config file '%s': %s" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:28 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:31 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:32 +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:34 +msgid "Saving" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +msgid "Is Task?" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +msgid "Default for Tasks or Tests sections." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:43 +msgid "Reformat?" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:44 +msgid "Should it recalculate identation on Save?" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:61 +msgid "Default file format:" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:64 +msgid "TXT format separator:" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:67 +msgid "Line separator:" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:69 +msgid "" +"Possible values are native (of current OS) CRLF (Windows) and LF (Unixy)" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:71 +msgid "Separating spaces" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:73 +msgid "Number of spaces between cells when saving in txt format" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:41 +msgid "Add recently opened files to the file menu." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:118 +msgid "No recent files" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:118 +#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 +#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 +msgid "File" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:119 +#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:125 +#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:153 +msgid "Exit" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:142 +msgid "Open %s" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:27 +msgid "" +"The specified command string will be split from whitespaces into a command\n" +"and its arguments. If either the command or any of the arguments require\n" +"internal spaces, they must be written as ''.\n" +"\n" +"The command will be executed in the system directly without opening a " +"shell.\n" +"This means that shell commands and extensions are not available. For " +"example,\n" +"in Windows batch files to execute must contain the '.bat' extension and " +"'dir'\n" +"command does not work.\n" +"\n" +"Examples:\n" +" robot.bat --include smoke C:\\my_tests\n" +" svn update /home/robot\n" +" C:\\ProgramFiles\\App\\prg.exe argumentwithspace,\n" +"Run configurations are stored in the RIDE settings file.\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:45 +#: /home2/helio/github/RIDE/tools/../src/robotide/run/runanything.py:55 +msgid "Manage Run Configurations" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:99 +msgid "New" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:99 +msgid "Remove" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 +msgid "Command" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/run/runanything.py:30 +msgid "" +"A plugin for executing commands on the system.\n" +"\n" +" This plugin enables creation of persistent run configurations and\n" +" execution of those. Output of the executed command is displayed in a\n" +" separate tab." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/run/runanything.py:55 +#: /home2/helio/github/RIDE/tools/../src/robotide/run/runanything.py:57 +#: /home2/helio/github/RIDE/tools/../src/robotide/run/runanything.py:65 +msgid "Macros" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/run/ui.py:26 +msgid "finished" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/run/ui.py:27 +msgid "Run Again" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/run/ui.py:28 +msgid "running" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:36 +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/searchtests.py:35 +msgid "Search Tests" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:50 +msgid "Tag Search" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:61 +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:85 +msgid "Test" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:66 +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:90 +msgid "Results: " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:82 +msgid "" +"Find matches using tag patterns. See RF User Guide or 'robot --help' for " +"more information." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:96 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:846 +msgid "Include" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:139 +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:189 +msgid "Add all to selected" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:156 +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:164 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:211 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:284 +msgid "Results: %d" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:177 +msgid "Info. " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:195 +msgid "Find matches by test name, documentation and/or tag." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:212 +msgid "Search term" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/searchtests.py:33 +msgid "A plugin for searching tests based on name, tags and documentation" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/spec/specimporter.py:60 +msgid "Library Spec XML|*.xml|All Files|*.*" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/spec/specimporter.py:77 +msgid "" +"Library \"%s\" imported\n" +"from \"%s\"\n" +"This may require RIDE restart." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/spec/specimporter.py:78 +msgid "Info" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/spec/specimporter.py:80 +msgid "Could not import library from file \"%s\"" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/spec/specimporter.py:80 +msgid "Import failed" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +msgid "Type" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +msgid "Directory" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +msgid "New Resource File" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 +msgid "Format" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +msgid "Parent Directory" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +msgid "Choose Parent Directory" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +msgid "Created Path" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +msgid "New Project" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +msgid "Add Suite" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +msgid "Add Directory" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +msgid "Set Data Format" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +msgid "Change recursively" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +msgid "" +"Provide format for initialization file in directory\n" +"\"%s\"." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +msgid "Open" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +msgid "Robot data (*.robot)|*.robot" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +msgid "Robot data (*.txt)|*.txt" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +msgid "Robot resource file (*.resource)|*.resource" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +msgid "Robot Tab Separated data (*.tsv)|*.tsv" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +msgid "All files|*.*" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/fileexplorerplugin.py:29 +msgid "" +"Provides a tree view for Files and Folders. Opens selected item with mouse " +"right-click." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/fileexplorerplugin.py:61 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/fileexplorerplugin.py:117 +msgid "Files" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/fileexplorerplugin.py:66 +msgid "View" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/fileexplorerplugin.py:66 +msgid "View File Explorer" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/fileexplorerplugin.py:68 +msgid "Show File Explorer panel" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:35 +msgid "" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:36 +msgid "" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:37 +msgid "" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:39 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:59 +msgid "Search Keywords" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:43 +msgid "A plugin for searching keywords based on name or documentation." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:55 +msgid "Search keywords from libraries and resources" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:173 +msgid "Search term: " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:180 +msgid "Search documentation" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:185 +msgid "Source: " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 +msgid "Description" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:57 +msgid "[File]\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:58 +msgid "!&New Project | Create a new top level suite | Ctrlcmd-N | ART_NEW\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:60 +msgid "" +"!&Open Test Suite | Open file containing tests | Ctrlcmd-O | ART_FILE_OPEN\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:61 +msgid "" +"!Open &Directory | Open directory containing datafiles | Shift-Ctrlcmd-O | " +"ART_FOLDER_OPEN\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:62 +msgid "!Open External File | Open file in Code Editor | | ART_NORMAL_FILE\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:63 +msgid "!&Save | Save selected datafile | Ctrlcmd-S | ART_FILE_SAVE\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:64 +msgid "!Save &All | Save all changes | Ctrlcmd-Shift-S | ART_FILE_SAVE_AS\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:65 +msgid "!E&xit | Exit RIDE | Ctrlcmd-Q\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:67 +msgid "!Search Unused Keywords | | | | POSITION-54\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:68 +msgid "!Manage Plugins | | | | POSITION-81\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:69 +msgid "!View All Tags | | F7 | | POSITION-82\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:70 +msgid "!Preferences | | | | POSITION-99\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:71 +msgid "[Help]\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:72 +msgid "!Shortcut keys | RIDE shortcut keys\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:73 +msgid "!User Guide | Robot Framework User Guide\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:74 +msgid "!Wiki | RIDE User Guide (Wiki)\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:75 +msgid "!Report a Problem | Open browser to SEARCH on the RIDE issue tracker\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:76 +msgid "!About | Information about RIDE\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:77 +msgid "!Check for Upgrade | Looks at PyPi for new released version\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:176 +msgid "Saved %s" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:177 +msgid "Saved all files" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:200 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:228 +msgid "Validation Error" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:204 +msgid "\"%s\" is read only" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:205 +msgid "Modification prevented" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:276 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treeplugin.py:107 +msgid "Test Suites" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:399 +msgid "" +"There are unsaved modifications.\n" +"Do you want to save your changes before exiting?" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:489 +msgid "Warning" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:488 +msgid "" +"There are unsaved modifications.\n" +"Do you want to proceed without saving?" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:525 +msgid "Choose a directory containing Robot files" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:677 +msgid "Workspace modifications detected on the file system." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:678 +msgid "Do you want to reload the workspace?" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:680 +msgid "Answering will discard unsaved changes." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:681 +msgid "Answering will ignore the changes on disk." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:682 +msgid "Files Changed On Disk" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:724 +msgid "Customize..." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:812 +msgid "search unused keywords" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:812 +msgid "stop test run" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:813 +msgid "preview" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:813 +msgid "view ride log" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:855 +msgid "Shortcut keys for RIDE" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:893 +msgid "Show" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:894 +msgid "Hide" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:895 +msgid "Close" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/pluginmanager.py:48 +msgid "Manage Plugins" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/pluginmanager.py:63 +msgid "Installed Plugins\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/pluginmanager.py:82 +msgid "Enabled" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/pluginmanager.py:83 +msgid "Plugin" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/pluginmanager.py:93 +msgid "" +"Info. Enabling and disabling plugins might require RIDE restart for menus to " +"work." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:32 +msgid "" +"(Obsolete) Provides preview of the test data in HTML, TSV and TXT formats." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:41 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:100 +msgid "Preview" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:43 +msgid "Show preview of the current file" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:83 +msgid "Text (Pipes)" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:83 +msgid "Text (Spaces)" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:123 +msgid "Print" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:39 +msgid "Search unused keywords" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:66 +msgid "" +"This dialog helps you finding unused keywords within your opened project.\n" +"If you want, you can restrict the search to a set of files with the filter." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:70 +msgid "Filter is" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:71 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:242 +msgid "inactive" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:84 +msgid "Filter" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:91 +msgid "Use RegEx" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:93 +msgid "" +"Here you can define one or more strings separated by comma (e.g. common," +"abc,123).\n" +"The filter matches if at least one string is part of the filename.\n" +"If you don't enter any strings, all opened files are included" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:101 +msgid "Test case files" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:104 +msgid "Resource files" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:106 +msgid "Mode" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:107 +msgid "exclude" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:107 +msgid "include" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:109 +msgid "Test the filter" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:139 +msgid "Keyword" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:146 +msgid "Delete marked keywords" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:157 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:320 +msgid "Unused Keywords" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:163 +msgid "Abort" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:247 +msgid "active" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:270 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:353 +msgid "Unused Keywords (%d)" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:279 +msgid "(None)" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:282 +msgid "" +"Keywords of the following files will be included in the search:\n" +"\n" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:283 +msgid "Included files" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:339 +msgid "Searching.%s \t- %s" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:354 +msgid "Search finished - Found %d Unused Keywords" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:402 +msgid "listing datafiles" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:405 +msgid "searching from " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:37 +msgid "View all tags" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:76 +msgid "Tag" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:77 +msgid "Occurrences" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:82 +msgid "The List" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:85 +msgid "Refresh" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:86 +msgid "Included Tag Search" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:89 +msgid "Excluded Tag Search" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:147 +msgid "" +"Total tests %d, Tests with tags %d, Unique tags %d\n" +"Currently selected tests %d" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:233 +msgid "Select all" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:233 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:262 +msgid "Rename" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:234 +msgid "Show tests with this tag" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:234 +msgid "Show tests without this tag" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:261 +msgid "Renaming tag '%s'." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:276 +msgid "Delete a tag '%s' ?" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:276 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:642 +msgid "Confirm" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:238 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:344 +msgid "New Resource" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:342 +msgid "New Suite\tCtrl-Shift-F" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:343 +msgid "New Directory" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:346 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:468 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:555 +msgid "New User Keyword\tCtrl-Shift-K" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:347 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:469 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:556 +msgid "New Scalar\tCtrl-Shift-V" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:348 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:470 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:557 +msgid "New List Variable\tCtrl-Shift-L" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:349 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:471 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:558 +msgid "New Dictionary Variable" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:351 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:474 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:561 +msgid "Change Format" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:352 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:485 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:577 +msgid "Open Containing Folder" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:373 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:569 +msgid "Select All Tests" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:374 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:570 +msgid "Deselect All Tests" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:375 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:571 +msgid "Select Only Failed Tests" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:376 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:572 +msgid "Select Only Passed Tests" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:386 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:482 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:574 +msgid "Exclude" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:388 +msgid "Collapse all" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:388 +msgid "Expand all" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:428 +msgid "" +"Directory contains unsaved data!\n" +"You must save data before excluding." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:473 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:560 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:665 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:766 +msgid "Rename\tF2" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:475 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:480 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:562 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:567 +msgid "Sort Keywords" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:477 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:563 +msgid "Delete\tCtrl-Shift-D" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:479 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:565 +msgid "Sort Variables" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:484 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:576 +msgid "Remove Read Only" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:514 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:616 +msgid "" +"File contains unsaved data!\n" +"You must save data before excluding." +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:554 +msgid "New Test Case\tCtrl-Shift-T" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:566 +msgid "Sort Tests" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:642 +msgid "Delete test case file" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:662 +msgid "Copy\tCtrl-Shift-C" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:815 +msgid "Add Resource" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treeplugin.py:61 +msgid "Provides a tree view for Test Suites " +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treeplugin.py:213 +msgid "External Resources" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treeplugin.py:348 +msgid "%s (excluded)" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:58 +msgid "'%s' - %d matches found - Searching%s" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:63 +msgid "'%s' - %d matches" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:85 +msgid "Go to definition" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:143 +msgid "Location" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:143 +msgid "Usage" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:176 +msgid "Imported Location" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:176 +msgid "Imported name" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:176 +msgid "Importing Location" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:176 +msgid "Importing Name" +msgstr "" + +#: /home2/helio/github/RIDE/tools/../src/robotide/validators/__init__.py:150 +msgid "%s cannot be empty" +msgstr "" diff --git a/tools/geni18n.py b/tools/geni18n.py index 5c7394237..a7b711d1d 100644 --- a/tools/geni18n.py +++ b/tools/geni18n.py @@ -20,8 +20,9 @@ # we remove English as source code strings are in English -supportedLang = ['bg_BG', 'da_DK', 'es_ES', 'hi_IN', 'it_IT', 'ja_JP', 'pl_PL', 'sv_SE', 'uk_UA', 'zh_TW', 'bs_BA', 'de_DE', 'fi_FI', - 'hu_HU', 'pt_BR', 'ro_RO', 'th_TH', 'tr_TR', 'vi_VN', 'cs_CZ', 'en_US', 'fr_FR', 'nl_NL', 'pt_PT', 'ru_RU', 'zh_CN' ] +supportedLang = ['bg_BG', 'da_DK', 'es_ES', 'hi_IN', 'it_IT', 'ja_JP', 'ko_KR', 'pl_PL', 'sv_SE', 'uk_UA', 'zh_TW', 'bs_BA', + 'de_DE', 'fi_FI', 'hu_HU', 'pt_BR', 'ro_RO', 'th_TH', 'tr_TR', 'vi_VN', 'cs_CZ', 'en_US', 'fr_FR', 'nl_NL', + 'pt_PT', 'ru_RU', 'zh_CN' ] # for l in appC.supLang: # if l != u"en": From 4889b8df0c51524354c39d7a44754a207387da1c Mon Sep 17 00:00:00 2001 From: HelioGuilherme66 Date: Wed, 14 Aug 2024 02:39:48 +0100 Subject: [PATCH 3/4] Update languages to include Korean --- src/robotide/application/CHANGELOG.html | 2 + src/robotide/localization/RIDE.pot | 60 ++--- .../localization/bg_BG/LC_MESSAGES/RIDE.mo | Bin 557 -> 557 bytes .../localization/bg_BG/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/bs_BA/LC_MESSAGES/RIDE.mo | Bin 629 -> 629 bytes .../localization/bs_BA/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/cs_CZ/LC_MESSAGES/RIDE.mo | Bin 53947 -> 53947 bytes .../localization/cs_CZ/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/da_DK/LC_MESSAGES/RIDE.mo | Bin 50566 -> 50566 bytes .../localization/da_DK/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/de_DE/LC_MESSAGES/RIDE.mo | Bin 54764 -> 54764 bytes .../localization/de_DE/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/en_US/LC_MESSAGES/RIDE.mo | Bin 2017 -> 2017 bytes .../localization/en_US/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/es_ES/LC_MESSAGES/RIDE.mo | Bin 54708 -> 54708 bytes .../localization/es_ES/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/fi_FI/LC_MESSAGES/RIDE.mo | Bin 51274 -> 51274 bytes .../localization/fi_FI/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/fr_FR/LC_MESSAGES/RIDE.mo | Bin 57032 -> 57032 bytes .../localization/fr_FR/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/hi_IN/LC_MESSAGES/RIDE.mo | Bin 553 -> 553 bytes .../localization/hi_IN/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/hu_HU/LC_MESSAGES/RIDE.mo | Bin 557 -> 557 bytes .../localization/hu_HU/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/it_IT/LC_MESSAGES/RIDE.mo | Bin 54028 -> 54028 bytes .../localization/it_IT/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/ja_JP/LC_MESSAGES/RIDE.mo | Bin 51491 -> 48488 bytes .../localization/ja_JP/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/ko_KR/LC_MESSAGES/RIDE.mo | Bin 1215 -> 1096 bytes .../localization/ko_KR/LC_MESSAGES/RIDE.po | 208 +++++++++--------- .../localization/nl_NL/LC_MESSAGES/RIDE.mo | Bin 54466 -> 54466 bytes .../localization/nl_NL/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/pl_PL/LC_MESSAGES/RIDE.mo | Bin 54200 -> 54200 bytes .../localization/pl_PL/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/pt_BR/LC_MESSAGES/RIDE.mo | Bin 55695 -> 55695 bytes .../localization/pt_BR/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/pt_PT/LC_MESSAGES/RIDE.mo | Bin 59051 -> 55904 bytes .../localization/pt_PT/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/ro_RO/LC_MESSAGES/RIDE.mo | Bin 57963 -> 54856 bytes .../localization/ro_RO/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/ru_RU/LC_MESSAGES/RIDE.mo | Bin 69731 -> 66696 bytes .../localization/ru_RU/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/sv_SE/LC_MESSAGES/RIDE.mo | Bin 51764 -> 51764 bytes .../localization/sv_SE/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/th_TH/LC_MESSAGES/RIDE.mo | Bin 545 -> 545 bytes .../localization/th_TH/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/tr_TR/LC_MESSAGES/RIDE.mo | Bin 584 -> 584 bytes .../localization/tr_TR/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/uk_UA/LC_MESSAGES/RIDE.mo | Bin 61164 -> 58201 bytes .../localization/uk_UA/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/vi_VN/LC_MESSAGES/RIDE.mo | Bin 551 -> 551 bytes .../localization/vi_VN/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/zh_CN/LC_MESSAGES/RIDE.mo | Bin 43783 -> 43783 bytes .../localization/zh_CN/LC_MESSAGES/RIDE.po | 60 ++--- .../localization/zh_TW/LC_MESSAGES/RIDE.mo | Bin 563 -> 563 bytes .../localization/zh_TW/LC_MESSAGES/RIDE.po | 60 ++--- src/robotide/preferences/__init__.py | 1 + 57 files changed, 918 insertions(+), 913 deletions(-) diff --git a/src/robotide/application/CHANGELOG.html b/src/robotide/application/CHANGELOG.html index c25af489b..1b361e9ee 100644 --- a/src/robotide/application/CHANGELOG.html +++ b/src/robotide/application/CHANGELOG.html @@ -1,6 +1,8 @@ Changelog

      Changelog


      All notable changes to this project will be documented in this file.

      The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

      1.1. Added

      • +Added Korean language support for UI, experimental. +
      • Added option ``caret style`` to change insert caret to block or line in Text Editor, by editing ``settings.cfg``. The color of the caret is the same as setting and will be adjusted for better contrast with the background.

      1.2. Changed

      • diff --git a/src/robotide/localization/RIDE.pot b/src/robotide/localization/RIDE.pot index 286f8bfaa..32590af04 100644 --- a/src/robotide/localization/RIDE.pot +++ b/src/robotide/localization/RIDE.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -988,9 +988,9 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "" @@ -1767,7 +1767,7 @@ msgid "RIDE - Preferences" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "" @@ -1879,12 +1879,12 @@ msgid "Saving" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "" @@ -1935,7 +1935,7 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "" @@ -2113,85 +2113,85 @@ msgstr "" msgid "Import failed" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "" diff --git a/src/robotide/localization/bg_BG/LC_MESSAGES/RIDE.mo b/src/robotide/localization/bg_BG/LC_MESSAGES/RIDE.mo index bf8e3ab4f8232828cebcfa13c0443ceb86329b39..927ed8132b5914340d47b4fc98a92c0c483199e2 100644 GIT binary patch delta 18 ZcmZ3>vX*5+A-jo!fsvJw<;IGwi~u#S1*HH0 delta 18 ZcmZ3>vX*5+A-kc1p`n$b@y3d+i~u!j1)Bf> diff --git a/src/robotide/localization/bg_BG/LC_MESSAGES/RIDE.po b/src/robotide/localization/bg_BG/LC_MESSAGES/RIDE.po index 8e8680d16..e8578a406 100644 --- a/src/robotide/localization/bg_BG/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/bg_BG/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-07-17 01:27\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" @@ -903,9 +903,9 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "" @@ -1696,7 +1696,7 @@ msgid "RIDE - Preferences" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "" @@ -1801,12 +1801,12 @@ msgid "Saving" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "" @@ -1855,7 +1855,7 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "" @@ -2023,85 +2023,85 @@ msgstr "" msgid "Import failed" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "" diff --git a/src/robotide/localization/bs_BA/LC_MESSAGES/RIDE.mo b/src/robotide/localization/bs_BA/LC_MESSAGES/RIDE.mo index fc8856c2c154d4b8a0d4c11eb03169dad4a85a31..748838f5baa2e0c5259d7a8468f32722d5cfb3e2 100644 GIT binary patch delta 18 Zcmey$@|9&mA-jo!fsvJw<;IG?i~v8+27Lek delta 18 Zcmey$@|9&mA-kc1p`n$b@y3e3i~v8226F%a diff --git a/src/robotide/localization/bs_BA/LC_MESSAGES/RIDE.po b/src/robotide/localization/bs_BA/LC_MESSAGES/RIDE.po index f26ac7e7d..6d0450562 100644 --- a/src/robotide/localization/bs_BA/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/bs_BA/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-07-17 01:27\n" "Last-Translator: \n" "Language-Team: Bosnian\n" @@ -904,9 +904,9 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "" @@ -1697,7 +1697,7 @@ msgid "RIDE - Preferences" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "" @@ -1802,12 +1802,12 @@ msgid "Saving" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "" @@ -1856,7 +1856,7 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "" @@ -2024,85 +2024,85 @@ msgstr "" msgid "Import failed" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "" diff --git a/src/robotide/localization/cs_CZ/LC_MESSAGES/RIDE.mo b/src/robotide/localization/cs_CZ/LC_MESSAGES/RIDE.mo index 1b03b3f9762b02a14006041a64dfde9683c025fa..688f4adbd6c3692bafcc9a9398405c25fb656ce8 100644 GIT binary patch delta 22 ecmdnJlzI13<_)YR>?R5ZMpj0an|Vss#{mFbRtJ&* delta 22 ecmdnJlzI13<_)YR?1l=4hE|5gn|Vss#{mFb2nUD& diff --git a/src/robotide/localization/cs_CZ/LC_MESSAGES/RIDE.po b/src/robotide/localization/cs_CZ/LC_MESSAGES/RIDE.po index 18fbd2018..be24cd831 100644 --- a/src/robotide/localization/cs_CZ/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/cs_CZ/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-07-17 01:27\n" "Last-Translator: \n" "Language-Team: Czech\n" @@ -985,9 +985,9 @@ msgstr "Scalar proměnná" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "Název" @@ -1845,7 +1845,7 @@ msgid "RIDE - Preferences" msgstr "RIDE - Předvolby" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "Jazyk" @@ -1953,12 +1953,12 @@ msgid "Saving" msgstr "Ukládání" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "Je úkol?" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "Výchozí nastavení pro sekce úkolů nebo testů." @@ -2007,7 +2007,7 @@ msgstr "Žádné nedávné soubory" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "Soubor" @@ -2201,59 +2201,59 @@ msgstr "Nelze importovat knihovnu ze souboru \"%s\"" msgid "Import failed" msgstr "Import se nezdařil" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "Typ" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "Adresář" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "Nový soubor dokumentu" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "Formát" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "Nadřazený adresář" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "Vybrat nadřazený adresář" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "Vytvořená cesta" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "Nový projekt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "Přidat sadu" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "Přidat adresář" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "Nastavit formát dat" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "Změnit rekurzivně" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." @@ -2261,27 +2261,27 @@ msgstr "" "Zadejte formát pro inicializaci souboru v adresáři\n" "\"%s\"." -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "Otevřít" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "Data robota (*.robot)|*.robot" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "Data robota (*.txt)|*.txt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "Soubor zdroje robota (*.resource)|*.resource" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "Oddělená data karty robota (*.tsv)|*.tsv" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "Všechny soubory|*.*" diff --git a/src/robotide/localization/da_DK/LC_MESSAGES/RIDE.mo b/src/robotide/localization/da_DK/LC_MESSAGES/RIDE.mo index 9febbba998089dd44d133927c4dd28ae6ce07dce..f9ae124990b8ba0350c3456ce27462d59a0a0a52 100644 GIT binary patch delta 22 dcmZqcW^U_d-cVA+ZlYjdWMyQzxw?ou7ywqQ2Oj_c delta 22 dcmZqcW^U_d-cVA+Zm3{rXk}=;xw?ou7ywpX2NeJS diff --git a/src/robotide/localization/da_DK/LC_MESSAGES/RIDE.po b/src/robotide/localization/da_DK/LC_MESSAGES/RIDE.po index 9c4d78039..6fad6a258 100644 --- a/src/robotide/localization/da_DK/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/da_DK/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-07-17 01:27\n" "Last-Translator: \n" "Language-Team: Danish\n" @@ -977,9 +977,9 @@ msgstr "Scalar Variabel" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "Navn" @@ -1837,7 +1837,7 @@ msgid "RIDE - Preferences" msgstr "RIDE - Indstillinger" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "Sprog" @@ -1945,12 +1945,12 @@ msgid "Saving" msgstr "Gemmer" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "Er Opgave?" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "Standard for Opgaver eller Test sektioner." @@ -2000,7 +2000,7 @@ msgstr "Ingen seneste filer" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "Fil" @@ -2196,59 +2196,59 @@ msgstr "Kunne ikke importere bibliotek fra filen \"%s\"" msgid "Import failed" msgstr "Import mislykkedes" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "Type" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "Mappe" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "Ny Ressourcefil" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "Formatér" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "Overordnet Mappe" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "Vælg Overordnet Mappe" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "Oprettet Sti" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "Nyt Projekt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "Tilføj Suite" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "Tilføj Mappe" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "Sæt Dataformat" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "Ændre rekursivt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." @@ -2256,27 +2256,27 @@ msgstr "" "Angiv format til initialiseringsfil i mappen\n" "\"%s\"." -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "Åbn" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "Robot data (*.robot)¤ *.robot" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "Robot data (*.txt) - *.txt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "Robot ressource fil (*.resource)- *.resource" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "Robot faneblad Separerede data (*.tsv)ţ*.tsv" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "Alle filer*" diff --git a/src/robotide/localization/de_DE/LC_MESSAGES/RIDE.mo b/src/robotide/localization/de_DE/LC_MESSAGES/RIDE.mo index ba2f632fc4e63efd1818fac967c8f867e9254eb5..c824d8dbbe940d72b1ae7254ba0d48f4c55116f5 100644 GIT binary patch delta 22 dcmaE}n)%IY<_!fU>?R5ZMpj0ao6Ac|69H_Q2%i7| delta 22 dcmaE}n)%IY<_!fU?1l=4hE|5go6Ac|69H^X2$cW; diff --git a/src/robotide/localization/de_DE/LC_MESSAGES/RIDE.po b/src/robotide/localization/de_DE/LC_MESSAGES/RIDE.po index 4233e4008..aa4122016 100644 --- a/src/robotide/localization/de_DE/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/de_DE/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-07-17 01:27\n" "Last-Translator: \n" "Language-Team: German\n" @@ -1002,9 +1002,9 @@ msgstr "Skalare Variable" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "Name" @@ -1863,7 +1863,7 @@ msgid "RIDE - Preferences" msgstr "RIDE - Einstellungen" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "Sprache" @@ -1973,12 +1973,12 @@ msgid "Saving" msgstr "Speichern" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "Ist Aufgabe?" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "Standard für Aufgaben oder Testbereiche." @@ -2030,7 +2030,7 @@ msgstr "Keine aktuellen Dateien" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "Datei" @@ -2231,59 +2231,59 @@ msgstr "Bibliothek konnte nicht aus Datei \"%s \" importiert werden" msgid "Import failed" msgstr "Import fehlgeschlagen" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "Typ" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "Verzeichnis" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "Neue Ressourcen-Datei" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "Format" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "Elternverzeichnis" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "Übergeordneten Ordner auswählen" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "Erstellter Pfad" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "Neues Projekt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "Suite hinzufügen" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "Verzeichnis hinzufügen" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "Datenformat festlegen" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "Rekursiv ändern" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." @@ -2291,27 +2291,27 @@ msgstr "" "Format für Initialisierungsdatei im Verzeichnis\n" "\"%s \" angeben." -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "Öffnen" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "Roboterdaten (*.robot)|*.robot" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "Roboterdaten (*.txt)|*.txt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "Robot-Ressourcen-Datei (*.resource)|*.resource" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "Robot-Tab getrennte Daten (*.tsv)|*.tsv" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "Alle Dateien|*.*" diff --git a/src/robotide/localization/en_US/LC_MESSAGES/RIDE.mo b/src/robotide/localization/en_US/LC_MESSAGES/RIDE.mo index c1f16b5628e57e4e8d84ff2259947f2eafcbb19d..c84dcd15667348d7545846565e607db27fd39735 100644 GIT binary patch delta 20 bcmaFJ|B!zJ3k$o6f`O5hk>zG?mTSxaK*0r; delta 20 bcmaFJ|B!zJ3k$oUf}x?6q48#JmTSxaKyw9* diff --git a/src/robotide/localization/en_US/LC_MESSAGES/RIDE.po b/src/robotide/localization/en_US/LC_MESSAGES/RIDE.po index d24676f10..f4d98a482 100644 --- a/src/robotide/localization/en_US/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/en_US/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-07-17 01:27\n" "Last-Translator: \n" "Language-Team: English\n" @@ -903,9 +903,9 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "" @@ -1696,7 +1696,7 @@ msgid "RIDE - Preferences" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "" @@ -1801,12 +1801,12 @@ msgid "Saving" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "" @@ -1855,7 +1855,7 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "" @@ -2023,85 +2023,85 @@ msgstr "" msgid "Import failed" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "" diff --git a/src/robotide/localization/es_ES/LC_MESSAGES/RIDE.mo b/src/robotide/localization/es_ES/LC_MESSAGES/RIDE.mo index 3876f9f30e1b82efdef75917fa3bee915b3b5d8f..ef5a7ead0782c7d1830986fefeac43a87a47d46e 100644 GIT binary patch delta 22 dcmdn8nt97=<_&(u>?R5ZMpj0an?sA^lK^1f2h;!n delta 22 dcmdn8nt97=<_&(u?1l=4hE|5gn?sA^lK^0m2g(2d diff --git a/src/robotide/localization/es_ES/LC_MESSAGES/RIDE.po b/src/robotide/localization/es_ES/LC_MESSAGES/RIDE.po index 3a707fb4e..8941a3a23 100644 --- a/src/robotide/localization/es_ES/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/es_ES/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-07-17 01:27\n" "Last-Translator: \n" "Language-Team: Spanish\n" @@ -1003,9 +1003,9 @@ msgstr "Variable de escalar" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "Nombre" @@ -1866,7 +1866,7 @@ msgid "RIDE - Preferences" msgstr "RIDE - Preferencias" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "Idioma" @@ -1976,12 +1976,12 @@ msgid "Saving" msgstr "Guardando" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "¿Es tarea?" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "Por defecto para las secciones Tareas o Tests ." @@ -2030,7 +2030,7 @@ msgstr "No hay archivos recientes" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "Fichero" @@ -2231,59 +2231,59 @@ msgstr "No se pudo importar la biblioteca desde el archivo \"%s\"" msgid "Import failed" msgstr "Error al importar" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "Tipo" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "Directorio" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "Nuevo archivo de recursos" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "Formatear" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "Directorio padre" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "Elegir directorio padre" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "Ruta creada" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "Nuevo proyecto" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "Añadir Suite" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "Añadir directorio" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "Definir formato de datos" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "Cambiar recursivamente" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." @@ -2291,27 +2291,27 @@ msgstr "" "Proporcionar formato para el archivo de inicialización en el directorio\n" "\"%s\"." -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "Abrir" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "Datos de robot (*.robot)|*.robot" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "Datos de robot (*.txt)|*.txt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "Archivo de recursos Robot (*.resource)|*.resource" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "Datos separados por tabulador de Robot (*.tsv)|*.tsv" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "Todos los archivos|*.*" diff --git a/src/robotide/localization/fi_FI/LC_MESSAGES/RIDE.mo b/src/robotide/localization/fi_FI/LC_MESSAGES/RIDE.mo index ac4081b59c9e659a9e6e8bb67a5cc65aa4da97c1..6dde50101dfd2cb93c7a91f1946226d460167b3b 100644 GIT binary patch delta 22 dcmX>#f%((~<_(Gk>?R5ZMpj0an>7lQA^==E2O|Ig delta 22 dcmX>#f%((~<_(Gk?1l=4hE|5gn>7lQA^=?R5ZMpj0ao6AcAvjAyS2w(sJ delta 22 dcmX@Hm-)nA<_!fU?1l=4hE|5go6AcAvjAxZ2vz_9 diff --git a/src/robotide/localization/fr_FR/LC_MESSAGES/RIDE.po b/src/robotide/localization/fr_FR/LC_MESSAGES/RIDE.po index 890387085..e5ef1da58 100644 --- a/src/robotide/localization/fr_FR/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/fr_FR/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-08-08 01:15\n" "Last-Translator: \n" "Language-Team: French\n" @@ -1017,9 +1017,9 @@ msgstr "Variable scalaire" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "Nom" @@ -1880,7 +1880,7 @@ msgid "RIDE - Preferences" msgstr "RIDE - Préférences" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "Langue" @@ -1991,12 +1991,12 @@ msgid "Saving" msgstr "Sauvegarde" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "Est-ce la tâche ?" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "Par défaut pour les sections Tâches ou Têtes." @@ -2048,7 +2048,7 @@ msgstr "Aucun fichier récent" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "Fichier" @@ -2248,59 +2248,59 @@ msgstr "Impossible d'importer la bibliothèque depuis le fichier «%s»" msgid "Import failed" msgstr "Importation échouée" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "Type de texte" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "Répertoire" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "Nouveau fichier de ressource" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "Formater" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "Répertoire parent" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "Choisir le répertoire parent" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "Répertoire créé" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "Nouveau projet" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "Ajouter une suite" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "Ajouter Répertoire" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "Définir le format de données" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "Changer récursivement" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." @@ -2308,27 +2308,27 @@ msgstr "" "Fournir le format du fichier d'initialisation dans le répertoire\n" "\"%s\"." -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "Ouvert" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "Données des robots (*.robot)|*.robot" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "Données du robot (*.txt)|*.txt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "Fichier de ressources robotes (*.resource)|*.resource" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "Données séparées de l'onglet des robots (*.tsv)|*.tsv" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "Tous les fichiers|*.*" diff --git a/src/robotide/localization/hi_IN/LC_MESSAGES/RIDE.mo b/src/robotide/localization/hi_IN/LC_MESSAGES/RIDE.mo index eb2c520e70417a76c5aa3d38d9452757101f2e1b..a9b16c89bd3cd7f0dbed511224c5ba503fa21c3c 100644 GIT binary patch delta 18 ZcmZ3vX*5+A-jo!fsvJw<;IGwi~u#S1*HH0 delta 18 ZcmZ3>vX*5+A-kc1p`n$b@y3d+i~u!j1)Bf> diff --git a/src/robotide/localization/hu_HU/LC_MESSAGES/RIDE.po b/src/robotide/localization/hu_HU/LC_MESSAGES/RIDE.po index d9d81c0b4..b12a5878b 100644 --- a/src/robotide/localization/hu_HU/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/hu_HU/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-07-17 01:27\n" "Last-Translator: \n" "Language-Team: Hungarian\n" @@ -903,9 +903,9 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "" @@ -1696,7 +1696,7 @@ msgid "RIDE - Preferences" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "" @@ -1801,12 +1801,12 @@ msgid "Saving" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "" @@ -1855,7 +1855,7 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "" @@ -2023,85 +2023,85 @@ msgstr "" msgid "Import failed" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "" diff --git a/src/robotide/localization/it_IT/LC_MESSAGES/RIDE.mo b/src/robotide/localization/it_IT/LC_MESSAGES/RIDE.mo index 1467b53c5f24e27c6432144b278ad3c6d3258742..1cf7eeaf3b9ad5e4d78ca592a6f47b4f3ccaeb71 100644 GIT binary patch delta 22 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 delta 12268 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 diff --git a/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.po b/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.po index a136c80fa..bdcc95075 100644 --- a/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-08-14 00:56+0100\n" "Last-Translator: Hélio Guilherme \n" "Language-Team: Japanese\n" @@ -960,9 +960,9 @@ msgstr "スカラー変数" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "名前" @@ -1756,7 +1756,7 @@ msgid "RIDE - Preferences" msgstr "ライド - 設定" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "言語" @@ -1862,12 +1862,12 @@ msgid "Saving" msgstr "保存中" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "タスクですか?" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "タスクまたはテストセクションのデフォルト。" @@ -1916,7 +1916,7 @@ msgstr "最近使ったファイルはありません" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "ファイル" @@ -2089,59 +2089,59 @@ msgstr "ファイル\"%s\"からライブラリをインポートできません msgid "Import failed" msgstr "インポートに失敗しました" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "タイプ" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "ディレクトリ" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "新しいリソースファイル" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "書式" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "親ディレクトリ" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "親ディレクトリを選択" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "作成されたパス" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "新規プロジェクト" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "スイートを追加" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "ディレクトリを追加" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "データ形式の設定" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "再帰的に変更" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." @@ -2149,27 +2149,27 @@ msgstr "" "ディレクトリ\n" "\"%s\"に初期化ファイルの形式を指定してください。" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "開く" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "ロボットデータ (*.robot)|*.robot" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "ロボットデータ (*.txt)|*.txt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "ロボットリソースファイル (*.resource)|*.resource" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "ロボットタブ 別データ (*.tsv)|*.tsv" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "すべてのファイル|*.*" diff --git a/src/robotide/localization/ko_KR/LC_MESSAGES/RIDE.mo b/src/robotide/localization/ko_KR/LC_MESSAGES/RIDE.mo index a894db0b4cca5141aea93cc1c56c8a107cb3f887..88badc96d8f4787fa8c260b9de4e6a5905c34071 100644 GIT binary patch delta 215 zcmdnbd4i+8 N^C8AQrpX;F<^c019rOSI delta 335 zcmZ9Gy-EW?6h`kRt0qN2f~1fXBf&Q9+A3%*_999W2@(f3VoIAqg4_5*P&5Gxt6(7p zJBh7N5n^Gr^9+)6EiC-taPAD>-ks0fNB(S540}TIP=*>5;2AVi(EBe4;RlM44MYqs zVeLn_f;aIpZsHPl*knW=@CxVmtjIi`V0wG<&9KgeZr4Q{IKtalKj`8mJjCn}>M{o! zeRK|Vp@#qbWq~P_tNX*sjyrl1%i! ko4z{#=={KG+uvS#*Z-Yf#=dvwFW%Cmn\n" "Language-Team: Korean\n" @@ -19,7 +19,8 @@ msgstr "" "X-Generator: Poedit 3.4.4\n" #: /home2/helio/github/RIDE/tools/../src/robotide/application/application.py:396 -msgid "Robot Framework version %s from %s." +#, fuzzy +msgid "Found Robot Framework version %s from %s." msgstr "Robot Framework 버전을 %s 에서 %s 찾았습니다." #: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:54 @@ -904,9 +905,9 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "" @@ -1068,8 +1069,8 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editors.py:383 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:207 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:476 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:741 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:479 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:744 msgid "Find Usages" msgstr "" @@ -1279,21 +1280,21 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/listeditor.py:39 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:233 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:368 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:667 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:768 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:371 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:670 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:771 msgid "Delete" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/listeditor.py:39 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:663 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:764 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:666 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:767 msgid "Move Up\tCtrl-Up" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/listeditor.py:39 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:664 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:765 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:667 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:768 msgid "Move Down\tCtrl-Down" msgstr "" @@ -1697,7 +1698,7 @@ msgid "RIDE - Preferences" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "" @@ -1802,12 +1803,12 @@ msgid "Saving" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "" @@ -1856,7 +1857,7 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "" @@ -1962,10 +1963,17 @@ msgid "" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:96 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:846 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:849 msgid "Include" msgstr "" +#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:117 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:389 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:485 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:577 +msgid "Exclude" +msgstr "" + #: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:139 #: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:189 msgid "Add all to selected" @@ -2017,85 +2025,85 @@ msgstr "" msgid "Import failed" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "" @@ -2251,7 +2259,7 @@ msgid "Saved all files" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:200 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:228 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:231 msgid "Validation Error" msgstr "" @@ -2568,152 +2576,146 @@ msgid "Delete a tag '%s' ?" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:276 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:642 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:645 msgid "Confirm" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:238 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:344 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:241 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:347 msgid "New Resource" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:342 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:345 msgid "New Suite\tCtrl-Shift-F" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:343 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:346 msgid "New Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:346 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:468 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:555 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:349 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:471 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:558 msgid "New User Keyword\tCtrl-Shift-K" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:347 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:469 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:556 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:350 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:472 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:559 msgid "New Scalar\tCtrl-Shift-V" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:348 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:470 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:557 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:351 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:473 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:560 msgid "New List Variable\tCtrl-Shift-L" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:349 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:471 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:558 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:352 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:474 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:561 msgid "New Dictionary Variable" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:351 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:474 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:561 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:354 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:477 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:564 msgid "Change Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:352 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:485 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:577 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:355 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:488 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:580 msgid "Open Containing Folder" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:373 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:569 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:376 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:572 msgid "Select All Tests" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:374 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:570 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:377 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:573 msgid "Deselect All Tests" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:375 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:571 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:378 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:574 msgid "Select Only Failed Tests" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:376 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:572 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:379 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:575 msgid "Select Only Passed Tests" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:386 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:482 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:574 -msgid "Exclude" -msgstr "" - -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:388 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:391 msgid "Collapse all" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:388 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:391 msgid "Expand all" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:428 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:431 msgid "" "Directory contains unsaved data!\n" "You must save data before excluding." msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:473 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:560 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:665 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:766 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:476 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:563 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:668 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:769 msgid "Rename\tF2" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:475 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:480 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:562 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:567 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:478 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:483 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:565 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:570 msgid "Sort Keywords" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:477 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:563 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:480 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:566 msgid "Delete\tCtrl-Shift-D" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:479 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:565 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:482 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:568 msgid "Sort Variables" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:484 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:576 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:487 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:579 msgid "Remove Read Only" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:514 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:616 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:517 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:619 msgid "" "File contains unsaved data!\n" "You must save data before excluding." msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:554 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:557 msgid "New Test Case\tCtrl-Shift-T" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:566 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:569 msgid "Sort Tests" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:642 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:645 msgid "Delete test case file" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:662 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:665 msgid "Copy\tCtrl-Shift-C" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:815 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:818 msgid "Add Resource" msgstr "" diff --git a/src/robotide/localization/nl_NL/LC_MESSAGES/RIDE.mo b/src/robotide/localization/nl_NL/LC_MESSAGES/RIDE.mo index 222d76374d5b20858c9a6e064450263d339d9885..2ab3e03dfd80029fe8789ef3264c6800f981ef80 100644 GIT binary patch delta 22 dcmX@KlKId|<_!fU>?R5ZMpj0ao6AeQ698pA2pj+a delta 22 dcmX@KlKId|<_!fU?1l=4hE|5go6AeQ698oH2oeAQ diff --git a/src/robotide/localization/nl_NL/LC_MESSAGES/RIDE.po b/src/robotide/localization/nl_NL/LC_MESSAGES/RIDE.po index 1b53be2ed..5997489de 100644 --- a/src/robotide/localization/nl_NL/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/nl_NL/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-07-17 01:27\n" "Last-Translator: \n" "Language-Team: Dutch\n" @@ -1010,9 +1010,9 @@ msgstr "Variabele" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "Naam" @@ -1879,7 +1879,7 @@ msgid "RIDE - Preferences" msgstr "RIDE-voorkeuren" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "Taal" @@ -1987,12 +1987,12 @@ msgid "Saving" msgstr "Bestandsformaat" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "Aanmaken als taak?" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "Standaardinstelling voor taak- of testsecties." @@ -2043,7 +2043,7 @@ msgstr "Geen recente bestanden" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "Bestand" @@ -2245,59 +2245,59 @@ msgstr "Kan bibliotheek niet importeren uit bestand \"%s\"" msgid "Import failed" msgstr "Importeren mislukt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "Type" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "Map" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "Nieuw resourcebestand" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "Bestandsformaat" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "Bovenliggende map" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "Kies bovenliggende map" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "Bestandslokatie" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "Nieuw Project" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "Voeg suite toe" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "Voeg map toe" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "Stel bestandsformaat in" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "Pas recursief toe" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." @@ -2305,27 +2305,27 @@ msgstr "" "Geef het formaat voor het initialisatiebestand in map\n" "\"%s\"." -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "Open" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "Robotbestanden (*.robot)|*.robot" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "Robotbestanden (*.txt)|*.txt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "Robot resourcebestand (*.resource)|*.resource" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "Tabgescheiden Robotbestanden (*.tsv)|*.tsv" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "Alle bestanden|*.*" diff --git a/src/robotide/localization/pl_PL/LC_MESSAGES/RIDE.mo b/src/robotide/localization/pl_PL/LC_MESSAGES/RIDE.mo index 5a527ec6f90001a60dd428d3bc05ccc5c83ce4ce..99e12937a1635ea05994cc77ff1a2e911ac6e942 100644 GIT binary patch delta 22 dcmdn7oO#D`<_!fU>?R5ZMpj0ao6Aca;{jto2l)U1 delta 22 dcmdn7oO#D`<_!fU?1l=4hE|5go6Aca;{jsv2k!s? diff --git a/src/robotide/localization/pl_PL/LC_MESSAGES/RIDE.po b/src/robotide/localization/pl_PL/LC_MESSAGES/RIDE.po index 408d02151..089ad24b4 100644 --- a/src/robotide/localization/pl_PL/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/pl_PL/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-07-17 01:27\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -1002,9 +1002,9 @@ msgstr "Zmienna skalarna" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "Nazwa" @@ -1863,7 +1863,7 @@ msgid "RIDE - Preferences" msgstr "RIDE - Preferencje" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "Język" @@ -1973,12 +1973,12 @@ msgid "Saving" msgstr "Zapisywanie" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "Czy zadanie?" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "Domyślnie dla sekcji Zadania lub Testów." @@ -2027,7 +2027,7 @@ msgstr "Brak ostatnich plików" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "Plik" @@ -2225,59 +2225,59 @@ msgstr "Nie można zaimportować biblioteki z pliku \"%s\"" msgid "Import failed" msgstr "Importowanie nie powiodło się" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "Typ" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "Katalog" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "Nowy Plik Zasobów" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "Formatowanie" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "Katalog nadrzędny" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "Wybierz katalog nadrzędny" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "Utworzona ścieżka" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "Nowy projekt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "Dodaj pakiet" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "Dodaj katalog" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "Ustaw format danych" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "Zmień rekursywnie" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." @@ -2285,27 +2285,27 @@ msgstr "" "Podaj format dla pliku inicjalizacji w katalogu\n" "\"%s\"." -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "Otwórz" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "Dane robota (*.robot)|*.robot" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "Dane robota (*.txt)|*.txt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "Plik zasobu robota (*.resource)|*.resource" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "Karty robota oddzielone dane (*.tsv)|*.tsv" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "Wszystkie pliki|*.*" diff --git a/src/robotide/localization/pt_BR/LC_MESSAGES/RIDE.mo b/src/robotide/localization/pt_BR/LC_MESSAGES/RIDE.mo index ce7b25c35dfd19ff6e53dd85756ca5df08989a5c..65f29d8044479ce2bdf16a3449332d36cf5b75da 100644 GIT binary patch delta 22 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 diff --git a/src/robotide/localization/pt_PT/LC_MESSAGES/RIDE.po b/src/robotide/localization/pt_PT/LC_MESSAGES/RIDE.po index ca8ab426a..c2526c56e 100644 --- a/src/robotide/localization/pt_PT/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/pt_PT/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-08-11 11:18+0100\n" "Last-Translator: Hélio Guilherme \n" "Language-Team: Portuguese\n" @@ -1014,9 +1014,9 @@ msgstr "Variável Escalar" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "Nome" @@ -1876,7 +1876,7 @@ msgid "RIDE - Preferences" msgstr "RIDE - Preferências" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "Língua" @@ -1987,12 +1987,12 @@ msgid "Saving" msgstr "Salvando" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "É Tarefa?" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "Tipo por omissão para secções de Tarefas ou Testes." @@ -2042,7 +2042,7 @@ msgstr "Sem ficheiros recentes" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "Ficheiro" @@ -2239,59 +2239,59 @@ msgstr "Não se conseguiu importar biblioteca do ficheiro \"%s\"" msgid "Import failed" msgstr "Falhou a importação" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "Tipo" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "Diretoria" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "Novo Ficheiro de Recursos" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "Formato" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "Diretoria Raiz" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "Escolha a Diretoria Raiz" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "Criado o Caminho" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "Novo Projeto" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "Adicionar Suite" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "Adicionar Diretoria" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "Definir Formato dos Dados" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "Alterar recursivamente" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." @@ -2299,27 +2299,27 @@ msgstr "" "Indique o formato do ficheiro de inicialização na diretoria\n" "\"%s\"." -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "Abrir" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "dados de Robot (*.robot)|*.robot" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "dados de Robot (*.txt)|*.txt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "ficheiro Robot de recursos (*.resource)|*.resource" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "dados de Robot separados por Tabs (*.tsv)|*.tsv" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "Todos os ficheiros|*.*" diff --git a/src/robotide/localization/ro_RO/LC_MESSAGES/RIDE.mo b/src/robotide/localization/ro_RO/LC_MESSAGES/RIDE.mo index 94ef12542259dca80b99ceea0ff37e14c93a3754..63411d6d47d05e2250e3a8aa7620b1f7f472c10c 100644 GIT binary patch delta 9546 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�AiaOz;-Cy9a zIWGux!#LEFHb8G|jXJN3%?H?g4C+2pZSF3oQIL*}wqqAYksn4)$zQk;pX0sUw2$xu ziTu-JR0(~LJI>oU1e5U+reV1g=0CBFMLvSgdHe|H{$!@6!pWS!L%PmT8k^bi7wW=m zf7Vxl1$K&GnRNobht*D-|GND(Y7NAlF(qDrdC6CxZk&aAF!x!r2=k&oK*dpOq6TWw zXJQN8=`$KC;X~9a&VSAv5QCcQR#+5!pkB-IsMWs&HAUM|r9O!I(44XTS22|QK7NY< z=gs%wXY?ok3k&N>z5i_%M<{BsM53moGHOl}P$#s&VwjG)(HPWmldv>?jKy&)YJewD z=iNp<*mI1*hzsVy($Lin`_O2I!%?gLM@&J_i{^ra}Te*(|eW6xn6}jZXN3U zZPss5tA9UgN=~At?i%X&XBdk4u9(V3UU5x{s?$-59ZfM8YE!BGS@GlOI8S5{ZxYjp zQuOD?fgCdkUu>#IIQjgS`gYo#jp(~fJDPL9wSAs0$zFS~My~BW@*gn^-^43KDcVzs z`W)X5!;v>BXB|M!uj>8jf0yX34!dbu57RdoL+~o0O>f#z+HMd2_?XDFJG8U(OYM); z@zS=CeZz^##3Ld%1JM?m^Cy2v#edVU&4Yb^;@8A0v@6?V53xTN!6$+Gv$e_jley)9 zvP2xQodX)t|GK@{ZQ9FeHzxGq>1xj@$FXZ|TOXoYL@xT;qh8Mw_WT0$X^SIv;tBgU6M8Ft zA$k&eW%m=>ifR5or?HiTBJIuiasR)q5B)Jjf7|2BF*Ruy$G_>!xa+7oSl)T;NFFLKUymcFaDEjkd>h))Q6J^jKz{Tx%YT<-{QDNQ|)k-(WZ=`r15}_Ac5V z;{^PgC`>#hpG;gQwDqL#9-*xQeq!6TUE9dV&5pCvlUP9%C66Msr4v5Ev#?sI>o(U3T8JAUGzK-->4JDGMH zEW!o;@Afwxg^8N%JIyiYh&{v)#CP`6^;Oc`!H8&x{(n8F>q05qS*x7xwrET7UWhGsAYY zpk0pmkIl!?4j@u(zSv4v&US}1%*DiC2i-ybCd#c0SCH^-$Y7;u7t{=#AOLRN8fk zG7MTG%l?-A|<{up2n@IWti_M@*JzP!D`zS?x8+hbqer}lCB zBW-69>wm1GED`e3HQyso(EQin!~~LO7{LK8aTc+PxK1R{cb5H`gtkQTQuv7QRfpXg za_kV=P4GDu#b&t0?*Em1H8J1j+b~e`|BS|m#0_?~CW;VoL>jS}{%eG`f5?{*%ZLs{ zB?gjhb~*m!>xow6QK)StF_H-4xDV+|QYYInq7t!ty;0q!R*(Vl|Zh7qq3g=}7$bF{rr{ENQg_#HMSK7aB4 zcOpq5v|Yg%%*e_3MUp%Z?aIU)drW2QOjP6ILG(x3{v+s5UXRd^_VK7KiR0$s3i{qB Z9Iw_HgNKB6@3rZAnTO3cc?@Zg{$F!Up11%2 diff --git a/src/robotide/localization/ro_RO/LC_MESSAGES/RIDE.po b/src/robotide/localization/ro_RO/LC_MESSAGES/RIDE.po index f3338d000..e9570e2ea 100644 --- a/src/robotide/localization/ro_RO/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/ro_RO/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-08-14 00:43+0100\n" "Last-Translator: Hélio Guilherme \n" "Language-Team: Romanian\n" @@ -1009,9 +1009,9 @@ msgstr "Variabilă Scalar" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "Nume" @@ -1871,7 +1871,7 @@ msgid "RIDE - Preferences" msgstr "RIDE - Preferințe" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "Limba" @@ -1981,12 +1981,12 @@ msgid "Saving" msgstr "Salvare" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "Este sarcină?" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "Implicit pentru secțiunile Sarcini sau Teste" @@ -2035,7 +2035,7 @@ msgstr "Nu există fișiere recente" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "Fişier" @@ -2234,59 +2234,59 @@ msgstr "Biblioteca nu a putut fi importată din fișierul \"%s\"" msgid "Import failed" msgstr "Importare eșuată" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "Tip" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "Director" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "Fișier nou de resurse" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "Format" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "Director Părinte" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "Alege directorul părinte" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "Cale creată" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "Proiect nou" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "Adaugă suită" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "Adaugă Director" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "Setare Format Date" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "Modificare recursivă" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." @@ -2294,27 +2294,27 @@ msgstr "" "Furnizați formatul pentru fișierul de inițializare în directorul\n" "\"%s\"." -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "Deschideți" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "Date robot (*.robot)| *.robot" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "Date robot (*.txt)| *.txt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "Fişier resursă robot (*.resource)| *.resource" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "Robot Tab Date separate (*.tsv)| *.tsv" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "Toate fişierele *.*" diff --git a/src/robotide/localization/ru_RU/LC_MESSAGES/RIDE.mo b/src/robotide/localization/ru_RU/LC_MESSAGES/RIDE.mo index 953192d8d5de28084a218c2b5feac946563a299c..649229cd58618e184fd57c753128a32c04e3c974 100644 GIT binary patch delta 9353 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 delta 12434 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 diff --git a/src/robotide/localization/ru_RU/LC_MESSAGES/RIDE.po b/src/robotide/localization/ru_RU/LC_MESSAGES/RIDE.po index 6ce42a11c..d139a6fff 100644 --- a/src/robotide/localization/ru_RU/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/ru_RU/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-08-14 01:28+0100\n" "Last-Translator: Hélio Guilherme \n" "Language-Team: Russian\n" @@ -995,9 +995,9 @@ msgstr "Скалярная переменная" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "Наименование" @@ -1838,7 +1838,7 @@ msgid "RIDE - Preferences" msgstr "RIDE - настройки" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "Язык" @@ -1947,12 +1947,12 @@ msgid "Saving" msgstr "Сохранение" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "Задача?" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "По умолчанию для разделов Задач или Тестов." @@ -2003,7 +2003,7 @@ msgstr "Нет недавних файлов" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "Файл" @@ -2197,59 +2197,59 @@ msgstr "Не удалось импортировать библиотеку из msgid "Import failed" msgstr "Не удалось импортировать" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "Тип" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "Каталог" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "Новый файл ресурсов" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "Формат" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "Родительская папка" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "Выберите родительский каталог" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "Путь создан" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "Новый проект" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "Добавить Suite" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "Добавить директорию" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "Установить формат данных" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "Изменить рекурсивно" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." @@ -2257,27 +2257,27 @@ msgstr "" "Предоставьте формат файла инициализации в директории\n" "\"%s." -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "Открыть" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "Данные робота (*.robot)|*.robot" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "Данные робота (*.txt)|*.txt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "Файл ресурса робота (*.resource)|*.resource" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "Данные вкладки робота (*.tsv)|*.tsv" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "Все файлы|*.*" diff --git a/src/robotide/localization/sv_SE/LC_MESSAGES/RIDE.mo b/src/robotide/localization/sv_SE/LC_MESSAGES/RIDE.mo index 995fd1285f4c8c7c47bb3eb2480a6320f0593479..ca0e71aaaa43534ee5bfcbaa96a4de39416b836d 100644 GIT binary patch delta 22 ecmdlog?Y;q<_!mn*-aD-jI4|-H=iiZ2?GFS^$3js delta 22 ecmdlog?Y;q<_!mn*$ov84Xq4~H=iiZ2?GFSrwD@p diff --git a/src/robotide/localization/sv_SE/LC_MESSAGES/RIDE.po b/src/robotide/localization/sv_SE/LC_MESSAGES/RIDE.po index fc159f509..9906c07c1 100644 --- a/src/robotide/localization/sv_SE/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/sv_SE/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-07-17 01:27\n" "Last-Translator: \n" "Language-Team: Swedish\n" @@ -975,9 +975,9 @@ msgstr "Skalarvariabel" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "Namn" @@ -1834,7 +1834,7 @@ msgid "RIDE - Preferences" msgstr "RIDE - Inställningar" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "Språk" @@ -1942,12 +1942,12 @@ msgid "Saving" msgstr "Sparar" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "Är uppgiften?" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "Standard för uppgifter eller testsektioner." @@ -1997,7 +1997,7 @@ msgstr "Inga nya filer" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "Fil" @@ -2193,59 +2193,59 @@ msgstr "Kunde inte importera bibliotek från fil \"%s\"" msgid "Import failed" msgstr "Importen misslyckades" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "Typ" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "Katalog" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "Ny resursfil" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "Formatera" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "Överordnad katalog" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "Välj överordnad katalog" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "Skapad sökväg" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "Nytt projekt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "Lägg till svit" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "Lägg till katalog" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "Ange dataformat" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "Ändra rekursivt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." @@ -2253,27 +2253,27 @@ msgstr "" "Ange format för initieringsfil i katalog\n" "\"%s\"." -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "Öppna" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "Robot data (*.robot)| *.robot" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "Robot data (*.txt)| *.txt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "Robot resursfil (*.resource)| *.resource" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "Robot Tab Separerade data (*.tsv)| *.tsv" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "Alla filer| *.*" diff --git a/src/robotide/localization/th_TH/LC_MESSAGES/RIDE.mo b/src/robotide/localization/th_TH/LC_MESSAGES/RIDE.mo index 67bc2efdc9a334931d87e6d9a6773474e3eaaf16..86df88d30431579f06922dc305b93435cd6e3b66 100644 GIT binary patch delta 18 ZcmZ3;vXEs$A-jo!fsvJw<;IGYi~uwL1%Utn delta 18 ZcmZ3;vXEs$A-kc1p`n$b@y3dki~uvc1$O`d diff --git a/src/robotide/localization/th_TH/LC_MESSAGES/RIDE.po b/src/robotide/localization/th_TH/LC_MESSAGES/RIDE.po index f093f488a..0bc14d03f 100644 --- a/src/robotide/localization/th_TH/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/th_TH/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-07-17 01:27\n" "Last-Translator: \n" "Language-Team: Thai\n" @@ -903,9 +903,9 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "" @@ -1696,7 +1696,7 @@ msgid "RIDE - Preferences" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "" @@ -1801,12 +1801,12 @@ msgid "Saving" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "" @@ -1855,7 +1855,7 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "" @@ -2023,85 +2023,85 @@ msgstr "" msgid "Import failed" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "" diff --git a/src/robotide/localization/tr_TR/LC_MESSAGES/RIDE.mo b/src/robotide/localization/tr_TR/LC_MESSAGES/RIDE.mo index 8143848c31085bafed6de7ee50a0e587b4e83c8c..f4388d3a7cb00f74c93b2cefe63186d9c0a7a0b8 100644 GIT binary patch delta 18 ZcmX@Xa)M<-8@q{ufsvJw<;LFKi~u^J1`7ZH delta 18 ZcmX@Xa)M<-8@r)`p`n$b@y6cWi~u@a1_1y7 diff --git a/src/robotide/localization/tr_TR/LC_MESSAGES/RIDE.po b/src/robotide/localization/tr_TR/LC_MESSAGES/RIDE.po index 2c938cc4f..bf67d0616 100644 --- a/src/robotide/localization/tr_TR/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/tr_TR/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-07-17 01:27\n" "Last-Translator: \n" "Language-Team: Turkish\n" @@ -903,9 +903,9 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "" @@ -1696,7 +1696,7 @@ msgid "RIDE - Preferences" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "" @@ -1801,12 +1801,12 @@ msgid "Saving" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "" @@ -1855,7 +1855,7 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "" @@ -2023,85 +2023,85 @@ msgstr "" msgid "Import failed" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "" diff --git a/src/robotide/localization/uk_UA/LC_MESSAGES/RIDE.mo b/src/robotide/localization/uk_UA/LC_MESSAGES/RIDE.mo index 8e3b68c5bd927b6633dfbf85969a0a1cfd12b4fe..7e0f45967f86c7342ed9faa445b6fd9fa44a1cea 100644 GIT binary patch delta 9145 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\n" "Language-Team: Ukrainian\n" @@ -981,9 +981,9 @@ msgstr "Змінна масштабування" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "Ім'я" @@ -1776,7 +1776,7 @@ msgid "RIDE - Preferences" msgstr "RIDE - Параметри" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "Мова:" @@ -1882,12 +1882,12 @@ msgid "Saving" msgstr "Заощадження" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "Чи є задача?" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "Стандартні для розділів завдань або тестів." @@ -1936,7 +1936,7 @@ msgstr "Немає останніх файлів" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "Файл" @@ -2114,85 +2114,85 @@ msgstr "Не вдалося імпортувати бібліотеку з фа msgid "Import failed" msgstr "Не вдалося виконати імпорт" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "Тип" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "Каталог" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "Новий файл ресурсу" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "Форматувати" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "Батьківський каталог" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "Виберіть батьківську теку" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "Створити шлях" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "Новий проект" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "Додати набір" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "Додати папку" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "Установити формат дати" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "Змінити рекурсивно" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "Відкриті" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "Дані роботів (*.robot)|*.robot" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "Дані Robot (*.txt)|*.txt" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "Файл ресурсів Robot (*.resource)|*.resource" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "Права на дачу табуляції (*.tsv)|*.tsv" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "Всі файли|*.*" diff --git a/src/robotide/localization/vi_VN/LC_MESSAGES/RIDE.mo b/src/robotide/localization/vi_VN/LC_MESSAGES/RIDE.mo index 0e15b33afcd1bbe488f8bcfcad464d7040585339..1f4ec6cee38347b62acb3f4c19e2f6a44c9948f8 100644 GIT binary patch delta 18 ZcmZ3^vYcf?A-jo!fsvJw<;IHji~uy(1(N^( delta 18 ZcmZ3^vYcf?A-kc1p`n$b@y3evi~ux~1&IIv diff --git a/src/robotide/localization/vi_VN/LC_MESSAGES/RIDE.po b/src/robotide/localization/vi_VN/LC_MESSAGES/RIDE.po index 16bdbe6f6..b99c44587 100644 --- a/src/robotide/localization/vi_VN/LC_MESSAGES/RIDE.po +++ b/src/robotide/localization/vi_VN/LC_MESSAGES/RIDE.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: robotframework-ride\n" -"POT-Creation-Date: 2024-08-11 11:13+0100\n" +"POT-Creation-Date: 2024-08-14 02:29+0100\n" "PO-Revision-Date: 2024-07-17 01:27\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" @@ -903,9 +903,9 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:596 #: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626 #: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:91 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:93 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:317 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355 msgid "Name" msgstr "" @@ -1696,7 +1696,7 @@ msgid "RIDE - Preferences" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:139 msgid "Language" msgstr "" @@ -1801,12 +1801,12 @@ msgid "Saving" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Is Task?" msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:115 msgid "Default for Tasks or Tests sections." msgstr "" @@ -1855,7 +1855,7 @@ msgstr "" #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124 #: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140 msgid "File" msgstr "" @@ -2023,85 +2023,85 @@ msgstr "" msgid "Import failed" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 msgid "Type" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:109 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:221 msgid "Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:161 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:289 msgid "New Resource File" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:163 #: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117 msgid "Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174 -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:190 msgid "Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:176 msgid "Choose Parent Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:193 msgid "Created Path" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:274 msgid "New Project" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:303 msgid "Add Suite" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:327 msgid "Add Directory" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:339 msgid "Set Data Format" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:363 msgid "Change recursively" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:382 msgid "" "Provide format for initialization file in directory\n" "\"%s\"." msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:396 msgid "Open" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 msgid "Robot data (*.robot)|*.robot" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 msgid "Robot data (*.txt)|*.txt" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 msgid "Robot resource file (*.resource)|*.resource" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:404 msgid "Robot Tab Separated data (*.tsv)|*.tsv" msgstr "" -#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405 +#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:406 msgid "All files|*.*" msgstr "" diff --git a/src/robotide/localization/zh_CN/LC_MESSAGES/RIDE.mo b/src/robotide/localization/zh_CN/LC_MESSAGES/RIDE.mo index 275fc05f8d7a2309d0456125d834fd31938ab50b..2afd56fb715e5c8f43e9fc808b9de9b056d25089 100644 GIT binary patch delta 22 dcmZp_#?*d|X@hkJyNQB Date: Thu, 15 Aug 2024 01:57:57 +0100 Subject: [PATCH 4/4] Omit Korean from New Test Suite dialog, because RF 7.0.1 does not support yet --- src/robotide/application/releasenotes.py | 2 +- src/robotide/ui/filedialogs.py | 14 +++++++++++--- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/robotide/application/releasenotes.py b/src/robotide/application/releasenotes.py index cb310ac71..4d759fd98 100644 --- a/src/robotide/application/releasenotes.py +++ b/src/robotide/application/releasenotes.py @@ -325,7 +325,7 @@ def set_content(self, html_win, content):

         python -m robotide.postinstall -install
         
        -

        RIDE {VERSION} was released on 11/August/2024.

        +

        RIDE {VERSION} was released on 15/August/2024.