diff --git a/AGENTS.md b/AGENTS.md index d294f9a..6e5d2bd 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -46,7 +46,9 @@ make -C ../oink.pgsty.com dev ## Theme contracts -- Hugo Extended 0.160.1 is the compatibility floor. +- Hugo Extended 0.160.1 is the compatibility floor. On 0.160.x, configure a + non-default generic `zh` language alongside the regional Chinese catalogs + with `locale: zh-CN`; bare `locale: zh` works there from 0.161 onward. - Run checkers with `--panicOnWarning` when they build Hugo output. Ordinary editing may warn and fall back; publishing gates turn warnings into failures. - Keep generated `public/`, `resources/`, locks, and caches out of Git. diff --git a/CHANGELOG.md b/CHANGELOG.md index afa1f43..0d2b2c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to OINK are documented here. The project follows ## [Unreleased] +### Added + +- Every locale name shipped by Docsy now has a complete native OINK interface + catalog at the same level as English and Chinese: 31 upstream-compatible + locale files plus generic `zh`, with the same 192 keys in each. The owning + checker pins that locale set and rejects missing, extra, duplicate, nested, + placeholder-drifted, hidden-bidi, and unreviewed English-fallback values; + the old mechanical `--sync` fallback path is gone. The runtime check uses + the concrete `zh-CN` locale for non-default generic `zh`, preserving the + 0.160.1 floor; Hugo 0.160.x cannot resolve bare `locale: zh` in that + base-plus-regional-catalog configuration, while 0.161.0 and newer can. + ### Fixed - Cached sidebars now key reusable markup by language, navigation root, and the diff --git a/CLAUDE.md b/CLAUDE.md index 4ab157e..4e82cf5 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -123,8 +123,12 @@ Use Hugo Extended 0.160.1 for the compatibility floor. Output checkers accept - CSS uses `td-` classes, `data-td-*`, `--td-*`, logical properties, and covers RTL, print, forced colors, reduced motion, narrow screens, and long tokens. Author markers such as `.steps` and `.cards` remain unprefixed. -- Keep all 32 locale files schema-identical. Add user-visible strings to every - locale; `bin/check-i18n.py --sync` may add mechanical English fallbacks. +- Keep all 32 locale files schema-identical and natively translated. Add every + user-visible string to every locale, preserve its runtime placeholders, and + run `bin/check-i18n.py`; the checker never manufactures English fallbacks. + On the 0.160.x floor, a non-default generic `zh` language alongside the + regional Chinese catalogs must use `locale: zh-CN`; bare `locale: zh` works + in that configuration on Hugo 0.161.0 or newer. - Override the narrowest partial. Do not merge base templates when that changes Hugo lookup precedence or copy a full shell for one feature. - `public/` and `resources/` are generated and ignored. Never commit them. diff --git a/README.md b/README.md index 1ded956..9882355 100644 --- a/README.md +++ b/README.md @@ -205,7 +205,12 @@ assuming drop-in compatibility. | Hugo | **Extended 0.160.1 or newer**; CI currently pins 0.165.0 | | Go | 1.27 or newer for Hugo Module resolution; not needed when using an offline archive or submodule | | Node.js | Not required to build or run an OINK site | -| Locales | Reviewed OINK interface text for English, Simplified Chinese, and Traditional Chinese; inherited Docsy locales retain English fallback for newer labels | +| Locales | Native OINK interface text for all 31 locale names shipped by Docsy, plus generic `zh`; every bundle owns the same 192-key schema with no English placeholder blocks | + +On Hugo 0.160.x, when generic `zh` is a non-default language and the regional +Chinese catalogs are present, configure it with the concrete `locale: zh-CN`, +as OINK's examples do. Hugo 0.161.0 and newer also resolve bare `locale: zh` +in that configuration. ## Community and releases diff --git a/bin/check-i18n.py b/bin/check-i18n.py index 9a7d8b8..e5d1eae 100755 --- a/bin/check-i18n.py +++ b/bin/check-i18n.py @@ -1,10 +1,14 @@ #!/usr/bin/env python3 -"""Check translation key parity, or append explicit English fallbacks.""" +"""Check the complete, native OINK locale catalogs.""" from __future__ import annotations -import argparse +import json import re +import shutil +import subprocess +import tempfile +from html.parser import HTMLParser from pathlib import Path @@ -12,7 +16,105 @@ I18N = ROOT / "i18n" KEY = re.compile(r"^([A-Za-z0-9_]+):") BRACED_PLACEHOLDER = re.compile(r"\{[A-Za-z_][A-Za-z0-9_]*\}") +GO_TEMPLATE_PLACEHOLDER = re.compile(r"\{\{[^{}]+\}\}") PRINTF_PLACEHOLDER = re.compile(r"(? None: + super().__init__(convert_charrefs=True) + self.values: dict[str, str] = {} + self._key: str | None = None + self._parts: list[str] = [] + + def handle_starttag( + self, tag: str, attrs: list[tuple[str, str | None]] + ) -> None: + if tag == "span" and self._key is None: + key = dict(attrs).get("data-key") + if key is not None: + self._key = key + self._parts = [] + + def handle_data(self, data: str) -> None: + if self._key is not None: + self._parts.append(data) + + def handle_endtag(self, tag: str) -> None: + if tag == "span" and self._key is not None: + self.values[self._key] = "".join(self._parts) + self._key = None + self._parts = [] def translation_blocks(path: Path) -> tuple[list[str], dict[str, str]]: @@ -31,46 +133,177 @@ def translation_blocks(path: Path) -> tuple[list[str], dict[str, str]]: return order, blocks -def placeholders(block: str) -> tuple[list[str], list[str]]: +def placeholders(block: str) -> tuple[list[str], list[str], list[str]]: """Return the runtime placeholders used by a translation block.""" return ( sorted(BRACED_PLACEHOLDER.findall(block)), + sorted(GO_TEMPLATE_PLACEHOLDER.findall(block)), sorted(PRINTF_PLACEHOLDER.findall(block)), ) -def sync_fallbacks() -> None: - generic_chinese = I18N / "zh.yaml" - if not generic_chinese.exists(): - generic_chinese.write_text( - "# Generic Chinese defaults to Simplified Chinese; use zh-tw for Traditional Chinese.\n" - + (I18N / "zh-cn.yaml").read_text(encoding="utf-8"), +def scalar_value(block: str) -> str | None: + """Read the simple scalar styles used by OINK without a YAML dependency.""" + + lines = block.splitlines() + value = lines[0].partition(":")[2].strip() + if not value: + return None + if value.startswith('"'): + try: + parsed, end = json.JSONDecoder().raw_decode(value) + except (json.JSONDecodeError, TypeError): + return None + trailing = value[end:] + if trailing and not re.fullmatch(r"[ \t]+#.*", trailing): + return None + return parsed if isinstance(parsed, str) else None + if value.startswith("'"): + quoted = re.fullmatch(r"'((?:[^']|'')*)'(?:[ \t]+#.*)?", value) + return quoted.group(1).replace("''", "'") if quoted else None + if value.startswith("#"): + return None + value = re.sub(r"[ \t]+#.*$", "", value).rstrip() + if not value: + return None + if value in {">", ">-", "|", "|-"}: + return " ".join(line.strip() for line in lines[1:] if line[:1].isspace()).strip() + return value + + +def check_hugo_runtime( + keys: list[str], catalogs: dict[str, dict[str, str]] +) -> list[str]: + """Render every key once in all supported locales.""" + + hugo = shutil.which("hugo") + if not hugo: + return ["Hugo executable not found for the all-locale runtime check"] + with tempfile.TemporaryDirectory(prefix="oink-i18n-") as directory: + site = Path(directory) + (site / "content").mkdir() + (site / "layouts").mkdir() + (site / "content/_index.md").write_text( + "---\ntitle: i18n runtime fixture\n---\n", encoding="utf-8", ) - - english_order, english = translation_blocks(I18N / "en.yaml") - for path in sorted(I18N.glob("*.yaml")): - if path.name in {"en.yaml", "zh.yaml"}: - continue - _, translated = translation_blocks(path) - missing = [key for key in english_order if key not in translated] - if not missing: - continue - with path.open("a", encoding="utf-8") as stream: - stream.write( - "\n# Explicit English fallbacks for untranslated OINK UI strings.\n" - "# Replace these values with reviewed translations when available.\n" + language_lines: list[str] = [] + for weight, locale in enumerate(["en", *sorted(OINK_LOCALES - {"en"})], 1): + # Hugo 0.160.x cannot resolve a bare `locale: zh` while the regional + # Chinese catalogs are present. A concrete locale is also what the + # public OINK examples use for their generic `zh` language key. + runtime_locale = "zh-CN" if locale == "zh" else locale + language_lines.extend( + [ + f" {locale}:\n", + f" locale: {runtime_locale}\n", + f" label: {locale}\n", + f" weight: {weight}\n", + ] + ) + (site / "hugo.yaml").write_text( + "baseURL: https://example.test/\n" + "title: OINK i18n runtime fixture\n" + "theme: oink\n" + "defaultContentLanguage: en\n" + "defaultContentLanguageInSubdir: false\n" + "disableKinds: [taxonomy, term, RSS, sitemap, robotsTXT, '404']\n" + "languages:\n" + + "".join(language_lines), + encoding="utf-8", + ) + context = ( + 'dict "Count" 2 "Minutes" 3 "Part" 1 "Total" 2 ' + '"Authors" "Author" "Section" "Section" "Version" "1.0" ' + '"Link" "latest" "work" "Work" "copyright" "Copyright" ' + '"license" "License" "notice" "Notice" "history" "History" ' + '"original" "Original"' + ) + quoted_keys = " ".join(json.dumps(key) for key in keys) + (site / "layouts/home.html").write_text( + "\n" + f"{{{{ $ctx := {context} }}}}\n" + f"{{{{ range $key := slice {quoted_keys} }}}}" + "{{ T $key $ctx }}" + "{{ end }}\n" + "\n", + encoding="utf-8", + ) + public = site / "public" + try: + result = subprocess.run( + [ + hugo, + "--source", + str(site), + "--themesDir", + str(ROOT.parent), + "--destination", + str(public), + "--printI18nWarnings", + "--panicOnWarning", + ], + text=True, + capture_output=True, + timeout=120, ) - for key in missing: - stream.write(english[key]) + except subprocess.TimeoutExpired: + return ["all-locale Hugo render exceeded 120 seconds"] + if result.returncode: + return [ + "all-locale Hugo render failed:\n" + + (result.stdout + result.stderr)[-4000:] + ] + outputs = { + locale: public + / ("index.html" if locale == "en" else f"{locale}/index.html") + for locale in OINK_LOCALES + } + missing_outputs = sorted( + locale for locale, path in outputs.items() if not path.is_file() + ) + if missing_outputs: + return [f"all-locale Hugo render missed: {', '.join(missing_outputs)}"] + wrong_values: list[str] = [] + for locale, path in outputs.items(): + parser = TranslationSpanParser() + parser.feed(path.read_text(encoding="utf-8")) + for key, expected in catalogs[locale].items(): + if any(placeholders(expected)): + continue + if parser.values.get(key) != expected: + wrong_values.append(f"{locale}.{key}") + if wrong_values: + shown = ", ".join(sorted(wrong_values)[:20]) + suffix = " …" if len(wrong_values) > 20 else "" + return [ + "all-locale Hugo render selected wrong catalog values: " + + shown + + suffix + ] + return [] def check() -> int: english_order, english_blocks = translation_blocks(I18N / "en.yaml") english = set(english_order) + english_values = {key: scalar_value(block) for key, block in english_blocks.items()} failed = False - for path in sorted(I18N.glob("*.yaml")): + paths = sorted(I18N.glob("*.yaml")) + locales = {path.stem for path in paths} + missing_locales = sorted(OINK_LOCALES - locales) + extra_locales = sorted(locales - OINK_LOCALES) + if missing_locales or extra_locales: + failed = True + print("i18n locale set") + if missing_locales: + print(f" missing: {', '.join(missing_locales)}") + if extra_locales: + print(f" extra: {', '.join(extra_locales)}") + catalog_values: dict[str, dict[str, str]] = {} + for path in paths: + source = path.read_text(encoding="utf-8") order, blocks = translation_blocks(path) keys = set(order) missing = sorted(english - keys) @@ -85,6 +318,37 @@ def check() -> int: print(f" extra: {', '.join(extra)}") if duplicates: print(f" duplicate: {', '.join(duplicates)}") + markers = [marker for marker in FALLBACK_MARKERS if marker in source] + if markers: + failed = True + print(path.relative_to(ROOT)) + print(f" placeholder fallback markers: {', '.join(markers)}") + values: dict[str, str] = {} + for key, block in blocks.items(): + value = scalar_value(block) + if value is None: + failed = True + print(path.relative_to(ROOT)) + print(f" non-scalar or unsupported value for {key}") + continue + values[key] = value + if BIDI_CONTROL.search(value): + failed = True + print(path.relative_to(ROOT)) + print(f" hidden bidi control in {key}") + catalog_values[path.stem] = values + callout_labels: dict[str, list[str]] = {} + for key in CALLOUT_KEYS: + if key in values: + callout_labels.setdefault(values[key], []).append(key) + callout_collisions = [ + keys for keys in callout_labels.values() if len(keys) > 1 + ] + if callout_collisions: + failed = True + print(path.relative_to(ROOT)) + for collision in callout_collisions: + print(f" duplicate callout labels: {', '.join(collision)}") for key in sorted(english & keys): expected = placeholders(english_blocks[key]) actual = placeholders(blocks[key]) @@ -95,22 +359,47 @@ def check() -> int: f" placeholder mismatch for {key}: " f"expected {expected}, found {actual}" ) + if path.stem != "en": + identical = { + key for key, value in values.items() + if key in english_values and value == english_values[key] + } + allowed = UNIVERSAL_IDENTICAL | REVIEWED_IDENTICAL.get(path.stem, set()) + unexpected = sorted(identical - allowed) + if unexpected: + failed = True + print(path.relative_to(ROOT)) + print(f" unreviewed English-identical values: {', '.join(unexpected)}") + if catalog_values.get("zh") != catalog_values.get("zh-cn"): + failed = True + print("i18n/zh.yaml") + print(" generic zh must match the Simplified Chinese zh-cn catalog") + if "sr-cyrl" in catalog_values and "sr-latn" in catalog_values: + mismatched = sorted( + key for key, value in catalog_values["sr-cyrl"].items() + if value.translate(SERBIAN_TRANSLITERATION) + != catalog_values["sr-latn"].get(key) + ) + if mismatched: + failed = True + print("i18n/sr-latn.yaml") + print(f" differs from standard sr-cyrl transliteration: {', '.join(mismatched)}") + if not failed: + runtime_errors = check_hugo_runtime(english_order, catalog_values) + if runtime_errors: + failed = True + for error in runtime_errors: + print(error) if failed: return 1 - print(f"i18n key parity OK: {len(list(I18N.glob('*.yaml')))} locales, {len(english)} keys") + print( + f"i18n native catalogs OK: {len(paths)} locales, " + f"{len(english)} keys, placeholders, reviewed cognates, and Hugo runtime" + ) return 0 def main() -> int: - parser = argparse.ArgumentParser() - parser.add_argument( - "--sync", - action="store_true", - help="append missing English fallback blocks before checking", - ) - args = parser.parse_args() - if args.sync: - sync_fallbacks() return check() diff --git a/i18n/ar.yaml b/i18n/ar.yaml index 02d63cb..6c74a08 100644 --- a/i18n/ar.yaml +++ b/i18n/ar.yaml @@ -1,294 +1,207 @@ +# Alert labels +callout_caution: "تنبيه" +callout_important: "مهم" +callout_note: "ملاحظة" +callout_tip: "نصيحة" +callout_warning: "تحذير" +callout_success: "نجاح" +callout_danger: "خطر" +callout_question: "سؤال" +callout_example: "مثال" +callout_quote: "اقتباس" +callout_details: "التفاصيل" # UI strings. Buttons and similar. -ui_pager_prev: السَّابق -ui_pager_next: التَّالي -ui_search: اِبْحث فِي هذَا اَلموْقِع - +ui_pager_prev: "السابق" +ui_pager_next: "التالي" +ui_search: "ابحث…" +ui_search_empty: "لم يتم العثور على نتائج" +ui_search_loading: "جاري تحميل فهرس البحث…" +ui_search_results: "تم العثور على {count} نتيجة" +ui_search_nav: "تنقّل" +ui_search_open: "افتح" +ui_search_close: "أغلق" +ui_palette_actions: "إجراءات" +ui_palette_page_actions: "إجراءات الصفحة" +ui_palette_preferences: "التفضيلات" +ui_palette_commands: "الأوامر" +ui_palette_quick_links: "روابط سريعة" +ui_palette_no_commands: "لا توجد أوامر مطابقة" +ui_palette_choose: "اختر خيارًا" +ui_palette_action_failed: "تعذر إكمال الإجراء" +ui_palette_pages: "الصفحات" +ui_palette_index_unavailable: "فهرس الصفحة غير متاح؛ لكن الإجراءات ما زالت تعمل" +ui_sidebar_nav: "تنقل القسم" +ui_heading_self_link: "رابط إلى هذا العنوان" +ui_field_self_link: "رابط إلى هذا الحقل" +ui_preview_source: "Markdown" +ui_preview_rendered: "المعاينة" +ui_main_nav: "التنقل الرئيسي" +ui_home: "الرئيسية" +ui_sidebar_expand: "توسيع الشريط الجانبي" +ui_sidebar_collapse: "طي الشريط الجانبي" +ui_drawer_open: "افتح التنقل" +ui_drawer_close: "أغلق التنقل" +ui_root_menu_label: "اختر القسم" +ui_tags_title: "الوسوم" +ui_tag_title: "الوسم" +ui_categories_title: "الفئات" +ui_category_title: "الفئة" +ui_modules_title: "الوحدات" +ui_module_title: "وحدة" +ui_authors_title: "المؤلفون" +ui_author_title: "مؤلف" +ui_theme_toggle: "تبديل سمة الألوان" +ui_theme_auto: "النظام" +ui_theme_light: "فاتح" +ui_theme_dark: "داكن" +ui_toc_hide: "إخفاء جدول المحتويات" +ui_toc_show: "إظهار جدول المحتويات" +ui_language_select: "اختر اللغة" +ui_language_switch: "تبديل اللغة" +ui_skip_to_content: "الانتقال إلى المحتوى" +ui_page_actions: "إجراءات" +ui_open_in_chatgpt: "افتح في ChatGPT" +ui_open_in_claude: "افتح في Claude" +ui_open_in_prompt: "اقرأ من %s حتى أتمكن من طرح أسئلة عنها." +ui_copy_markdown: "نسخ Markdown" +ui_copy_success: "تم نسخ Markdown" +ui_copy_error: "تعذر نسخ Markdown" +ui_share: "مشاركة" +ui_share_email: "البريد الإلكتروني" +ui_copy_link: "نسخ الرابط" +ui_copy_link_success: "تم نسخ الرابط" +ui_copy_link_error: "تعذر نسخ الرابط" +ui_code_copy_label: "نسخ الكود" +ui_code_copied: "تم النسخ" +ui_code_copy_error: "فشل النسخ" +ui_code_show_all: "إظهار جميع {{ .Count }} الأسطر" +ui_code_collapse: "طي الكود" +ui_tabs_label: "علامات التبويب" +ui_pricing_featured: "مُوصى به" +ui_pricing_included: "مُدرج" +ui_pricing_excluded: "غير مُدرج" +ui_marquee_pause: "إيقاف الحركة" +ui_kbd_with: "مع" +ui_keyboard_shortcuts: "اختصارات لوحة المفاتيح" +ui_shortcut_tree_move: "التنقل في الشريط الجانبي" +ui_shortcut_tree_toggle: "طي أو فتح القسم" +ui_shortcut_tree_open: "افتح الصفحة التي عليها التركيز" +ui_shortcut_heading_move: "العنوان السابق أو التالي" +ui_shortcut_page_move: "الصفحة السابقة أو التالية" +ui_shortcut_search: "البحث" +ui_shortcut_commands: "لوحة الأوامر" +ui_shortcut_reading_mode: "وضع القراءة" +ui_shortcut_language: "تبديل اللغة" +ui_shortcut_theme: "تبديل السمة" +ui_shortcut_route: "تنقّل بين صفحات المستوى الأعلى" +ui_page_annotation: "معلومات الصفحة" +ui_backlinks: "الروابط العكسية" +ui_backlinks_more: "عرض {{ . }} إضافيًا" +ui_field_required: "مطلوب" +ui_action_unavailable: "غير متاح" +ui_image_zoom_dialog: "معاينة الصورة" +ui_image_zoom_open: "افتح معاينة الصورة" +ui_image_zoom_close: "أغلق معاينة الصورة" +ui_diagram_expand: "تكبير الرسم التوضيحي" +ui_diagram_zoom_dialog: "معاينة الرسم التوضيحي" +ui_diagram_zoom_close: "أغلق معاينة الرسم التوضيحي" +ui_diagram_zoom_in: "تكبير" +ui_diagram_zoom_out: "تصغير" +ui_diagram_zoom_reset: "إعادة تعيين العرض" +ui_diagram_error: "تعذر عرض الرسم التوضيحي" +ui_print_page: "طباعة هذه الصفحة" +ui_sidebar_expand_section: "توسيع القسم" +ui_sidebar_collapse_section: "طي القسم" +ui_asciinema_timer: "وقت التشغيل" +ui_openapi_spec: "مواصفات OpenAPI" +ui_release_view: "عرض الإصدار" +ui_release_source: "المصدر" +ui_release_released: "تم الإصدار" +ui_assets_file: "ملف" +ui_assets_checksum: "مُجموع التحقق" +ui_assets_copy: "نسخ مجموع التحقق" +ui_assets_copied: "تم النسخ" +ui_assets_copy_all: "نسخ جميع مجموعات التحقق" +ui_assets_download: "تنزيل الملف" +ui_download_channels: "قنوات التنزيل" +ui_download_unpublished: "بانتظار الإصدار" # Used in sentences such as "All Tags" -ui_all: كُلَّ - +ui_all: "الكل" +ui_list_separator: "، " +ui_blog_index_toggle: "تبديل التخطيط" # Footer text -footer_all_rights_reserved: كَافَّة اَلحُقوق مَحفُوظة - +footer_all_rights_reserved: "جميع الحقوق محفوظة" +ui_footer_collapse: "إخفاء روابط التذييل" +ui_footer_expand: "إظهار روابط التذييل" # Post (blog, article, etc.) -post_last_mod: آخر تَعدِيل -post_edit_this: عدل هَذِه الصَّفْحة -post_view_markdown: اعرض Markdown -post_create_child_page: أُنْشِئ صَفحَة فَرعِية -post_create_issue: أُنْشِئ مَسْأَلة حَوْل الوثائق -post_create_project_issue: أُنْشِئ مَسْأَلة حَوْل المشْروع -post_reading_time: دَقِيقَة لِلْقراءة -post_less_than_a_minute_read: أقلَّ مِن دَقِيقَة - +post_last_mod: "آخر تعديل" +post_upstream: "{{ .work }}، {{ .copyright }}، بموجب {{ .license }}. راجع {{ .notice }}." +post_upstream_adapted: "مقتبس من {{ .work }}، {{ .copyright }}، بموجب {{ .license }}. راجع {{ .notice }} و{{ .history }}." +post_upstream_adapted_plain: "مقتبس من {{ .work }}، {{ .copyright }}، بموجب {{ .license }}. راجع {{ .notice }}." +post_upstream_notice: "الإسناد" +post_upstream_history: "سجل التغييرات" +post_translated: "هذه الصفحة ترجمة؛ يُعتدّ بـ {{ .original }} عند الاختلاف." +post_translated_original: "الأصل" +post_edit_this: "تعديل هذه الصفحة" +post_view_markdown: "عرض Markdown" +post_create_child_page: "إنشاء صفحة فرعية" +post_create_issue: "إنشاء مشكلة في الوثائق" +post_create_project_issue: "إنشاء مشكلة في المشروع" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "بواسطة {{ .Authors }} · في {{ .Section }}" +post_meta_in: "في {{ .Section }}" +post_reading_time: "دقائق قراءة" +post_less_than_a_minute_read: "أقل من دقيقة" +post_word_count: "{{ .Count }} كلمة" +post_reading_minutes: "{{ .Minutes }} دقيقة" +post_read_original: "اقرأ المزيد" # Print support -print_printable_section: >- - هذَا العرْض يَتَضمَّن عِدَّة صَفَحات لِلطِّباعة ضِمْن هذَا القسْم. -print_click_to_print: اِضْغط هُنَا لِلطِّباعة -print_show_regular: اَلْعَودة لِلْعرْض العاديِّ -print_entire_section: اِطْبع القسْم كاملا - +print_printable_section: "هذا هو العرض القابل للطباعة متعدد الصفحات لهذا القسم." +print_click_to_print: "انقر هنا للطباعة" +print_show_regular: "العودة إلى العرض العادي لهذه الصفحة" +print_entire_section: "طباعة القسم بالكامل" # Feedback -feedback_question: هل كَانَت هَذِه الصَّفْحة مُفيدَة -feedback_positive: نعم -feedback_negative: لََا - -# Replace these values with reviewed translations when available. -callout_caution: Caution -callout_important: Important -callout_note: Note -callout_tip: Tip -callout_warning: Warning - -# UI strings. Buttons and similar. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -toc_on_this_page: Content - +feedback_question: "هل كانت هذه الصفحة مفيدة؟" +feedback_positive: "نعم" +feedback_negative: "لا" +feedback_thanks: "شكرًا—تُسهم ملاحظاتك في تحسين هذه الصفحة." +feedback_reason_prompt: "ما الذي عرقل ذلك؟ (اختياري)" +feedback_reason_missing: "معلومات مفقودة" +feedback_reason_outdated: "غير دقيقة أو قديمة" +feedback_reason_failed: "الخطوات لم تنجح" +feedback_reason_unclear: "صعبة الفهم" +feedback_details: "أضف تفاصيل في التعليقات" +feedback_change: "تغيير الرد" +# Table of contents +toc_on_this_page: "المحتوى" # Error pages -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +error_404_title: "الصفحة غير موجودة" +error_404_body: "عذرًا، هذه الصفحة غير موجودة. حاول البدء من الصفحة الرئيسية." +error_404_home: "الذهاب إلى الصفحة الرئيسية" +# Version banner +version_banner_archived: "لم تعد وثائق الإصدار {{ .Version }} تُصان بنشاط. الموقع الذي تشاهده الآن نسخة مؤرشفة." +version_banner_latest: "للحصول على وثائق محدثة، راجع {{ .Link }}." +version_banner_latest_link: "الإصدار الأحدث" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "يُشترط تشغيل JavaScript لتحميل التعليقات." +comments_noscript_link: "عرض المناقشات على GitHub." +# LLM page actions +ui_open_in_prompt_label: "اسأل عن هذه الصفحة" +ui_view_history: "عرض سجل التعديلات" +ui_table_scroll: "جدول قابل للتمرير" +ui_filetree_divider: "غيّر عرض عمود التعليقات بجوار شجرة الملفات" +book_figure: "الشكل" +book_table: "الجدول" +book_equation: "المعادلة" +book_example: "مثال" +book_toc: "محتويات الكتاب" +book_draft: "مسودة" +book_draft_notice: "هذا الفصل ما زال قيد المراجعة." +contributors_count: "مساهمون" +# Article series +ui_series_title: "السلسلة" +ui_series_part: "الجزء {{ .Part }} من {{ .Total }}" +# Markdown output +markdown_llms_index: "فهرس LLMS:" +markdown_section_pages: "صفحات القسم:" +markdown_backlinks: "الروابط العكسية:" diff --git a/i18n/az.yaml b/i18n/az.yaml index f08998e..f8e1b7e 100644 --- a/i18n/az.yaml +++ b/i18n/az.yaml @@ -1,293 +1,207 @@ +# Alert labels +callout_caution: "Diqqət" +callout_important: "Əhəmiyyətli" +callout_note: "Qeyd" +callout_tip: "Məsləhət" +callout_warning: "Xəbərdarlıq" +callout_success: "Uğurlu" +callout_danger: "Təhlükə" +callout_question: "Sual" +callout_example: "Nümunə" +callout_quote: "İstinad" +callout_details: "Ətraflı məlumat" # UI strings. Buttons and similar. -ui_pager_prev: Əvvəlki -ui_pager_next: Növbəti -ui_search: Bu saytda axtarın... - +ui_pager_prev: "Əvvəlki" +ui_pager_next: "Növbəti" +ui_search: "Axtarış…" +ui_search_empty: "Nəticə tapılmadı" +ui_search_loading: "Axtarış indeksi yüklənir…" +ui_search_results: "{count} nəticə tapıldı" +ui_search_nav: "Naviqasiya et" +ui_search_open: "Aç" +ui_search_close: "Bağla" +ui_palette_actions: "Əməliyyatlar" +ui_palette_page_actions: "Səhifə əməliyyatları" +ui_palette_preferences: "Tənzimləmələr" +ui_palette_commands: "Əmrlər" +ui_palette_quick_links: "Tez keçidlər" +ui_palette_no_commands: "Uyğun əmr yoxdur" +ui_palette_choose: "Seçim edin" +ui_palette_action_failed: "Əməliyyat tamamlanmadı" +ui_palette_pages: "Səhifələr" +ui_palette_index_unavailable: "Səhifə indeksi mövcud deyil; əməliyyatlar davam edir" +ui_sidebar_nav: "Bölmə naviqasiyası" +ui_heading_self_link: "Bu başlığa keçid" +ui_field_self_link: "Bu sahə üçün keçid" +ui_preview_source: "Markdown" +ui_preview_rendered: "Göstərilən" +ui_main_nav: "Əsas naviqasiya" +ui_home: "Əsas səhifə" +ui_sidebar_expand: "Yan paneli genişləndir" +ui_sidebar_collapse: "Yan paneli yığ" +ui_drawer_open: "Naviqasiyanı aç" +ui_drawer_close: "Naviqasiyanı bağla" +ui_root_menu_label: "Bölmə seçin" +ui_tags_title: "Etiketlər" +ui_tag_title: "Etiket" +ui_categories_title: "Kateqoriyalar" +ui_category_title: "Kateqoriya" +ui_modules_title: "Modullar" +ui_module_title: "Modul" +ui_authors_title: "Müəlliflər" +ui_author_title: "Müəllif" +ui_theme_toggle: "Rəng mövzusunu dəyiş" +ui_theme_auto: "Sistem" +ui_theme_light: "Açıq" +ui_theme_dark: "Tünd" +ui_toc_hide: "Məzmun siyahısını gizlət" +ui_toc_show: "Məzmun siyahısını göstər" +ui_language_select: "Dil seçin" +ui_language_switch: "Dil dəyişdir" +ui_skip_to_content: "Məzmuna keç" +ui_page_actions: "Əməliyyatlar" +ui_open_in_chatgpt: "ChatGPT-də aç" +ui_open_in_claude: "Claude-də aç" +ui_open_in_prompt: "%s mənbəsini oxuyun ki, onun haqqında sual verə bilim." +ui_copy_markdown: "Markdown-ı kopyala" +ui_copy_success: "Markdown kopyalandı" +ui_copy_error: "Markdown kopyalanmadı" +ui_share: "Paylaş" +ui_share_email: "E-poçt" +ui_copy_link: "Keçidi kopyala" +ui_copy_link_success: "Keçid kopyalandı" +ui_copy_link_error: "Keçid kopyalanmadı" +ui_code_copy_label: "Kodu kopyala" +ui_code_copied: "Kopyalandı" +ui_code_copy_error: "Kopyalama uğursuz oldu" +ui_code_show_all: "{{ .Count }} sətir göstər" +ui_code_collapse: "Kodu daralt" +ui_tabs_label: "Nişanlar" +ui_pricing_featured: "Tövsiyə olunur" +ui_pricing_included: "Daxildir" +ui_pricing_excluded: "Daxil deyil" +ui_marquee_pause: "Hərəkəti dayandır" +ui_kbd_with: "ilə" +ui_keyboard_shortcuts: "Klaviatura qısayolları" +ui_shortcut_tree_move: "Yan paneldə hərəkət et" +ui_shortcut_tree_toggle: "Bölməni daralt və ya genişləndir" +ui_shortcut_tree_open: "Fokusdakı səhifəni aç" +ui_shortcut_heading_move: "Əvvəlki və ya növbəti başlıq" +ui_shortcut_page_move: "Əvvəlki və ya növbəti səhifə" +ui_shortcut_search: "Axtarış" +ui_shortcut_commands: "Əmr paleti" +ui_shortcut_reading_mode: "Oxuma rejimi" +ui_shortcut_language: "Dil dəyişdir" +ui_shortcut_theme: "Mövzunu dəyiş" +ui_shortcut_route: "Yuxarı səviyyəli səhifələr arasında keçid et" +ui_page_annotation: "Səhifə məlumatı" +ui_backlinks: "Geriyə keçidlər" +ui_backlinks_more: "{{ . }} daha göstər" +ui_field_required: "tələb olunur" +ui_action_unavailable: "mövcud deyil" +ui_image_zoom_dialog: "Şəkil ön baxışı" +ui_image_zoom_open: "Şəkil ön baxışını aç" +ui_image_zoom_close: "Şəkil ön baxışını bağla" +ui_diagram_expand: "Diaqramı böyüt" +ui_diagram_zoom_dialog: "Diaqram ön baxışı" +ui_diagram_zoom_close: "Diaqram ön baxışını bağla" +ui_diagram_zoom_in: "Yaxınlaşdır" +ui_diagram_zoom_out: "Uzaqlaşdır" +ui_diagram_zoom_reset: "Baxışı sıfırla" +ui_diagram_error: "Diaqram göstərilə bilmədi" +ui_print_page: "Bu səhifəni çap et" +ui_sidebar_expand_section: "Bölməni genişləndir" +ui_sidebar_collapse_section: "Bölməni daralt" +ui_asciinema_timer: "Oynatma vaxtı" +ui_openapi_spec: "OpenAPI spesifikasiyası" +ui_release_view: "Buraxılışa bax" +ui_release_source: "Mənbə" +ui_release_released: "Buraxılıb" +ui_assets_file: "Fayl" +ui_assets_checksum: "Yoxlama cəmi" +ui_assets_copy: "Yoxlama cəmini kopyala" +ui_assets_copied: "Kopyalandı" +ui_assets_copy_all: "Bütün yoxlama cəmlərini kopyala" +ui_assets_download: "Faylı endir" +ui_download_channels: "Yükləmə kanalları" +ui_download_unpublished: "Buraxılış gözlənilir" # Used in sentences such as "All Tags" -ui_all: bütün - +ui_all: "bütün" +ui_list_separator: ", " +ui_blog_index_toggle: "Düzəni dəyiş" # Footer text -footer_all_rights_reserved: Bütün Hüquqlar Qorunur - -# Post (blog, articles etc.) -post_last_mod: Son redaktə -post_edit_this: Bu səhifəni redaktə edin -post_create_child_page: Alt səhifə yaradın -post_create_issue: Sənəd mövzusu yaradın -post_create_project_issue: Layihə mövzusu yaradın -post_reading_time: dəqiqə oxuma -post_less_than_a_minute_read: 1 dəqiqədən az - +footer_all_rights_reserved: "Bütün Hüquqlar Qorunur" +ui_footer_collapse: "Altbilgi keçidlərini gizlət" +ui_footer_expand: "Altbilgi keçidlərini göstər" +# Post (blog, article, etc.) +post_last_mod: "Son redaktə" +post_upstream: "{{ .work }}, {{ .copyright }}, {{ .license }} lisenziyası əsasında. {{ .notice }} bölməsinə baxın." +post_upstream_adapted: "{{ .work }} əsasında uyğunlaşdırılıb, {{ .copyright }}, {{ .license }} lisenziyası ilə. {{ .notice }} və {{ .history }} bölmələrinə baxın." +post_upstream_adapted_plain: "{{ .work }} əsasında uyğunlaşdırılıb, {{ .copyright }}, {{ .license }} lisenziyası ilə. {{ .notice }} bölməsinə baxın." +post_upstream_notice: "mənbə göstərilməsi" +post_upstream_history: "dəyişiklik tarixi" +post_translated: "Bu səhifə tərcümədir; {{ .original }} əsas götürülür." +post_translated_original: "orijinal" +post_edit_this: "Bu səhifəni redaktə edin" +post_view_markdown: "Markdown göstər" +post_create_child_page: "Alt səhifə yaradın" +post_create_issue: "Sənədləşdirmə məsələsi yarat" +post_create_project_issue: "Layihə məsələsi yarat" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "{{ .Authors }} tərəfindən · {{ .Section }} bölməsində" +post_meta_in: "{{ .Section }} bölməsində" +post_reading_time: "dəqiqəlik oxunuş" +post_less_than_a_minute_read: "1 dəqiqədən az" +post_word_count: "{{ .Count }} sözdən ibarət" +post_reading_minutes: "{{ .Minutes }} dəqiqə" +post_read_original: "Ətraflı oxu" # Print support -print_printable_section: Bu bölmə çap üçün uyğundur. -print_click_to_print: Çap etmək üçün klikləyin -print_show_regular: Bu səhifənin adi görünüşünə qayıdın -print_entire_section: Bütün bölməni çap edin - +print_printable_section: "Bu bölmənin çap üçün çox səhifəli nüsxəsidir." +print_click_to_print: "Çap etmək üçün klikləyin" +print_show_regular: "Bu səhifənin adi görünüşünə qayıdın" +print_entire_section: "Bütün bölməni çap et" # Feedback -feedback_question: Bu səhifə sizin üçün faydalı oldu? -feedback_positive: Bəli -feedback_negative: Xeyr - -# Replace these values with reviewed translations when available. -callout_caution: Caution -callout_important: Important -callout_note: Note -callout_tip: Tip -callout_warning: Warning - -# UI strings. Buttons and similar. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -post_view_markdown: View Markdown -toc_on_this_page: Content - +feedback_question: "Bu səhifə sizin üçün faydalı oldu?" +feedback_positive: "Bəli" +feedback_negative: "Xeyr" +feedback_thanks: "Təşəkkür edirik—rəyiniz bu səhifəni təkmilləşdirməyimizə kömək edir." +feedback_reason_prompt: "Nə mane oldu? (ixtiyari)" +feedback_reason_missing: "Çatışmayan məlumat" +feedback_reason_outdated: "Yanlış və ya qeyri-aktual" +feedback_reason_failed: "Addımlar işləmədi" +feedback_reason_unclear: "Anlaşılmazdır" +feedback_details: "Şərhlərdə ətraflı məlumat əlavə edin" +feedback_change: "Cavabı dəyişdir" +# Table of contents +toc_on_this_page: "Məzmun" # Error pages -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +error_404_title: "Səhifə tapılmadı" +error_404_body: "Təəssüf ki, bu səhifə mövcud deyil. Əsas səhifədən yenidən başlayın." +error_404_home: "Əsas səhifəyə keçin" +# Version banner +version_banner_archived: "Sənədlərin {{ .Version }} versiyası artıq aktiv dəstəklənmir. İndi baxdığınız sayt arxivləşdirilmiş nüsxədir." +version_banner_latest: "Yenilənmiş sənədlər: {{ .Link }}." +version_banner_latest_link: "son versiya" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "Şərhləri yükləmək üçün JavaScript lazımdır." +comments_noscript_link: "GitHub-da müzakirələri gör." +# LLM page actions +ui_open_in_prompt_label: "Bu səhifə haqqında soruş" +ui_view_history: "Redaktə tarixini gör" +ui_table_scroll: "Sürüşdürülə bilən cədvəl" +ui_filetree_divider: "Fayl ağacının yanındakı şərh sütununun ölçüsünü dəyiş" +book_figure: "Şəkil" +book_table: "Cədvəl" +book_equation: "Tənlik" +book_example: "Nümunə" +book_toc: "Kitabın mündəricatı" +book_draft: "Qaralama" +book_draft_notice: "Bu fəsil hələ də redaktə olunur." +contributors_count: "töhfə verənlər" +# Article series +ui_series_title: "Seriya" +ui_series_part: "Hissə {{ .Part }} / {{ .Total }}" +# Markdown output +markdown_llms_index: "LLMS indeksi:" +markdown_section_pages: "Bölmə səhifələri:" +markdown_backlinks: "Geriyə keçidlər:" diff --git a/i18n/bg.yaml b/i18n/bg.yaml index 699f09a..a4f2f8b 100644 --- a/i18n/bg.yaml +++ b/i18n/bg.yaml @@ -1,293 +1,207 @@ +# Alert labels +callout_caution: "Внимание" +callout_important: "Важно" +callout_note: "Забележка" +callout_tip: "Съвет" +callout_warning: "Предупреждение" +callout_success: "Успех" +callout_danger: "Опасност" +callout_question: "Въпрос" +callout_example: "Пример" +callout_quote: "Цитат" +callout_details: "Детайли" # UI strings. Buttons and similar. -ui_pager_prev: Предишен -ui_pager_next: Следващ -ui_search: Търси в тази страница… - +ui_pager_prev: "Предишен" +ui_pager_next: "Следващ" +ui_search: "Търси…" +ui_search_empty: "Няма намерени резултати" +ui_search_loading: "Зареждане на индекса за търсене…" +ui_search_results: "Намерени резултати: {count}" +ui_search_nav: "Навигирай" +ui_search_open: "Отвори" +ui_search_close: "Затвори" +ui_palette_actions: "Действия" +ui_palette_page_actions: "Действия на страницата" +ui_palette_preferences: "Настройки" +ui_palette_commands: "Команди" +ui_palette_quick_links: "Бързи връзки" +ui_palette_no_commands: "Няма съвпадащи команди" +ui_palette_choose: "Изберете опция" +ui_palette_action_failed: "Действието не можа да бъде изпълнено" +ui_palette_pages: "Страници" +ui_palette_index_unavailable: "Индексът на страниците е недостъпен; действията все още работят" +ui_sidebar_nav: "Навигация в раздела" +ui_heading_self_link: "Връзка към това заглавие" +ui_field_self_link: "Връзка към това поле" +ui_preview_source: "Markdown" +ui_preview_rendered: "Предварителен преглед" +ui_main_nav: "Главно навигационно меню" +ui_home: "Начало" +ui_sidebar_expand: "Разшири страничната лента" +ui_sidebar_collapse: "Свий страничната лента" +ui_drawer_open: "Отвори навигацията" +ui_drawer_close: "Затвори навигацията" +ui_root_menu_label: "Изберете секция" +ui_tags_title: "Етикети" +ui_tag_title: "Етикет" +ui_categories_title: "Категории" +ui_category_title: "Категория" +ui_modules_title: "Модули" +ui_module_title: "Модул" +ui_authors_title: "Автори" +ui_author_title: "Автор" +ui_theme_toggle: "Превключи темата" +ui_theme_auto: "Системна" +ui_theme_light: "Светла" +ui_theme_dark: "Тъмна" +ui_toc_hide: "Скрий съдържанието" +ui_toc_show: "Покажи съдържанието" +ui_language_select: "Изберете език" +ui_language_switch: "Промени езика" +ui_skip_to_content: "Прескочи към съдържанието" +ui_page_actions: "Действия" +ui_open_in_chatgpt: "Отвори в ChatGPT" +ui_open_in_claude: "Отвори в Claude" +ui_open_in_prompt: "Прочети от %s, за да мога да задам въпроси за него." +ui_copy_markdown: "Копирай Markdown" +ui_copy_success: "Markdown копиран" +ui_copy_error: "Не може да се копира Markdown" +ui_share: "Сподели" +ui_share_email: "Имейл" +ui_copy_link: "Копирай връзката" +ui_copy_link_success: "Връзката копирана" +ui_copy_link_error: "Не може да се копира връзката" +ui_code_copy_label: "Копирай кода" +ui_code_copied: "Копирано" +ui_code_copy_error: "Копирането не успя" +ui_code_show_all: "Покажи всички {{ .Count }} реда" +ui_code_collapse: "Свий кода" +ui_tabs_label: "Раздели" +ui_pricing_featured: "Препоръчано" +ui_pricing_included: "Включено" +ui_pricing_excluded: "Не е включено" +ui_marquee_pause: "Пауза на движението" +ui_kbd_with: "с" +ui_keyboard_shortcuts: "Бързи клавиши" +ui_shortcut_tree_move: "Навигация в страничната лента" +ui_shortcut_tree_toggle: "Свий или разшири секция" +ui_shortcut_tree_open: "Отвори фокусираната страница" +ui_shortcut_heading_move: "Предишно или следващо заглавие" +ui_shortcut_page_move: "Предишна или следваща страница" +ui_shortcut_search: "Търсене" +ui_shortcut_commands: "Палета с команди" +ui_shortcut_reading_mode: "Режим на четене" +ui_shortcut_language: "Промени езика" +ui_shortcut_theme: "Промени темата" +ui_shortcut_route: "Превключи между страниците от най-горно ниво" +ui_page_annotation: "Информация за страницата" +ui_backlinks: "Обратни връзки" +ui_backlinks_more: "Покажи още {{ . }}" +ui_field_required: "задължително" +ui_action_unavailable: "недостъпно" +ui_image_zoom_dialog: "Преглед на изображението" +ui_image_zoom_open: "Отвори преглед на изображението" +ui_image_zoom_close: "Затвори преглед на изображението" +ui_diagram_expand: "Увеличи диаграмата" +ui_diagram_zoom_dialog: "Преглед на диаграмата" +ui_diagram_zoom_close: "Затвори прегледа на диаграмата" +ui_diagram_zoom_in: "Увеличи" +ui_diagram_zoom_out: "Намали" +ui_diagram_zoom_reset: "Възстанови изгледа" +ui_diagram_error: "Диаграмата не може да бъде показана" +ui_print_page: "Печат на тази страница" +ui_sidebar_expand_section: "Разшири секцията" +ui_sidebar_collapse_section: "Свий секцията" +ui_asciinema_timer: "Време за възпроизвеждане" +ui_openapi_spec: "OpenAPI спецификация" +ui_release_view: "Преглед на изданието" +ui_release_source: "Източник" +ui_release_released: "Публикувано" +ui_assets_file: "Файл" +ui_assets_checksum: "Контролна сума" +ui_assets_copy: "Копирай контролната сума" +ui_assets_copied: "Копирано" +ui_assets_copy_all: "Копирай всички контролни суми" +ui_assets_download: "Изтегли файл" +ui_download_channels: "Канали за изтегляне" +ui_download_unpublished: "Очаква публикуване" +# Used in sentences such as "All Tags" +ui_all: "всички" +ui_list_separator: ", " +ui_blog_index_toggle: "Промени оформлението" # Footer text -footer_all_rights_reserved: Всички права запазени! - +footer_all_rights_reserved: "Всички права запазени" +ui_footer_collapse: "Скрий връзките в подножието" +ui_footer_expand: "Покажи връзките в подножието" # Post (blog, article, etc.) -post_last_mod: Последна промяна -post_edit_this: Промени тази страница -post_create_child_page: Създай дъщерна страница -post_view_markdown: Преглед на Markdown -post_create_issue: Създаване на издаване на документ -post_create_project_issue: Създаване на издаване на проект -post_reading_time: minute read -post_less_than_a_minute_read: less than a minute - +post_last_mod: "Последна промяна" +post_upstream: "{{ .work }}, {{ .copyright }}, съгласно {{ .license }}. Вижте {{ .notice }}." +post_upstream_adapted: "Адаптирано от {{ .work }}, {{ .copyright }}, съгласно {{ .license }}. Вижте {{ .notice }} и {{ .history }}." +post_upstream_adapted_plain: "Адаптирано от {{ .work }}, {{ .copyright }}, съгласно {{ .license }}. Вижте {{ .notice }}." +post_upstream_notice: "авторство" +post_upstream_history: "история на промените" +post_translated: "Тази страница е превод; {{ .original }} има предимство." +post_translated_original: "оригиналът" +post_edit_this: "Промени тази страница" +post_view_markdown: "Преглед на Markdown" +post_create_child_page: "Създай дъщерна страница" +post_create_issue: "Създай проблем в документацията" +post_create_project_issue: "Създай проблем в проекта" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "От {{ .Authors }} · В {{ .Section }}" +post_meta_in: "В {{ .Section }}" +post_reading_time: "минути четене" +post_less_than_a_minute_read: "по-малко от минута" +post_word_count: "{{ .Count }} думи" +post_reading_minutes: "{{ .Minutes }} мин" +post_read_original: "Прочети повече" # Print support -print_printable_section: Изглед за печат на този раздел, в режим много страници -print_click_to_print: Натисни тук за отпечатване -print_show_regular: Върнете се към обичайния изглед на тази страница -print_entire_section: Отпечатайте цялата секция - -# Replace these values with reviewed translations when available. -callout_caution: Caution -callout_important: Important -callout_note: Note -callout_tip: Tip -callout_warning: Warning - -# UI strings. Buttons and similar. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -ui_all: all - -# Footer text -feedback_question: Was this page helpful? -feedback_positive: Yes -feedback_negative: No - +print_printable_section: "Това е многостраничният изглед за печат на този раздел." +print_click_to_print: "Натисни тук за отпечатване" +print_show_regular: "Върнете се към обичайния изглед на тази страница" +print_entire_section: "Отпечатай целия раздел" +# Feedback +feedback_question: "Беше ли полезна тази страница?" +feedback_positive: "Да" +feedback_negative: "Не" +feedback_thanks: "Благодарим — обратната връзка ни помага да подобрим тази страница." +feedback_reason_prompt: "Какво пречеше? (по избор)" +feedback_reason_missing: "Липсваща информация" +feedback_reason_outdated: "Неточна или остаряла" +feedback_reason_failed: "Стъпките не работиха" +feedback_reason_unclear: "Трудно за разбиране" +feedback_details: "Добавете подробности в коментарите" +feedback_change: "Промени отговора" # Table of contents -toc_on_this_page: Content - +toc_on_this_page: "Съдържание" # Error pages -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +error_404_title: "Страницата не е намерена" +error_404_body: "Съжаляваме, тази страница не съществува. Опитайте отново от началната страница." +error_404_home: "Отиди на началната страница" +# Version banner +version_banner_archived: "Версия {{ .Version }} на документацията вече не се поддържа активно. Сайтът, който виждате, е архивно копие." +version_banner_latest: "Актуална документация: {{ .Link }}." +version_banner_latest_link: "най-новата версия" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "За зареждане на коментарите е необходим JavaScript." +comments_noscript_link: "Вижте дискусии на GitHub." +# LLM page actions +ui_open_in_prompt_label: "Задай въпрос за тази страница" +ui_view_history: "Преглед на историята на промените" +ui_table_scroll: "Таблица с превъртане" +ui_filetree_divider: "Промени размера на колоната за коментари до дървото на файловете" +book_figure: "Фигура" +book_table: "Таблица" +book_equation: "Уравнение" +book_example: "Пример" +book_toc: "Съдържание на книгата" +book_draft: "Чернова" +book_draft_notice: "Тази глава все още се преработва." +contributors_count: "сътрудници" +# Article series +ui_series_title: "Серия" +ui_series_part: "Част {{ .Part }} от {{ .Total }}" +# Markdown output +markdown_llms_index: "Индекс на LLMS:" +markdown_section_pages: "Страници на секцията:" +markdown_backlinks: "Обратни връзки:" diff --git a/i18n/bn.yaml b/i18n/bn.yaml index 9b31faf..7f5501f 100644 --- a/i18n/bn.yaml +++ b/i18n/bn.yaml @@ -1,293 +1,207 @@ # Alert labels -callout_caution: সাবধানতা -callout_important: গুরুত্বপূর্ণ -callout_note: নোট -callout_tip: টিপ -callout_warning: সতর্কতা - -# ইউআই স্ট্রিং বাটন এবং অনুরূপ। -ui_pager_prev: পূর্ববর্তী -ui_pager_next: পরবর্তী -ui_search: এই সাইটে খোঁজ করুন… - +callout_caution: "সাবধানতা" +callout_important: "গুরুত্বপূর্ণ" +callout_note: "নোট" +callout_tip: "টিপ" +callout_warning: "সতর্কবার্তা" +callout_success: "সফলতা" +callout_danger: "বিপদ" +callout_question: "প্রশ্ন" +callout_example: "উদাহরণ" +callout_quote: "উদ্ধৃতি" +callout_details: "বিস্তারিত" +# UI strings. Buttons and similar. +ui_pager_prev: "পূর্ববর্তী" +ui_pager_next: "পরবর্তী" +ui_search: "খুঁজুন…" +ui_search_empty: "কোনো ফলাফল পাওয়া যায়নি" +ui_search_loading: "খোঁজ সূচী লোড হচ্ছে…" +ui_search_results: "{count}টি ফলাফল পাওয়া গেছে" +ui_search_nav: "নেভিগেট করুন" +ui_search_open: "খুলুন" +ui_search_close: "বন্ধ করুন" +ui_palette_actions: "ক্রিয়াকলাপ" +ui_palette_page_actions: "পৃষ্ঠা ক্রিয়াকলাপ" +ui_palette_preferences: "পছন্দ" +ui_palette_commands: "কমান্ড" +ui_palette_quick_links: "দ্রুত লিঙ্ক" +ui_palette_no_commands: "মিল করা কমান্ড নেই" +ui_palette_choose: "একটি বিকল্প নির্বাচন করুন" +ui_palette_action_failed: "ক্রিয়াকলাপ সম্পন্ন করা যায়নি" +ui_palette_pages: "পৃষ্ঠা" +ui_palette_index_unavailable: "পৃষ্ঠা সূচী অনুপলব্ধ; ক্রিয়াকলাপগুলি এখনও কাজ করে" +ui_sidebar_nav: "বিভাগ নেভিগেশন" +ui_heading_self_link: "এই শিরোনামের লিঙ্ক" +ui_field_self_link: "এই ফিল্ডের লিঙ্ক" +ui_preview_source: "Markdown" +ui_preview_rendered: "প্রদর্শিত" +ui_main_nav: "মূল নেভিগেশন" +ui_home: "হোম" +ui_sidebar_expand: "সাইডবার প্রসারিত করুন" +ui_sidebar_collapse: "সাইডবার সংকুচিত করুন" +ui_drawer_open: "নেভিগেশন খুলুন" +ui_drawer_close: "নেভিগেশন বন্ধ করুন" +ui_root_menu_label: "বিভাগ নির্বাচন করুন" +ui_tags_title: "ট্যাগ" +ui_tag_title: "ট্যাগ" +ui_categories_title: "বিভাগ" +ui_category_title: "বিভাগ" +ui_modules_title: "মডিউল" +ui_module_title: "মডিউল" +ui_authors_title: "লেখক" +ui_author_title: "লেখক" +ui_theme_toggle: "রঙের থিম পরিবর্তন করুন" +ui_theme_auto: "সিস্টেম" +ui_theme_light: "হালকা" +ui_theme_dark: "গাঢ়" +ui_toc_hide: "সূচিপত্র লুকান" +ui_toc_show: "সূচিপত্র দেখান" +ui_language_select: "ভাষা নির্বাচন করুন" +ui_language_switch: "ভাষা স্যুইচ করুন" +ui_skip_to_content: "কনটেন্টে সরাসরি যান" +ui_page_actions: "ক্রিয়াকলাপ" +ui_open_in_chatgpt: "ChatGPT-এ খুলুন" +ui_open_in_claude: "Claude-এ খুলুন" +ui_open_in_prompt: "%s থেকে পড়ুন যাতে আমি এর সম্পর্কে প্রশ্ন করতে পারি।" +ui_copy_markdown: "Markdown কপি করুন" +ui_copy_success: "Markdown কপি করা হয়েছে" +ui_copy_error: "Markdown কপি করা যায়নি" +ui_share: "শেয়ার করুন" +ui_share_email: "ইমেইল" +ui_copy_link: "লিঙ্ক কপি করুন" +ui_copy_link_success: "লিঙ্ক কপি করা হয়েছে" +ui_copy_link_error: "লিঙ্ক কপি করা যায়নি" +ui_code_copy_label: "কোড কপি করুন" +ui_code_copied: "কপি করা হয়েছে" +ui_code_copy_error: "কপি ব্যর্থ হয়েছে" +ui_code_show_all: "সব {{ .Count }}টি লাইন দেখান" +ui_code_collapse: "কোড সংকুচিত করুন" +ui_tabs_label: "ট্যাব" +ui_pricing_featured: "প্রস্তাবিত" +ui_pricing_included: "অন্তর্ভুক্ত" +ui_pricing_excluded: "অন্তর্ভুক্ত নয়" +ui_marquee_pause: "গতি বন্ধ করুন" +ui_kbd_with: "সঙ্গে" +ui_keyboard_shortcuts: "কীবোর্ড শর্টকাট" +ui_shortcut_tree_move: "সাইডবারের মধ্যে চলুন" +ui_shortcut_tree_toggle: "বিভাগ সংকুচিত বা প্রসারিত করুন" +ui_shortcut_tree_open: "ফোকাসকৃত পৃষ্ঠা খুলুন" +ui_shortcut_heading_move: "আগের বা পরবর্তী শিরোনাম" +ui_shortcut_page_move: "আগের বা পরবর্তী পৃষ্ঠা" +ui_shortcut_search: "খুঁজুন" +ui_shortcut_commands: "কমান্ড প্যালেট" +ui_shortcut_reading_mode: "পড়ার মোড" +ui_shortcut_language: "ভাষা স্যুইচ করুন" +ui_shortcut_theme: "থিম স্যুইচ করুন" +ui_shortcut_route: "শীর্ষ-স্তরের পৃষ্ঠাগুলোর মধ্যে পরিবর্তন করুন" +ui_page_annotation: "পৃষ্ঠা তথ্য" +ui_backlinks: "ব্যাকলিঙ্ক" +ui_backlinks_more: "{{ . }} আরও দেখান" +ui_field_required: "প্রয়োজন" +ui_action_unavailable: "অনুপলব্ধ" +ui_image_zoom_dialog: "ছবি প্রিভিউ" +ui_image_zoom_open: "ছবি প্রিভিউ খুলুন" +ui_image_zoom_close: "ছবি প্রিভিউ বন্ধ করুন" +ui_diagram_expand: "ডায়াগ্রাম বড় করুন" +ui_diagram_zoom_dialog: "ডায়াগ্রাম প্রিভিউ" +ui_diagram_zoom_close: "ডায়াগ্রাম প্রিভিউ বন্ধ করুন" +ui_diagram_zoom_in: "জুম ইন" +ui_diagram_zoom_out: "জুম আউট" +ui_diagram_zoom_reset: "দৃশ্য রিসেট করুন" +ui_diagram_error: "ডায়াগ্রাম প্রদর্শন করা যায়নি" +ui_print_page: "এই পৃষ্ঠা মুদ্রণ করুন" +ui_sidebar_expand_section: "বিভাগ প্রসারিত করুন" +ui_sidebar_collapse_section: "বিভাগ সংকুচিত করুন" +ui_asciinema_timer: "প্লেব্যাক সময়" +ui_openapi_spec: "OpenAPI স্পেসিফিকেশন" +ui_release_view: "রিলিজ দেখুন" +ui_release_source: "উৎস" +ui_release_released: "রিলিজ করা হয়েছে" +ui_assets_file: "ফাইল" +ui_assets_checksum: "চেকসাম" +ui_assets_copy: "চেকসাম কপি করুন" +ui_assets_copied: "কপি করা হয়েছে" +ui_assets_copy_all: "সব চেকসাম কপি করুন" +ui_assets_download: "ফাইল ডাউনলোড করুন" +ui_download_channels: "ডাউনলোড চ্যানেল" +ui_download_unpublished: "প্রকাশের জন্য অপেক্ষা" # Used in sentences such as "All Tags" -ui_all: সব - -# পাদচরণ -footer_all_rights_reserved: সমস্ত অধিকার সংরক্ষিত - -# পোস্ট (ব্লগ, নিবন্ধ ইত্যাদি) -post_last_mod: সর্বশেষ পরিবর্তিত -post_edit_this: এই পৃষ্ঠাটি সম্পাদনা করুন -post_view_markdown: Markdown দেখুন -post_create_child_page: শাখা পৃষ্ঠা তৈরি করুন -post_create_issue: ডকুমেন্টেশন ইস্যু তৈরি করুন -post_create_project_issue: প্রকল্পের সমস্যা তৈরি করুন -post_reading_time: পড়তে এক মিনিট -post_less_than_a_minute_read: পড়তে এক মিনিটেরও কম সময় লাগবে - -# মুদ্রণ সমর্থন -print_printable_section: এটি এই বিভাগটির বহু পৃষ্ঠার মুদ্রণযোগ্য দর্শন। -print_click_to_print: মুদ্রণ করতে এখানে ক্লিক করুন -print_show_regular: এই পৃষ্ঠার নিয়মিত দৃশ্যে ফিরে আসুন -print_entire_section: পুরো বিভাগ মুদ্রণ করুন - -# Feedback -feedback_question: এই পৃষ্ঠাটি কি সহায়ক ছিল? -feedback_positive: হ্যাঁ -feedback_negative: না - -# Table of contents -toc_on_this_page: এই পৃষ্ঠায় - -# Replace these values with reviewed translations when available. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - -# Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. +ui_all: "সব" ui_list_separator: ", " - +ui_blog_index_toggle: "লেআউট স্যুইচ করুন" # Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - +footer_all_rights_reserved: "সমস্ত অধিকার সংরক্ষিত" +ui_footer_collapse: "ফুটার লিঙ্ক লুকান" +ui_footer_expand: "ফুটার লিঙ্ক দেখান" +# Post (blog, article, etc.) +post_last_mod: "সর্বশেষ পরিবর্তিত" +post_upstream: "{{ .work }}, {{ .copyright }}, {{ .license }} লাইসেন্সের অধীনে। {{ .notice }} দেখুন।" +post_upstream_adapted: "{{ .work }} থেকে অভিযোজিত, {{ .copyright }}, {{ .license }} লাইসেন্সের অধীনে। {{ .notice }} এবং {{ .history }} দেখুন।" +post_upstream_adapted_plain: "{{ .work }} থেকে অভিযোজিত, {{ .copyright }}, {{ .license }} লাইসেন্সের অধীনে। {{ .notice }} দেখুন।" +post_upstream_notice: "উৎস উল্লেখ" +post_upstream_history: "পরিবর্তন ইতিহাস" +post_translated: "এই পৃষ্ঠাটি একটি অনুবাদ; {{ .original }}-ই প্রামাণ্য।" +post_translated_original: "মূল" +post_edit_this: "এই পৃষ্ঠাটি সম্পাদনা করুন" +post_view_markdown: "Markdown দেখুন" +post_create_child_page: "উপপৃষ্ঠা তৈরি করুন" +post_create_issue: "ডকুমেন্টেশন ইস্যু তৈরি করুন" +post_create_project_issue: "প্রকল্প ইস্যু তৈরি করুন" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "{{ .Authors }} দ্বারা · {{ .Section }}-এ" +post_meta_in: "{{ .Section }}-এ" +post_reading_time: "মিনিট পড়া" +post_less_than_a_minute_read: "পড়তে এক মিনিটেরও কম সময় লাগবে" +post_word_count: "{{ .Count }} শব্দ" +post_reading_minutes: "{{ .Minutes }} মিনিট" +post_read_original: "আরও পড়ুন" # Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +print_printable_section: "এটি এই বিভাগের বহু-পৃষ্ঠার মুদ্রণযোগ্য দৃশ্য।" +print_click_to_print: "মুদ্রণ করতে এখানে ক্লিক করুন" +print_show_regular: "এই পৃষ্ঠার নিয়মিত দৃশ্যে ফিরে আসুন" +print_entire_section: "পুরো বিভাগ মুদ্রণ করুন" +# Feedback +feedback_question: "এই পৃষ্ঠাটি কি সহায়ক ছিল?" +feedback_positive: "হ্যাঁ" +feedback_negative: "না" +feedback_thanks: "ধন্যবাদ—আপনার প্রতিক্রিয়া এই পৃষ্ঠাটি উন্নত করতে আমাদের সাহায্য করে।" +feedback_reason_prompt: "কী বাধা হয়েছিল? (ঐচ্ছিক)" +feedback_reason_missing: "অনুপস্থিত তথ্য" +feedback_reason_outdated: "ভুল বা পুরোনো" +feedback_reason_failed: "ধাপগুলি কাজ করেনি" +feedback_reason_unclear: "বোঝা কঠিন" +feedback_details: "মন্তব্যে বিস্তারিত যোগ করুন" +feedback_change: "প্রতিক্রিয়া পরিবর্তন করুন" +# Table of contents +toc_on_this_page: "এই পৃষ্ঠায়" +# Error pages +error_404_title: "পৃষ্ঠা পাওয়া যায়নি" +error_404_body: "দুঃখিত, এই পৃষ্ঠাটি বিদ্যমান নেই। হোম পৃষ্ঠা থেকে আবার শুরু করুন।" +error_404_home: "হোম পৃষ্ঠায় যান" +# Version banner +version_banner_archived: "ডকুমেন্টেশনের সংস্করণ {{ .Version }} আর সক্রিয়ভাবে রক্ষণাবেক্ষণ করা হয় না। আপনি যে সাইটটি দেখছেন তা একটি আর্কাইভ করা অনুলিপি।" +version_banner_latest: "আপডেটেড ডকুমেন্টেশনের জন্য, {{ .Link }} দেখুন।" +version_banner_latest_link: "সর্বশেষ সংস্করণ" +# Comments +comments_noscript: "মন্তব্য লোড করতে JavaScript প্রয়োজন।" +comments_noscript_link: "GitHub-এ আলোচনা দেখুন।" +# LLM page actions +ui_open_in_prompt_label: "এই পৃষ্ঠার সম্পর্কে জিজ্ঞাসা করুন" +ui_view_history: "সম্পাদনা ইতিহাস দেখুন" +ui_table_scroll: "স্ক্রোলযোগ্য টেবিল" +ui_filetree_divider: "ফাইল ট্রির পাশের মন্তব্য কলামের আকার পরিবর্তন করুন" +book_figure: "চিত্র" +book_table: "টেবিল" +book_equation: "সমীকরণ" +book_example: "উদাহরণ" +book_toc: "বইয়ের সূচিপত্র" +book_draft: "খসড়া" +book_draft_notice: "এই অধ্যায়টি এখনও সংশোধন করা হচ্ছে।" +contributors_count: "অবদানকারী" +# Article series +ui_series_title: "সিরিজ" +ui_series_part: "{{ .Total }}-এর মধ্যে {{ .Part }} অংশ" +# Markdown output +markdown_llms_index: "LLMS সূচী:" +markdown_section_pages: "বিভাগের পৃষ্ঠা:" +markdown_backlinks: "ব্যাকলিঙ্ক:" diff --git a/i18n/de.yaml b/i18n/de.yaml index a8f3392..10e0ea5 100644 --- a/i18n/de.yaml +++ b/i18n/de.yaml @@ -1,290 +1,207 @@ # Alert labels -callout_caution: Achtung -callout_important: Wichtig -callout_note: Hinweis -callout_tip: Tipp -callout_warning: Warnung - +callout_caution: "Achtung" +callout_important: "Wichtig" +callout_note: "Hinweis" +callout_tip: "Tipp" +callout_warning: "Warnung" +callout_success: "Erfolg" +callout_danger: "Gefahr" +callout_question: "Frage" +callout_example: "Beispiel" +callout_quote: "Zitat" +callout_details: "Details" # UI strings. Buttons and similar. -ui_pager_prev: Zurück -ui_pager_next: Weiter -ui_search: Diese Seite durchsuchen… - +ui_pager_prev: "Zurück" +ui_pager_next: "Weiter" +ui_search: "Suche…" +ui_search_empty: "Keine Ergebnisse gefunden" +ui_search_loading: "Suchindex wird geladen…" +ui_search_results: "{count} Ergebnisse gefunden" +ui_search_nav: "Navigieren" +ui_search_open: "Öffnen" +ui_search_close: "Schließen" +ui_palette_actions: "Aktionen" +ui_palette_page_actions: "Seitenaktionen" +ui_palette_preferences: "Einstellungen" +ui_palette_commands: "Befehle" +ui_palette_quick_links: "Schnellverknüpfungen" +ui_palette_no_commands: "Keine passenden Befehle" +ui_palette_choose: "Wählen Sie eine Option" +ui_palette_action_failed: "Aktion konnte nicht abgeschlossen werden" +ui_palette_pages: "Seiten" +ui_palette_index_unavailable: "Seitenindex nicht verfügbar; Aktionen funktionieren dennoch" +ui_sidebar_nav: "Abschnittsnavigation" +ui_heading_self_link: "Link zu dieser Überschrift" +ui_field_self_link: "Link zu diesem Feld" +ui_preview_source: "Markdown" +ui_preview_rendered: "Dargestellt" +ui_main_nav: "Hauptnavigation" +ui_home: "Startseite" +ui_sidebar_expand: "Seitenleiste erweitern" +ui_sidebar_collapse: "Seitenleiste einklappen" +ui_drawer_open: "Navigation öffnen" +ui_drawer_close: "Navigation schließen" +ui_root_menu_label: "Abschnitt auswählen" +ui_tags_title: "Stichwörter" +ui_tag_title: "Stichwort" +ui_categories_title: "Kategorien" +ui_category_title: "Kategorie" +ui_modules_title: "Module" +ui_module_title: "Modul" +ui_authors_title: "Autoren" +ui_author_title: "Autor" +ui_theme_toggle: "Farbthema umschalten" +ui_theme_auto: "System" +ui_theme_light: "Hell" +ui_theme_dark: "Dunkel" +ui_toc_hide: "Inhaltsverzeichnis ausblenden" +ui_toc_show: "Inhaltsverzeichnis anzeigen" +ui_language_select: "Sprache auswählen" +ui_language_switch: "Sprache wechseln" +ui_skip_to_content: "Zum Inhalt springen" +ui_page_actions: "Aktionen" +ui_open_in_chatgpt: "In ChatGPT öffnen" +ui_open_in_claude: "In Claude öffnen" +ui_open_in_prompt: "Lies %s, damit ich Fragen dazu stellen kann." +ui_copy_markdown: "Markdown kopieren" +ui_copy_success: "Markdown kopiert" +ui_copy_error: "Markdown konnte nicht kopiert werden" +ui_share: "Teilen" +ui_share_email: "E-Mail" +ui_copy_link: "Link kopieren" +ui_copy_link_success: "Link kopiert" +ui_copy_link_error: "Der Link konnte nicht kopiert werden" +ui_code_copy_label: "Code kopieren" +ui_code_copied: "Kopiert" +ui_code_copy_error: "Kopieren fehlgeschlagen" +ui_code_show_all: "{{ .Count }} Zeilen anzeigen" +ui_code_collapse: "Code einklappen" +ui_tabs_label: "Registerkarten" +ui_pricing_featured: "Empfohlen" +ui_pricing_included: "Enthalten" +ui_pricing_excluded: "Nicht enthalten" +ui_marquee_pause: "Bewegung pausieren" +ui_kbd_with: "mit" +ui_keyboard_shortcuts: "Tastenkombinationen" +ui_shortcut_tree_move: "Durch Seitenleiste navigieren" +ui_shortcut_tree_toggle: "Abschnitt einklappen oder erweitern" +ui_shortcut_tree_open: "Fokussierte Seite öffnen" +ui_shortcut_heading_move: "Vorherige oder nächste Überschrift" +ui_shortcut_page_move: "Vorherige oder nächste Seite" +ui_shortcut_search: "Suche" +ui_shortcut_commands: "Befehlspalette" +ui_shortcut_reading_mode: "Lesemodus" +ui_shortcut_language: "Sprache wechseln" +ui_shortcut_theme: "Thema wechseln" +ui_shortcut_route: "Zwischen Seiten der obersten Ebene wechseln" +ui_page_annotation: "Seiteninformation" +ui_backlinks: "Rückverweise" +ui_backlinks_more: "{{ . }} weitere anzeigen" +ui_field_required: "erforderlich" +ui_action_unavailable: "nicht verfügbar" +ui_image_zoom_dialog: "Bildvorschau" +ui_image_zoom_open: "Bildvorschau öffnen" +ui_image_zoom_close: "Bildvorschau schließen" +ui_diagram_expand: "Diagramm vergrößern" +ui_diagram_zoom_dialog: "Diagrammvorschau" +ui_diagram_zoom_close: "Diagrammvorschau schließen" +ui_diagram_zoom_in: "Vergrößern" +ui_diagram_zoom_out: "Verkleinern" +ui_diagram_zoom_reset: "Ansicht zurücksetzen" +ui_diagram_error: "Das Diagramm konnte nicht gerendert werden" +ui_print_page: "Diese Seite drucken" +ui_sidebar_expand_section: "Abschnitt erweitern" +ui_sidebar_collapse_section: "Abschnitt einklappen" +ui_asciinema_timer: "Wiedergabezeit" +ui_openapi_spec: "OpenAPI-Spezifikation" +ui_release_view: "Veröffentlichung anzeigen" +ui_release_source: "Quelle" +ui_release_released: "Veröffentlicht" +ui_assets_file: "Datei" +ui_assets_checksum: "Prüfsumme" +ui_assets_copy: "Prüfsumme kopieren" +ui_assets_copied: "Kopiert" +ui_assets_copy_all: "Alle Prüfsummen kopieren" +ui_assets_download: "Datei herunterladen" +ui_download_channels: "Downloadkanäle" +ui_download_unpublished: "Ausstehende Veröffentlichung" # Used in sentences such as "All Tags" -ui_all: alle - +ui_all: "alle" +ui_list_separator: ", " +ui_blog_index_toggle: "Layout wechseln" # Footer text -footer_all_rights_reserved: Alle Rechte vorbehalten - +footer_all_rights_reserved: "Alle Rechte vorbehalten" +ui_footer_collapse: "Fußzeilen-Links ausblenden" +ui_footer_expand: "Fußzeilen-Links anzeigen" # Post (blog, article, etc.) -post_last_mod: Zuletzt geändert -post_edit_this: Diese Seite bearbeiten -post_view_markdown: Markdown anzeigen -post_create_child_page: Unterseite anlegen -post_create_issue: Problem zu dieser Seite melden -post_create_project_issue: Problem melden -post_reading_time: Minuten Lesezeit -post_less_than_a_minute_read: weniger als eine Minute -post_word_count: '{{ .Count }} Wörter' -post_reading_minutes: '{{ .Minutes }} Min.' -post_read_original: Original lesen - +post_last_mod: "Zuletzt geändert" +post_upstream: "{{ .work }}, {{ .copyright }}, lizenziert unter {{ .license }}. Siehe {{ .notice }}." +post_upstream_adapted: "Bearbeitet nach {{ .work }}, {{ .copyright }}, lizenziert unter {{ .license }}. Siehe {{ .notice }} und {{ .history }}." +post_upstream_adapted_plain: "Bearbeitet nach {{ .work }}, {{ .copyright }}, lizenziert unter {{ .license }}. Siehe {{ .notice }}." +post_upstream_notice: "Urheberangabe" +post_upstream_history: "Änderungsverlauf" +post_translated: "Diese Seite ist eine Übersetzung; maßgeblich ist das {{ .original }}." +post_translated_original: "Original" +post_edit_this: "Diese Seite bearbeiten" +post_view_markdown: "Markdown anzeigen" +post_create_child_page: "Unterseite anlegen" +post_create_issue: "Problem zur Dokumentation melden" +post_create_project_issue: "Problem zum Projekt melden" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "Von {{ .Authors }} · In {{ .Section }}" +post_meta_in: "In {{ .Section }}" +post_reading_time: "Minuten Lesezeit" +post_less_than_a_minute_read: "weniger als eine Minute" +post_word_count: "{{ .Count }} Wörter" +post_reading_minutes: "{{ .Minutes }} Min." +post_read_original: "Original lesen" # Print support -print_printable_section: >- - Das ist eine für den Ausdruck optimierte Ansicht des gesamten Kapitels inkl. - Unterseiten. -print_click_to_print: Druckvorgang starten -print_show_regular: Zur Standardansicht zurückkehren -print_entire_section: Kapitel inkl. Unterseiten drucken - +print_printable_section: "Dies ist die mehrseitige Druckansicht dieses Abschnitts." +print_click_to_print: "Druckvorgang starten" +print_show_regular: "Zur Standardansicht zurückkehren" +print_entire_section: "Abschnitt vollständig drucken" # Feedback -feedback_question: War diese Seite hilfreich? -feedback_positive: Ja -feedback_negative: Nein - +feedback_question: "War diese Seite hilfreich?" +feedback_positive: "Ja" +feedback_negative: "Nein" +feedback_thanks: "Danke—Ihre Rückmeldung hilft uns, diese Seite zu verbessern." +feedback_reason_prompt: "Was war problematisch? (optional)" +feedback_reason_missing: "Fehlende Informationen" +feedback_reason_outdated: "Falsch oder veraltet" +feedback_reason_failed: "Schritte haben nicht funktioniert" +feedback_reason_unclear: "Schwer verständlich" +feedback_details: "Ergänzen Sie Details in den Kommentaren" +feedback_change: "Antwort ändern" # Table of contents -toc_on_this_page: Auf dieser Seite - -# Replace these values with reviewed translations when available. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +toc_on_this_page: "Auf dieser Seite" +# Error pages +error_404_title: "Seite nicht gefunden" +error_404_body: "Entschuldigung, diese Seite existiert nicht. Versuchen Sie es erneut von der Startseite aus." +error_404_home: "Zur Startseite gehen" +# Version banner +version_banner_archived: "Die Dokumentationsversion {{ .Version }} wird nicht mehr aktiv gepflegt. Die aktuell angezeigte Website ist eine archivierte Kopie." +version_banner_latest: "Für aktuelle Dokumentation, siehe die {{ .Link }}." +version_banner_latest_link: "neueste Version" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "JavaScript ist erforderlich, um Kommentare zu laden." +comments_noscript_link: "Diskussionen auf GitHub ansehen." +# LLM page actions +ui_open_in_prompt_label: "Über diese Seite fragen" +ui_view_history: "Bearbeitungsverlauf anzeigen" +ui_table_scroll: "Scrollbare Tabelle" +ui_filetree_divider: "Größe der Kommentarspalte neben dem Dateibaum anpassen" +book_figure: "Abbildung" +book_table: "Tabelle" +book_equation: "Gleichung" +book_example: "Beispiel" +book_toc: "Buchinhalt" +book_draft: "Entwurf" +book_draft_notice: "Dieses Kapitel wird noch überarbeitet." +contributors_count: "Mitwirkende" +# Article series +ui_series_title: "Reihe" +ui_series_part: "Teil {{ .Part }} von {{ .Total }}" +# Markdown output +markdown_llms_index: "LLMS-Index:" +markdown_section_pages: "Abschnittsseiten:" +markdown_backlinks: "Rückverweise:" diff --git a/i18n/es.yaml b/i18n/es.yaml index 8086215..e31e82f 100644 --- a/i18n/es.yaml +++ b/i18n/es.yaml @@ -1,288 +1,207 @@ # Alert labels -callout_caution: Precaución -callout_important: Importante -callout_note: Nota -callout_tip: Consejo -callout_warning: Advertencia - +callout_caution: "Precaución" +callout_important: "Importante" +callout_note: "Nota" +callout_tip: "Consejo" +callout_warning: "Advertencia" +callout_success: "Éxito" +callout_danger: "Peligro" +callout_question: "Pregunta" +callout_example: "Ejemplo" +callout_quote: "Cita" +callout_details: "Detalles" # UI strings. Buttons and similar. -ui_pager_prev: Previo -ui_pager_next: Siguiente -ui_search: Buscar - +ui_pager_prev: "Previo" +ui_pager_next: "Siguiente" +ui_search: "Buscar…" +ui_search_empty: "No se encontraron resultados" +ui_search_loading: "Cargando índice de búsqueda…" +ui_search_results: "{count} resultados encontrados" +ui_search_nav: "Navegar" +ui_search_open: "Abrir" +ui_search_close: "Cerrar" +ui_palette_actions: "Acciones" +ui_palette_page_actions: "Acciones de página" +ui_palette_preferences: "Preferencias" +ui_palette_commands: "Comandos" +ui_palette_quick_links: "Enlaces rápidos" +ui_palette_no_commands: "No hay comandos coincidentes" +ui_palette_choose: "Elija una opción" +ui_palette_action_failed: "No se pudo completar la acción" +ui_palette_pages: "Páginas" +ui_palette_index_unavailable: "Índice de páginas no disponible; las acciones aún funcionan" +ui_sidebar_nav: "Navegación de sección" +ui_heading_self_link: "Enlace a este encabezado" +ui_field_self_link: "Enlace a este campo" +ui_preview_source: "Markdown" +ui_preview_rendered: "Renderizado" +ui_main_nav: "Navegación principal" +ui_home: "Inicio" +ui_sidebar_expand: "Expandir barra lateral" +ui_sidebar_collapse: "Contraer barra lateral" +ui_drawer_open: "Abrir navegación" +ui_drawer_close: "Cerrar navegación" +ui_root_menu_label: "Elegir sección" +ui_tags_title: "Etiquetas" +ui_tag_title: "Etiqueta" +ui_categories_title: "Categorías" +ui_category_title: "Categoría" +ui_modules_title: "Módulos" +ui_module_title: "Módulo" +ui_authors_title: "Autores" +ui_author_title: "Autor" +ui_theme_toggle: "Cambiar tema de color" +ui_theme_auto: "Sistema" +ui_theme_light: "Claro" +ui_theme_dark: "Oscuro" +ui_toc_hide: "Ocultar tabla de contenidos" +ui_toc_show: "Mostrar tabla de contenidos" +ui_language_select: "Elegir idioma" +ui_language_switch: "Cambiar idioma" +ui_skip_to_content: "Saltar al contenido" +ui_page_actions: "Acciones" +ui_open_in_chatgpt: "Abrir en ChatGPT" +ui_open_in_claude: "Abrir en Claude" +ui_open_in_prompt: "Lee %s para que pueda hacer preguntas al respecto." +ui_copy_markdown: "Copiar Markdown" +ui_copy_success: "Markdown copiado" +ui_copy_error: "No se pudo copiar el Markdown" +ui_share: "Compartir" +ui_share_email: "Correo electrónico" +ui_copy_link: "Copiar enlace" +ui_copy_link_success: "Enlace copiado" +ui_copy_link_error: "No se pudo copiar el enlace" +ui_code_copy_label: "Copiar código" +ui_code_copied: "Copiado" +ui_code_copy_error: "Error al copiar" +ui_code_show_all: "Mostrar todos los {{ .Count }} líneas" +ui_code_collapse: "Contraer código" +ui_tabs_label: "Pestañas" +ui_pricing_featured: "Recomendado" +ui_pricing_included: "Incluido" +ui_pricing_excluded: "No incluido" +ui_marquee_pause: "Pausar movimiento" +ui_kbd_with: "con" +ui_keyboard_shortcuts: "Atajos de teclado" +ui_shortcut_tree_move: "Moverse por la barra lateral" +ui_shortcut_tree_toggle: "Contraer o expandir sección" +ui_shortcut_tree_open: "Abrir la página enfocada" +ui_shortcut_heading_move: "Encabezado anterior o siguiente" +ui_shortcut_page_move: "Página anterior o siguiente" +ui_shortcut_search: "Buscar" +ui_shortcut_commands: "Paleta de comandos" +ui_shortcut_reading_mode: "Modo lectura" +ui_shortcut_language: "Cambiar idioma" +ui_shortcut_theme: "Cambiar tema" +ui_shortcut_route: "Cambiar entre páginas principales" +ui_page_annotation: "Información de la página" +ui_backlinks: "Enlaces inversos" +ui_backlinks_more: "Mostrar {{ . }} más" +ui_field_required: "obligatorio" +ui_action_unavailable: "no disponible" +ui_image_zoom_dialog: "Vista previa de imagen" +ui_image_zoom_open: "Abrir vista previa de imagen" +ui_image_zoom_close: "Cerrar vista previa de imagen" +ui_diagram_expand: "Ampliar diagrama" +ui_diagram_zoom_dialog: "Vista previa de diagrama" +ui_diagram_zoom_close: "Cerrar vista previa de diagrama" +ui_diagram_zoom_in: "Acercar" +ui_diagram_zoom_out: "Alejar" +ui_diagram_zoom_reset: "Restablecer vista" +ui_diagram_error: "No se pudo renderizar el diagrama" +ui_print_page: "Imprimir esta página" +ui_sidebar_expand_section: "Expandir sección" +ui_sidebar_collapse_section: "Contraer sección" +ui_asciinema_timer: "Tiempo de reproducción" +ui_openapi_spec: "Especificación OpenAPI" +ui_release_view: "Ver lanzamiento" +ui_release_source: "Origen" +ui_release_released: "Publicado" +ui_assets_file: "Archivo" +ui_assets_checksum: "Suma de verificación" +ui_assets_copy: "Copiar suma de verificación" +ui_assets_copied: "Copiado" +ui_assets_copy_all: "Copiar todas las sumas de verificación" +ui_assets_download: "Descargar archivo" +ui_download_channels: "Canales de descarga" +ui_download_unpublished: "Pendiente de publicación" # Used in sentences such as "All Tags" -ui_all: todos - +ui_all: "todos" +ui_list_separator: ", " +ui_blog_index_toggle: "Cambiar diseño" # Footer text -footer_all_rights_reserved: Derechos reservados - +footer_all_rights_reserved: "Derechos reservados" +ui_footer_collapse: "Ocultar enlaces del pie" +ui_footer_expand: "Mostrar enlaces del pie" # Post (blog, article, etc.) -post_last_mod: Última modificación -post_edit_this: Editar esta página -post_view_markdown: Ver Markdown -post_create_child_page: Crear página nueva -post_create_issue: Notificar una incidencia con la documentanción -post_create_project_issue: Notificar una incidencia en un proyecto -post_reading_time: minutos de lectura -post_less_than_a_minute_read: menos de un minuto -post_word_count: '{{ .Count }} palabras' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Leer el original - +post_last_mod: "Última modificación" +post_upstream: "{{ .work }}, {{ .copyright }}, con licencia {{ .license }}. Consulte {{ .notice }}." +post_upstream_adapted: "Adaptado de {{ .work }}, {{ .copyright }}, con licencia {{ .license }}. Consulte {{ .notice }} y {{ .history }}." +post_upstream_adapted_plain: "Adaptado de {{ .work }}, {{ .copyright }}, con licencia {{ .license }}. Consulte {{ .notice }}." +post_upstream_notice: "atribución" +post_upstream_history: "historial de cambios" +post_translated: "Esta página es una traducción; prevalece el {{ .original }}." +post_translated_original: "original" +post_edit_this: "Editar esta página" +post_view_markdown: "Ver Markdown" +post_create_child_page: "Crear página secundaria" +post_create_issue: "Crear incidencia en la documentación" +post_create_project_issue: "Crear incidencia en el proyecto" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "Por {{ .Authors }} · En {{ .Section }}" +post_meta_in: "En {{ .Section }}" +post_reading_time: "minutos de lectura" +post_less_than_a_minute_read: "menos de un minuto" +post_word_count: "{{ .Count }} palabras" +post_reading_minutes: "{{ .Minutes }} min" +post_read_original: "Leer más" # Print support -print_printable_section: Versión imprimible multipagina. -print_click_to_print: Haga click aquí para imprimir -print_show_regular: Volver a la vista normal de esta página -print_entire_section: Imprimir la sección entera - +print_printable_section: "Esta es la vista imprimible multipágina de esta sección." +print_click_to_print: "Haga click aquí para imprimir" +print_show_regular: "Volver a la vista normal de esta página" +print_entire_section: "Imprimir sección completa" # Feedback -feedback_question: ¿Fue útil esta página? -feedback_positive: Si -feedback_negative: No - +feedback_question: "¿Fue útil esta página?" +feedback_positive: "Si" +feedback_negative: "No" +feedback_thanks: "Gracias—su retroalimentación ayuda a mejorar esta página." +feedback_reason_prompt: "¿Qué impidió su uso? (opcional)" +feedback_reason_missing: "Información faltante" +feedback_reason_outdated: "Incorrecta o desactualizada" +feedback_reason_failed: "Los pasos no funcionaron" +feedback_reason_unclear: "Difícil de entender" +feedback_details: "Agregue detalles en los comentarios" +feedback_change: "Cambiar respuesta" # Table of contents -toc_on_this_page: En esta página - -# Replace these values with reviewed translations when available. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +toc_on_this_page: "Contenido" +# Error pages +error_404_title: "Página no encontrada" +error_404_body: "Lo sentimos, esta página no existe. Intente comenzar de nuevo desde la página de inicio." +error_404_home: "Ir a la página de inicio" +# Version banner +version_banner_archived: "La versión {{ .Version }} de la documentación ya no se mantiene activamente. El sitio que está viendo actualmente es una copia archivada." +version_banner_latest: "Para obtener documentación actualizada, consulte la {{ .Link }}." +version_banner_latest_link: "versión más reciente" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "Se requiere JavaScript para cargar los comentarios." +comments_noscript_link: "Ver discusiones en GitHub." +# LLM page actions +ui_open_in_prompt_label: "Preguntar sobre esta página" +ui_view_history: "Ver historial de ediciones" +ui_table_scroll: "Tabla desplazable" +ui_filetree_divider: "Redimensionar la columna de comentarios del árbol de archivos" +book_figure: "Figura" +book_table: "Tabla" +book_equation: "Ecuación" +book_example: "Ejemplo" +book_toc: "Contenido del libro" +book_draft: "Borrador" +book_draft_notice: "Este capítulo aún está en revisión." +contributors_count: "colaboradores" +# Article series +ui_series_title: "Serie" +ui_series_part: "Parte {{ .Part }} de {{ .Total }}" +# Markdown output +markdown_llms_index: "Índice de LLMS:" +markdown_section_pages: "Páginas de sección:" +markdown_backlinks: "Enlaces inversos:" diff --git a/i18n/et.yaml b/i18n/et.yaml index 7ac10a3..bfd0e7c 100644 --- a/i18n/et.yaml +++ b/i18n/et.yaml @@ -1,295 +1,207 @@ +# Alert labels +callout_caution: "Ettevaatust" +callout_important: "Oluline" +callout_note: "Märkus" +callout_tip: "Nõuanne" +callout_warning: "Hoiatus" +callout_success: "Edukas" +callout_danger: "Oht" +callout_question: "Küsimus" +callout_example: "Näide" +callout_quote: "Tsitaat" +callout_details: "Lisainfo" # UI strings. Buttons and similar. -ui_pager_prev: Eelmine -ui_pager_next: Järgmine -ui_search: Otsi lehelt… - -# Footer text -footer_all_rights_reserved: Kõik õigused kaitstud - -# not perfect. In Estonian this idea is represented by a suffix, not a separate word. -post_last_mod: Viimati muudetud -post_edit_this: Täienda lehte -post_view_markdown: Vaata Markdowni -post_create_child_page: Loo alamleht -# perhaps there is a better translation for "issue"... -post_create_issue: Tõstata dokumentatsiooni kohta ülesanne -post_create_project_issue: Tõstata projekti kohta ülesanne -# in Estonian this "in" should be the suffix of the next word, cannot include it to that phrase. -post_reading_time: minute read -post_less_than_a_minute_read: less than a minute - -# Replace these values with reviewed translations when available. -callout_caution: Caution -callout_important: Important -callout_note: Note -callout_tip: Tip -callout_warning: Warning - -# UI strings. Buttons and similar. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -ui_all: all - +ui_pager_prev: "Eelmine" +ui_pager_next: "Järgmine" +ui_search: "Otsi…" +ui_search_empty: "Tulemusi ei leitud" +ui_search_loading: "Otsinguindeksit laaditakse…" +ui_search_results: "{count} tulemust leitud" +ui_search_nav: "Navigeeri" +ui_search_open: "Ava" +ui_search_close: "Sulge" +ui_palette_actions: "Tegevused" +ui_palette_page_actions: "Lehe tegevused" +ui_palette_preferences: "Eelistused" +ui_palette_commands: "Käsud" +ui_palette_quick_links: "Kiirviited" +ui_palette_no_commands: "Ühtegi sobivat käsku ei leitud" +ui_palette_choose: "Tee valik" +ui_palette_action_failed: "Tegevust ei õnnestunud lõpule viia" +ui_palette_pages: "Lehed" +ui_palette_index_unavailable: "Lehe indeks pole saadaval; tegevused töötavad" +ui_sidebar_nav: "Jaotise navigeerimine" +ui_heading_self_link: "Link selle pealkirja juurde" +ui_field_self_link: "Link selle välja juurde" +ui_preview_source: "Markdown" +ui_preview_rendered: "Kuva" +ui_main_nav: "Pea navigeerimine" +ui_home: "Avaleht" +ui_sidebar_expand: "Laienda külgriba" +ui_sidebar_collapse: "Ahenda külgriba" +ui_drawer_open: "Ava navigeerimine" +ui_drawer_close: "Sulge navigeerimine" +ui_root_menu_label: "Vali jaotis" +ui_tags_title: "Sildid" +ui_tag_title: "Silt" +ui_categories_title: "Kategooriad" +ui_category_title: "Kategooria" +ui_modules_title: "Moodulid" +ui_module_title: "Moodul" +ui_authors_title: "Autorid" +ui_author_title: "Autor" +ui_theme_toggle: "Vaheta värviteemat" +ui_theme_auto: "Süsteem" +ui_theme_light: "Hele" +ui_theme_dark: "Tume" +ui_toc_hide: "Peida sisukord" +ui_toc_show: "Näita sisukorda" +ui_language_select: "Vali keel" +ui_language_switch: "Vaheta keel" +ui_skip_to_content: "Hüppa sisu juurde" +ui_page_actions: "Tegevused" +ui_open_in_chatgpt: "Ava ChatGPT-s" +ui_open_in_claude: "Ava Claude-s" +ui_open_in_prompt: "Loe %s, et saaksin selle kohta küsimusi esitada." +ui_copy_markdown: "Kopeeri Markdown" +ui_copy_success: "Markdown kopeeritud" +ui_copy_error: "Markdowni kopeerimine ebaõnnestus" +ui_share: "Jaga" +ui_share_email: "E-post" +ui_copy_link: "Kopeeri link" +ui_copy_link_success: "Link kopeeritud" +ui_copy_link_error: "Linki ei õnnestunud kopeerida" +ui_code_copy_label: "Kopeeri kood" +ui_code_copied: "Kopeeritud" +ui_code_copy_error: "Kopeerimine ebaõnnestus" +ui_code_show_all: "Näita kõiki {{ .Count }} rida" +ui_code_collapse: "Ahenda kood" +ui_tabs_label: "Tabid" +ui_pricing_featured: "Soovitatud" +ui_pricing_included: "Sisaldatud" +ui_pricing_excluded: "Puudub" +ui_marquee_pause: "Peata liikumine" +ui_kbd_with: "koos" +ui_keyboard_shortcuts: "Klaviatuuri käsud" +ui_shortcut_tree_move: "Liigu külgribal" +ui_shortcut_tree_toggle: "Ahenda või laienda jaotis" +ui_shortcut_tree_open: "Ava fookuses leht" +ui_shortcut_heading_move: "Eelmine või järgmine pealkiri" +ui_shortcut_page_move: "Eelmine või järgmine leht" +ui_shortcut_search: "Otsi" +ui_shortcut_commands: "Käsukast" +ui_shortcut_reading_mode: "Loetav režiim" +ui_shortcut_language: "Vaheta keel" +ui_shortcut_theme: "Vaheta teema" +ui_shortcut_route: "Liigu ülataseme lehtede vahel" +ui_page_annotation: "Lehe teave" +ui_backlinks: "Tagasiviited" +ui_backlinks_more: "Näita {{ . }} veel" +ui_field_required: "nõutud" +ui_action_unavailable: "saadaval ei ole" +ui_image_zoom_dialog: "Pildi eelvaade" +ui_image_zoom_open: "Ava pildi eelvaade" +ui_image_zoom_close: "Sulge pildi eelvaade" +ui_diagram_expand: "Suurenda diagrammi" +ui_diagram_zoom_dialog: "Diagrammi eelvaade" +ui_diagram_zoom_close: "Sulge diagrammi eelvaade" +ui_diagram_zoom_in: "Lähenda" +ui_diagram_zoom_out: "Eemalda" +ui_diagram_zoom_reset: "Lähtesta vaade" +ui_diagram_error: "Diagrammi ei õnnestunud kuvada" +ui_print_page: "Prindi see leht" +ui_sidebar_expand_section: "Laienda jaotis" +ui_sidebar_collapse_section: "Ahenda jaotis" +ui_asciinema_timer: "Esitluse aeg" +ui_openapi_spec: "OpenAPI spetsifikatsioon" +ui_release_view: "Vaata väljalaset" +ui_release_source: "Allikas" +ui_release_released: "Välja antud" +ui_assets_file: "Fail" +ui_assets_checksum: "Kontrollsumma" +ui_assets_copy: "Kopeeri kontrollsumma" +ui_assets_copied: "Kopeeritud" +ui_assets_copy_all: "Kopeeri kõik kontrollsummad" +ui_assets_download: "Laadi fail alla" +ui_download_channels: "Allalaadimiskanalid" +ui_download_unpublished: "Ootab väljalaskmist" +# Used in sentences such as "All Tags" +ui_all: "kõik" +ui_list_separator: ", " +ui_blog_index_toggle: "Vaheta paigutus" # Footer text -print_printable_section: This is the multi-page printable view of this section. -print_click_to_print: Click here to print -print_show_regular: Return to the regular view of this page -print_entire_section: Print entire section - -# Community -feedback_question: Was this page helpful? -feedback_positive: Yes -feedback_negative: No - +footer_all_rights_reserved: "Kõik õigused kaitstud" +ui_footer_collapse: "Peida jaluse lingid" +ui_footer_expand: "Näita jaluse lingid" +# Post (blog, article, etc.) +post_last_mod: "Viimati muudetud" +post_upstream: "{{ .work }}, {{ .copyright }}, litsentsi {{ .license }} alusel. Vaata {{ .notice }}." +post_upstream_adapted: "Kohandatud teosest {{ .work }}, {{ .copyright }}, litsentsi {{ .license }} alusel. Vaata {{ .notice }} ja {{ .history }}." +post_upstream_adapted_plain: "Kohandatud teosest {{ .work }}, {{ .copyright }}, litsentsi {{ .license }} alusel. Vaata {{ .notice }}." +post_upstream_notice: "autorsuse märget" +post_upstream_history: "muudatuste ajalugu" +post_translated: "See leht on tõlge; määrav on {{ .original }}." +post_translated_original: "originaal" +post_edit_this: "Täienda lehte" +post_view_markdown: "Vaata Markdowni" +post_create_child_page: "Loo alamleht" +post_create_issue: "Loo dokumentatsiooni probleem" +post_create_project_issue: "Loo projekti probleem" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "Autor: {{ .Authors }} · Jaotis: {{ .Section }}" +post_meta_in: "Jaotis: {{ .Section }}" +post_reading_time: "minutit lugemiseks" +post_less_than_a_minute_read: "vähem kui minut" +post_word_count: "{{ .Count }} sõna" +post_reading_minutes: "{{ .Minutes }} min" +post_read_original: "Loe rohkem" +# Print support +print_printable_section: "See on selle jaotise mitmeleheküljeline prinditav vaade." +print_click_to_print: "Printimiseks klõpsa siia" +print_show_regular: "Tagasi selle lehe tavavaatesse" +print_entire_section: "Prindi kogu jaotis" +# Feedback +feedback_question: "Kas sellest lehest oli abi?" +feedback_positive: "Jah" +feedback_negative: "Ei" +feedback_thanks: "Aitäh—sinu tagasiside aitab meil seda lehte parandada." +feedback_reason_prompt: "Mis takistas? (valikuline)" +feedback_reason_missing: "Puuduv informatsioon" +feedback_reason_outdated: "Vigane või aegunud" +feedback_reason_failed: "Sammud ei toiminud" +feedback_reason_unclear: "Raskelt mõistetav" +feedback_details: "Lisa detailid kommentaaridesse" +feedback_change: "Muuda vastust" # Table of contents -toc_on_this_page: Content - +toc_on_this_page: "Sisu" # Error pages -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +error_404_title: "Lehte ei leitud" +error_404_body: "Vabandust, seda lehte ei eksisteeri. Proovi algatada avalehelt uuesti." +error_404_home: "Mine avalehele" +# Version banner +version_banner_archived: "Dokumentatsiooni versiooni {{ .Version }} ei hooldata enam aktiivselt. Praegu vaadatav sait on arhiveeritud koopia." +version_banner_latest: "Ajakohane dokumentatsioon: {{ .Link }}." +version_banner_latest_link: "viimane versioon" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "Kommentaaride laadimiseks on vajalik JavaScript." +comments_noscript_link: "Vaata arutlusi GitHubis." +# LLM page actions +ui_open_in_prompt_label: "Küsi selle lehe kohta" +ui_view_history: "Vaata muudatuste ajalugu" +ui_table_scroll: "Keritav tabel" +ui_filetree_divider: "Muuda failipuu kõrval oleva kommentaariveeru laiust" +book_figure: "Pilt" +book_table: "Tabel" +book_equation: "Võrrand" +book_example: "Näide" +book_toc: "Raamatu sisukord" +book_draft: "Mustand" +book_draft_notice: "See peatükk on veel parandamisel." +contributors_count: "kaasautorit" +# Article series +ui_series_title: "Sari" +ui_series_part: "Osa {{ .Part }}/{{ .Total }}" +# Markdown output +markdown_llms_index: "LLMS indeks:" +markdown_section_pages: "Jaotise lehed:" +markdown_backlinks: "Tagasiviited:" diff --git a/i18n/fa.yaml b/i18n/fa.yaml index 248897b..9672fa3 100644 --- a/i18n/fa.yaml +++ b/i18n/fa.yaml @@ -1,293 +1,207 @@ +# Alert labels +callout_caution: "احتیاط" +callout_important: "مهم" +callout_note: "یادداشت" +callout_tip: "نکته" +callout_warning: "هشدار" +callout_success: "موفقیت" +callout_danger: "خطر" +callout_question: "سؤال" +callout_example: "مثال" +callout_quote: "نقل قول" +callout_details: "جزئیات" # UI strings. Buttons and similar. -ui_pager_prev: قبلی -ui_pager_next: بعدی -ui_search: در این سایت جستجو کنید... - +ui_pager_prev: "قبلی" +ui_pager_next: "بعدی" +ui_search: "جستجو…" +ui_search_empty: "هیچ نتیجه‌ای یافت نشد" +ui_search_loading: "در حال بارگذاری فهرست جستجو…" +ui_search_results: "{count} نتیجه یافت شد" +ui_search_nav: "مرور" +ui_search_open: "باز کردن" +ui_search_close: "بستن" +ui_palette_actions: "اقدامات" +ui_palette_page_actions: "اقدامات صفحه" +ui_palette_preferences: "ترجیحات" +ui_palette_commands: "دستورات" +ui_palette_quick_links: "لینک‌های سریع" +ui_palette_no_commands: "دستورات مطابقی یافت نشد" +ui_palette_choose: "یک گزینه انتخاب کنید" +ui_palette_action_failed: "اقدام انجام نشد" +ui_palette_pages: "صفحات" +ui_palette_index_unavailable: "فهرست صفحات در دسترس نیست؛ اقدامات همچنان قابل اجرا هستند" +ui_sidebar_nav: "مرور بخش" +ui_heading_self_link: "لینک به این عنوان" +ui_field_self_link: "لینک به این فیلد" +ui_preview_source: "Markdown" +ui_preview_rendered: "نمایش شده" +ui_main_nav: "مرور اصلی" +ui_home: "خانه" +ui_sidebar_expand: "باز کردن نوار کناری" +ui_sidebar_collapse: "بستن نوار کناری" +ui_drawer_open: "باز کردن ناوبری" +ui_drawer_close: "بستن ناوبری" +ui_root_menu_label: "انتخاب بخش" +ui_tags_title: "برچسب‌ها" +ui_tag_title: "برچسب" +ui_categories_title: "دسته‌بندی‌ها" +ui_category_title: "دسته‌بندی" +ui_modules_title: "ماژول‌ها" +ui_module_title: "ماژول" +ui_authors_title: "نویسندگان" +ui_author_title: "نویسنده" +ui_theme_toggle: "تغییر تم رنگی" +ui_theme_auto: "سیستم" +ui_theme_light: "روشن" +ui_theme_dark: "تاریک" +ui_toc_hide: "مخفی کردن جدول مطالب" +ui_toc_show: "نمایش جدول مطالب" +ui_language_select: "انتخاب زبان" +ui_language_switch: "تعویض زبان" +ui_skip_to_content: "پرش به محتوا" +ui_page_actions: "اقدامات" +ui_open_in_chatgpt: "در ChatGPT باز کنید" +ui_open_in_claude: "در Claude باز کنید" +ui_open_in_prompt: "از %s بخوان تا بتوانم درباره آن سوال بپرسم." +ui_copy_markdown: "کپی Markdown" +ui_copy_success: "Markdown کپی شد" +ui_copy_error: "امکان کپی Markdown وجود ندارد" +ui_share: "اشتراک‌گذاری" +ui_share_email: "ایمیل" +ui_copy_link: "کپی لینک" +ui_copy_link_success: "لینک کپی شد" +ui_copy_link_error: "امکان کپی لینک وجود ندارد" +ui_code_copy_label: "کپی کد" +ui_code_copied: "کپی شد" +ui_code_copy_error: "کپی ناموفق بود" +ui_code_show_all: "نمایش تمام {{ .Count }} خط" +ui_code_collapse: "جمع کردن کد" +ui_tabs_label: "تب‌ها" +ui_pricing_featured: "پیشنهادی" +ui_pricing_included: "شامل" +ui_pricing_excluded: "شامل نیست" +ui_marquee_pause: "توقف حرکت" +ui_kbd_with: "با" +ui_keyboard_shortcuts: "میانبرهای کیبورد" +ui_shortcut_tree_move: "حرکت در نوار کناری" +ui_shortcut_tree_toggle: "بسته یا باز کردن بخش" +ui_shortcut_tree_open: "باز کردن صفحهٔ دارای تمرکز" +ui_shortcut_heading_move: "عنوان قبلی یا بعدی" +ui_shortcut_page_move: "صفحه قبلی یا بعدی" +ui_shortcut_search: "جستجو" +ui_shortcut_commands: "پالت دستورات" +ui_shortcut_reading_mode: "حالت خواندن" +ui_shortcut_language: "تعویض زبان" +ui_shortcut_theme: "تعویض تم" +ui_shortcut_route: "جابجایی میان صفحه‌های سطح بالا" +ui_page_annotation: "اطلاعات صفحه" +ui_backlinks: "لینک‌های بازگشتی" +ui_backlinks_more: "نمایش {{ . }} مورد بیشتر" +ui_field_required: "ضروری" +ui_action_unavailable: "در دسترس نیست" +ui_image_zoom_dialog: "پیش‌نمایش تصویر" +ui_image_zoom_open: "باز کردن پیش‌نمایش تصویر" +ui_image_zoom_close: "بستن پیش‌نمایش تصویر" +ui_diagram_expand: "بزرگنمایی نمودار" +ui_diagram_zoom_dialog: "پیش‌نمایش نمودار" +ui_diagram_zoom_close: "بستن پیش‌نمایش نمودار" +ui_diagram_zoom_in: "بزرگنمایی" +ui_diagram_zoom_out: "کوچکنمایی" +ui_diagram_zoom_reset: "بازنشانی نمایش" +ui_diagram_error: "نمودار قابل نمایش نیست" +ui_print_page: "چاپ این صفحه" +ui_sidebar_expand_section: "باز کردن بخش" +ui_sidebar_collapse_section: "بستن بخش" +ui_asciinema_timer: "زمان پخش" +ui_openapi_spec: "مشخصات OpenAPI" +ui_release_view: "مشاهده انتشار" +ui_release_source: "منبع" +ui_release_released: "منتشرشده" +ui_assets_file: "فایل" +ui_assets_checksum: "چک‌سام" +ui_assets_copy: "کپی چک‌سام" +ui_assets_copied: "کپی شد" +ui_assets_copy_all: "کپی تمام چک‌سام‌ها" +ui_assets_download: "دانلود فایل" +ui_download_channels: "کانال‌های دانلود" +ui_download_unpublished: "در انتظار انتشار" +# Used in sentences such as "All Tags" +ui_all: "همه" +ui_list_separator: "، " +ui_blog_index_toggle: "تعویض چیدمان" # Footer text -footer_all_rights_reserved: تمام حقوق محفوظ است. - +footer_all_rights_reserved: "تمام حقوق محفوظ است." +ui_footer_collapse: "پنهان کردن پیوندهای پاورقی" +ui_footer_expand: "نمایش پیوندهای پاورقی" # Post (blog, article, etc.) -post_last_mod: آخرین تغییرات -post_edit_this: این صفحه را ویرایش کنید -post_view_markdown: مشاهدهٔ Markdown -post_create_child_page: ایجاد زیر صفحه در این صفحه -post_create_issue: ساخت ایشو -post_create_project_issue: ساخت ایشو برای پوسته -post_reading_time: دقیقه برای خواندن -post_less_than_a_minute_read: کمتر از یک دقیقه - +post_last_mod: "آخرین تغییرات" +post_upstream: "{{ .work }}، {{ .copyright }}، تحت مجوز {{ .license }}. {{ .notice }} را ببینید." +post_upstream_adapted: "اقتباس‌شده از {{ .work }}، {{ .copyright }}، تحت مجوز {{ .license }}. {{ .notice }} و {{ .history }} را ببینید." +post_upstream_adapted_plain: "اقتباس‌شده از {{ .work }}، {{ .copyright }}، تحت مجوز {{ .license }}. {{ .notice }} را ببینید." +post_upstream_notice: "ذکر منبع" +post_upstream_history: "تاریخچه تغییرات" +post_translated: "این صفحه ترجمه است؛ {{ .original }} ملاک است." +post_translated_original: "اصلی" +post_edit_this: "این صفحه را ویرایش کنید" +post_view_markdown: "مشاهدهٔ Markdown" +post_create_child_page: "ایجاد زیرصفحه" +post_create_issue: "ایجاد مسئلهٔ مستندات" +post_create_project_issue: "ایجاد مسئلهٔ پروژه" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "توسط {{ .Authors }} · در {{ .Section }}" +post_meta_in: "در {{ .Section }}" +post_reading_time: "دقیقه مطالعه" +post_less_than_a_minute_read: "کمتر از یک دقیقه" +post_word_count: "{{ .Count }} کلمه" +post_reading_minutes: "{{ .Minutes }} دقیقه" +post_read_original: "بیشتر بخوانید" # Print support -print_printable_section: این حالت نمایش چند صفحه ای قابل پرینت این قسمت می‌باشد. -print_click_to_print: برای پرینت کلیک کنید. -print_show_regular: بازگشت به حالت نمایش عادی این قسمت -print_entire_section: پرینت کامل قسمت - +print_printable_section: "این حالت چندصفحه‌ای قابل چاپ این بخش است." +print_click_to_print: "برای پرینت کلیک کنید." +print_show_regular: "بازگشت به نمای معمول این صفحه" +print_entire_section: "چاپ کامل بخش" # Feedback -feedback_question: این صفحه به شما کمک کرد؟ -feedback_positive: آره -feedback_negative: نه - -# Replace these values with reviewed translations when available. -callout_caution: Caution -callout_important: Important -callout_note: Note -callout_tip: Tip -callout_warning: Warning - -# UI strings. Buttons and similar. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -ui_all: all - -# Footer text -toc_on_this_page: Content - +feedback_question: "این صفحه به شما کمک کرد؟" +feedback_positive: "بله" +feedback_negative: "نه" +feedback_thanks: "سپاسگزاریم—بازخورد شما به بهبود این صفحه کمک می‌کند." +feedback_reason_prompt: "چه چیزی مانع شد؟ (اختیاری)" +feedback_reason_missing: "اطلاعات ناقص" +feedback_reason_outdated: "نادرست یا قدیمی" +feedback_reason_failed: "مراحل کار نکردند" +feedback_reason_unclear: "درک آن دشوار است" +feedback_details: "جزئیات را در نظرات اضافه کنید" +feedback_change: "تغییر پاسخ" +# Table of contents +toc_on_this_page: "محتوا" # Error pages -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +error_404_title: "صفحه یافت نشد" +error_404_body: "متاسفانه این صفحه وجود ندارد. از صفحه اصلی دوباره شروع کنید." +error_404_home: "به صفحهٔ اصلی بروید" +# Version banner +version_banner_archived: "نسخهٔ {{ .Version }} مستندات دیگر به‌طور فعال نگهداری نمی‌شود. سایتی که اکنون می‌بینید یک نسخهٔ بایگانی‌شده است." +version_banner_latest: "برای مستندات به‌روز، به {{ .Link }} مراجعه کنید." +version_banner_latest_link: "آخرین نسخه" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "برای بارگذاری نظرات، JavaScript لازم است." +comments_noscript_link: "بحث‌ها را در GitHub مشاهده کنید." +# LLM page actions +ui_open_in_prompt_label: "دربارهٔ این صفحه بپرسید" +ui_view_history: "مشاهده تاریخچه ویرایش" +ui_table_scroll: "جدول قابل پیمایش" +ui_filetree_divider: "تغییر عرض ستون توضیحات کنار درخت فایل‌ها" +book_figure: "شکل" +book_table: "جدول" +book_equation: "معادله" +book_example: "مثال" +book_toc: "فهرست کتاب" +book_draft: "پیش‌نویس" +book_draft_notice: "این فصل هنوز در حال بازنگری است." +contributors_count: "مشارکت‌کنندگان" +# Article series +ui_series_title: "سری" +ui_series_part: "قسمت {{ .Part }} از {{ .Total }}" +# Markdown output +markdown_llms_index: "فهرست LLMS:" +markdown_section_pages: "صفحات بخش:" +markdown_backlinks: "لینک‌های بازگشتی:" diff --git a/i18n/fi.yaml b/i18n/fi.yaml index 5c8a022..4ff6ebc 100644 --- a/i18n/fi.yaml +++ b/i18n/fi.yaml @@ -1,293 +1,207 @@ +# Alert labels +callout_caution: "Huomio" +callout_important: "Tärkeää" +callout_note: "Huomautus" +callout_tip: "Vinkki" +callout_warning: "Varoitus" +callout_success: "Onnistui" +callout_danger: "Vaara" +callout_question: "Kysymys" +callout_example: "Esimerkki" +callout_quote: "Lainaus" +callout_details: "Yksityiskohdat" # UI strings. Buttons and similar. -ui_pager_prev: Edellinen -ui_pager_next: Seuraava -ui_search: Hae sivustolta... - +ui_pager_prev: "Edellinen" +ui_pager_next: "Seuraava" +ui_search: "Hae…" +ui_search_empty: "Ei tuloksia" +ui_search_loading: "Ladataan hakuindeksiä…" +ui_search_results: "{count} tulosta löydetty" +ui_search_nav: "Siirry" +ui_search_open: "Avaa" +ui_search_close: "Sulje" +ui_palette_actions: "Toiminnot" +ui_palette_page_actions: "Sivutoiminnot" +ui_palette_preferences: "Asetukset" +ui_palette_commands: "Komennot" +ui_palette_quick_links: "Nopeat linkit" +ui_palette_no_commands: "Ei vastaavia komentoja" +ui_palette_choose: "Valitse vaihtoehto" +ui_palette_action_failed: "Toimintoa ei voitu suorittaa" +ui_palette_pages: "Sivut" +ui_palette_index_unavailable: "Sivuindeksi ei ole käytettävissä; toiminnot toimivat kuitenkin" +ui_sidebar_nav: "Osion navigointi" +ui_heading_self_link: "Linkki tähän otsikkoon" +ui_field_self_link: "Linkki tähän kenttään" +ui_preview_source: "Markdown" +ui_preview_rendered: "Renderöity" +ui_main_nav: "Päänavigointi" +ui_home: "Etusivu" +ui_sidebar_expand: "Laajenna sivupalkki" +ui_sidebar_collapse: "Kutista sivupalkki" +ui_drawer_open: "Avaa navigointi" +ui_drawer_close: "Sulje navigointi" +ui_root_menu_label: "Valitse osio" +ui_tags_title: "Tagit" +ui_tag_title: "Tagi" +ui_categories_title: "Kategoriat" +ui_category_title: "Kategoria" +ui_modules_title: "Moduulit" +ui_module_title: "Moduuli" +ui_authors_title: "Kirjoittajat" +ui_author_title: "Kirjoittaja" +ui_theme_toggle: "Vaihda väriteemaa" +ui_theme_auto: "Järjestelmä" +ui_theme_light: "Vaalea" +ui_theme_dark: "Tumma" +ui_toc_hide: "Piilota sisällysluettelo" +ui_toc_show: "Näytä sisällysluettelo" +ui_language_select: "Valitse kieli" +ui_language_switch: "Vaihda kieli" +ui_skip_to_content: "Ohita ja siirry sisältöön" +ui_page_actions: "Toiminnot" +ui_open_in_chatgpt: "Avaa ChatGPT:ssä" +ui_open_in_claude: "Avaa Claudessa" +ui_open_in_prompt: "Lue %s, jotta voin kysyä siitä." +ui_copy_markdown: "Kopioi Markdown" +ui_copy_success: "Markdown kopioitu" +ui_copy_error: "Markdownia ei voitu kopioida" +ui_share: "Jaa" +ui_share_email: "Sähköposti" +ui_copy_link: "Kopioi linkki" +ui_copy_link_success: "Linkki kopioitu" +ui_copy_link_error: "Linkkiä ei voitu kopioida" +ui_code_copy_label: "Kopioi koodi" +ui_code_copied: "Kopioitu" +ui_code_copy_error: "Kopiointi epäonnistui" +ui_code_show_all: "Näytä kaikki {{ .Count }} riviä" +ui_code_collapse: "Tiivistä koodi" +ui_tabs_label: "Välilehdet" +ui_pricing_featured: "Suositeltu" +ui_pricing_included: "Mukana" +ui_pricing_excluded: "Ei mukana" +ui_marquee_pause: "Tauko liikkeessä" +ui_kbd_with: "kanssa" +ui_keyboard_shortcuts: "Pikanäppäimet" +ui_shortcut_tree_move: "Siirry sivupalkin kautta" +ui_shortcut_tree_toggle: "Tiivistä tai laajenna osio" +ui_shortcut_tree_open: "Avaa kohdistettu sivu" +ui_shortcut_heading_move: "Edellinen tai seuraava otsikko" +ui_shortcut_page_move: "Edellinen tai seuraava sivu" +ui_shortcut_search: "Haku" +ui_shortcut_commands: "Komentopalkki" +ui_shortcut_reading_mode: "Lukutila" +ui_shortcut_language: "Vaihda kieli" +ui_shortcut_theme: "Vaihda teema" +ui_shortcut_route: "Vaihda ylimmän tason sivujen välillä" +ui_page_annotation: "Sivun tiedot" +ui_backlinks: "Paluulinkit" +ui_backlinks_more: "Näytä {{ . }} lisää" +ui_field_required: "pakollinen" +ui_action_unavailable: "ei käytettävissä" +ui_image_zoom_dialog: "Kuvan esikatselu" +ui_image_zoom_open: "Avaa kuvan esikatselu" +ui_image_zoom_close: "Sulje kuvan esikatselu" +ui_diagram_expand: "Laajenna kaavio" +ui_diagram_zoom_dialog: "Kaavion esikatselu" +ui_diagram_zoom_close: "Sulje kaavion esikatselu" +ui_diagram_zoom_in: "Lähennä" +ui_diagram_zoom_out: "Loitonna" +ui_diagram_zoom_reset: "Palauta näkymä" +ui_diagram_error: "Kaaviota ei voitu renderöidä" +ui_print_page: "Tulosta tämä sivu" +ui_sidebar_expand_section: "Laajenna osio" +ui_sidebar_collapse_section: "Tiivistä osio" +ui_asciinema_timer: "Toiston aika" +ui_openapi_spec: "OpenAPI-määrittely" +ui_release_view: "Näytä julkaisu" +ui_release_source: "Lähde" +ui_release_released: "Julkaistu" +ui_assets_file: "Tiedosto" +ui_assets_checksum: "Tarkistussumma" +ui_assets_copy: "Kopioi tarkistussumma" +ui_assets_copied: "Kopioitu" +ui_assets_copy_all: "Kopioi kaikki tarkistussummat" +ui_assets_download: "Lataa tiedosto" +ui_download_channels: "Latauskanavat" +ui_download_unpublished: "Odottaa julkaisua" # Used in sentences such as "All Tags" -ui_all: kaikki - +ui_all: "kaikki" +ui_list_separator: ", " +ui_blog_index_toggle: "Vaihda asettelu" # Footer text -footer_all_rights_reserved: (C) - +footer_all_rights_reserved: "Kaikki oikeudet pidätetään" +ui_footer_collapse: "Piilota alatunniste-linkit" +ui_footer_expand: "Näytä alatunniste-linkit" # Post (blog, article, etc.) -post_last_mod: Viimeksi muokattu -post_edit_this: Muokkaa sivua -post_view_markdown: Näytä Markdown -post_create_child_page: Luo alisivu -post_create_issue: Luo dokumentaation vikailmoitus -post_create_project_issue: Luo projektin vikailmoitus -post_reading_time: minuutin teksti -post_less_than_a_minute_read: alle minuutin - +post_last_mod: "Viimeksi muokattu" +post_upstream: "{{ .work }}, {{ .copyright }}, {{ .license }}-lisenssillä. Katso {{ .notice }}." +post_upstream_adapted: "Muokattu teoksesta {{ .work }}, {{ .copyright }}, {{ .license }}-lisenssillä. Katso {{ .notice }} ja {{ .history }}." +post_upstream_adapted_plain: "Muokattu teoksesta {{ .work }}, {{ .copyright }}, {{ .license }}-lisenssillä. Katso {{ .notice }}." +post_upstream_notice: "maininta" +post_upstream_history: "muutoshistoria" +post_translated: "Tämä sivu on käännös; {{ .original }} on ensisijainen." +post_translated_original: "alkuperäinen" +post_edit_this: "Muokkaa sivua" +post_view_markdown: "Näytä Markdown" +post_create_child_page: "Luo alisivu" +post_create_issue: "Luo dokumentaation ongelmaraportti" +post_create_project_issue: "Luo projektin ongelmaraportti" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "Kirjoittanut {{ .Authors }} · Osiossa {{ .Section }}" +post_meta_in: "Osiossa {{ .Section }}" +post_reading_time: "minuuttia lukuaikaa" +post_less_than_a_minute_read: "alle minuutin" +post_word_count: "{{ .Count }} sanaa" +post_reading_minutes: "{{ .Minutes }} min" +post_read_original: "Lue lisää" # Print support -print_printable_section: Tämä on monen sivun tulostettava näkymä osiosta -print_click_to_print: Paina tulostaaksesi -print_show_regular: Palaa tavalliseen näkymään -print_entire_section: Tulosta koko osio - -# Replace these values with reviewed translations when available. -callout_caution: Caution -callout_important: Important -callout_note: Note -callout_tip: Tip -callout_warning: Warning - -# UI strings. Buttons and similar. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -feedback_question: Was this page helpful? -feedback_positive: Yes -feedback_negative: No - +print_printable_section: "Tämä on osion monisivuinen tulostusnäkymä." +print_click_to_print: "Paina tulostaaksesi" +print_show_regular: "Palaa tavalliseen näkymään" +print_entire_section: "Tulosta koko osio" +# Feedback +feedback_question: "Oliko tästä sivusta apua?" +feedback_positive: "Kyllä" +feedback_negative: "Ei" +feedback_thanks: "Kiitos palautteestasi—se auttaa parantamaan tätä sivua." +feedback_reason_prompt: "Mikä esti onnistumisen? (valinnainen)" +feedback_reason_missing: "Puuttuva tieto" +feedback_reason_outdated: "Virheellinen tai vanhentunut" +feedback_reason_failed: "Vaiheet eivät toimineet" +feedback_reason_unclear: "Vaikea ymmärtää" +feedback_details: "Lisää yksityiskohtia kommentteihin" +feedback_change: "Muuta vastausta" # Table of contents -toc_on_this_page: Content - +toc_on_this_page: "Sisältö" # Error pages -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +error_404_title: "Sivua ei löydy" +error_404_body: "Anteeksi, tätä sivua ei ole olemassa. Yritä aloittaa uudelleen etusivulta." +error_404_home: "Siirry etusivulle" +# Version banner +version_banner_archived: "Dokumentaation versiota {{ .Version }} ei enää ylläpidetä aktiivisesti. Näyttämäsi sivusto on arkistoitu kopio." +version_banner_latest: "Ajantasainen dokumentaatio: {{ .Link }}." +version_banner_latest_link: "uusin versio" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "Kommenttien lataaminen vaatii JavaScriptin." +comments_noscript_link: "Katso keskustelut GitHubissa." +# LLM page actions +ui_open_in_prompt_label: "Kysy tästä sivusta" +ui_view_history: "Näytä muokkaushistoria" +ui_table_scroll: "Vieritettävä taulukko" +ui_filetree_divider: "Muuta tiedostopuun vieressä olevan kommenttisarakkeen leveyttä" +book_figure: "Kuva" +book_table: "Taulukko" +book_equation: "Yhtälö" +book_example: "Esimerkki" +book_toc: "Kirjan sisällysluettelo" +book_draft: "Luonnos" +book_draft_notice: "Tämä luku on vielä muokattavana." +contributors_count: "osallistujaa" +# Article series +ui_series_title: "Sarja" +ui_series_part: "Osa {{ .Part }}/{{ .Total }}" +# Markdown output +markdown_llms_index: "LLMS-indeksi:" +markdown_section_pages: "Osion sivut:" +markdown_backlinks: "Paluulinkit:" diff --git a/i18n/fr.yaml b/i18n/fr.yaml index 6d627a0..4d5f0ec 100644 --- a/i18n/fr.yaml +++ b/i18n/fr.yaml @@ -1,288 +1,207 @@ # Alert labels -callout_caution: Prudence -callout_important: Important -callout_note: Note -callout_tip: Astuce -callout_warning: Avertissement - +callout_caution: "Prudence" +callout_important: "Important" +callout_note: "Note" +callout_tip: "Astuce" +callout_warning: "Avertissement" +callout_success: "Succès" +callout_danger: "Danger" +callout_question: "Question" +callout_example: "Exemple" +callout_quote: "Citation" +callout_details: "Détails" # UI strings. Buttons and similar. -ui_pager_prev: Précédent -ui_pager_next: Suivant -ui_search: Rechercher - +ui_pager_prev: "Précédent" +ui_pager_next: "Suivant" +ui_search: "Rechercher…" +ui_search_empty: "Aucun résultat trouvé" +ui_search_loading: "Chargement de l'index de recherche…" +ui_search_results: "{count} résultats trouvés" +ui_search_nav: "Naviguer" +ui_search_open: "Ouvrir" +ui_search_close: "Fermer" +ui_palette_actions: "Actions" +ui_palette_page_actions: "Actions de page" +ui_palette_preferences: "Préférences" +ui_palette_commands: "Commandes" +ui_palette_quick_links: "Liens rapides" +ui_palette_no_commands: "Aucune commande correspondante" +ui_palette_choose: "Sélectionner une option" +ui_palette_action_failed: "L'action n'a pas pu être exécutée" +ui_palette_pages: "Pages" +ui_palette_index_unavailable: "Index de page indisponible ; les actions restent fonctionnelles" +ui_sidebar_nav: "Navigation de section" +ui_heading_self_link: "Lien vers ce titre" +ui_field_self_link: "Lien vers ce champ" +ui_preview_source: "Markdown" +ui_preview_rendered: "Affichage" +ui_main_nav: "Navigation principale" +ui_home: "Accueil" +ui_sidebar_expand: "Développer la barre latérale" +ui_sidebar_collapse: "Réduire la barre latérale" +ui_drawer_open: "Ouvrir la navigation" +ui_drawer_close: "Fermer la navigation" +ui_root_menu_label: "Sélectionner une section" +ui_tags_title: "Balises" +ui_tag_title: "Balise" +ui_categories_title: "Catégories" +ui_category_title: "Catégorie" +ui_modules_title: "Modules" +ui_module_title: "Module" +ui_authors_title: "Auteurs" +ui_author_title: "Auteur" +ui_theme_toggle: "Basculer le thème couleur" +ui_theme_auto: "Système" +ui_theme_light: "Clair" +ui_theme_dark: "Sombre" +ui_toc_hide: "Masquer la table des matières" +ui_toc_show: "Afficher la table des matières" +ui_language_select: "Sélectionner une langue" +ui_language_switch: "Changer de langue" +ui_skip_to_content: "Aller au contenu" +ui_page_actions: "Actions" +ui_open_in_chatgpt: "Ouvrir dans ChatGPT" +ui_open_in_claude: "Ouvrir dans Claude" +ui_open_in_prompt: "Lire depuis %s afin que je puisse poser des questions à ce sujet." +ui_copy_markdown: "Copier le Markdown" +ui_copy_success: "Markdown copié" +ui_copy_error: "Impossible de copier le Markdown" +ui_share: "Partager" +ui_share_email: "Courriel" +ui_copy_link: "Copier le lien" +ui_copy_link_success: "Lien copié" +ui_copy_link_error: "Impossible de copier le lien" +ui_code_copy_label: "Copier le code" +ui_code_copied: "Copié" +ui_code_copy_error: "Échec de la copie" +ui_code_show_all: "Afficher les {{ .Count }} lignes" +ui_code_collapse: "Réduire le code" +ui_tabs_label: "Onglets" +ui_pricing_featured: "Recommandé" +ui_pricing_included: "Inclus" +ui_pricing_excluded: "Non inclus" +ui_marquee_pause: "Mettre en pause le mouvement" +ui_kbd_with: "avec" +ui_keyboard_shortcuts: "Raccourcis clavier" +ui_shortcut_tree_move: "Naviguer dans la barre latérale" +ui_shortcut_tree_toggle: "Réduire ou développer une section" +ui_shortcut_tree_open: "Ouvrir la page ayant le focus" +ui_shortcut_heading_move: "Aller à la section précédente ou suivante" +ui_shortcut_page_move: "Aller à la page précédente ou suivante" +ui_shortcut_search: "Rechercher" +ui_shortcut_commands: "Palette de commandes" +ui_shortcut_reading_mode: "Mode lecture" +ui_shortcut_language: "Changer de langue" +ui_shortcut_theme: "Changer de thème" +ui_shortcut_route: "Basculer entre les pages principales" +ui_page_annotation: "Informations sur la page" +ui_backlinks: "Liens inverses" +ui_backlinks_more: "Afficher {{ . }} de plus" +ui_field_required: "obligatoire" +ui_action_unavailable: "indisponible" +ui_image_zoom_dialog: "Aperçu de l'image" +ui_image_zoom_open: "Ouvrir l'aperçu de l'image" +ui_image_zoom_close: "Fermer l'aperçu de l'image" +ui_diagram_expand: "Agrandir le schéma" +ui_diagram_zoom_dialog: "Aperçu du schéma" +ui_diagram_zoom_close: "Fermer l'aperçu du schéma" +ui_diagram_zoom_in: "Zoomer" +ui_diagram_zoom_out: "Dézoomer" +ui_diagram_zoom_reset: "Réinitialiser l'affichage" +ui_diagram_error: "Le schéma n'a pas pu être affiché" +ui_print_page: "Imprimer cette page" +ui_sidebar_expand_section: "Développer la section" +ui_sidebar_collapse_section: "Réduire la section" +ui_asciinema_timer: "Durée de lecture" +ui_openapi_spec: "Spécification OpenAPI" +ui_release_view: "Voir la version" +ui_release_source: "Source" +ui_release_released: "Publiée" +ui_assets_file: "Fichier" +ui_assets_checksum: "Somme de contrôle" +ui_assets_copy: "Copier la somme de contrôle" +ui_assets_copied: "Copié" +ui_assets_copy_all: "Copier toutes les sommes de contrôle" +ui_assets_download: "Télécharger le fichier" +ui_download_channels: "Canaux de téléchargement" +ui_download_unpublished: "En attente de publication" +# Used in sentences such as "All Tags" +ui_all: "tous" +ui_list_separator: ", " +ui_blog_index_toggle: "Changer de disposition" # Footer text -footer_all_rights_reserved: Tous droits réservés - +footer_all_rights_reserved: "Tous droits réservés" +ui_footer_collapse: "Masquer les liens du pied de page" +ui_footer_expand: "Afficher les liens du pied de page" # Post (blog, article, etc.) -post_last_mod: Dernière modification -post_edit_this: Modifier cette page -post_view_markdown: Voir le Markdown -post_create_child_page: Créer une page dans cette section -post_create_issue: Signaler un problème dans la documentation -post_create_project_issue: Signaler un problème dans le projet -post_reading_time: minutes à lire -post_less_than_a_minute_read: Moins d'une minute à lire -post_word_count: '{{ .Count }} mots' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Lire l'original - +post_last_mod: "Dernière modification" +post_upstream: "{{ .work }}, {{ .copyright }}, sous licence {{ .license }}. Voir {{ .notice }}." +post_upstream_adapted: "Adapté de {{ .work }}, {{ .copyright }}, sous licence {{ .license }}. Voir {{ .notice }} et {{ .history }}." +post_upstream_adapted_plain: "Adapté de {{ .work }}, {{ .copyright }}, sous licence {{ .license }}. Voir {{ .notice }}." +post_upstream_notice: "attribution" +post_upstream_history: "historique des modifications" +post_translated: "Cette page est une traduction ; l’{{ .original }} fait foi." +post_translated_original: "original" +post_edit_this: "Modifier cette page" +post_view_markdown: "Voir le Markdown" +post_create_child_page: "Créer une sous-page" +post_create_issue: "Créer un ticket sur la documentation" +post_create_project_issue: "Créer un ticket sur le projet" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "Par {{ .Authors }} · Dans {{ .Section }}" +post_meta_in: "Dans {{ .Section }}" +post_reading_time: "minutes de lecture" +post_less_than_a_minute_read: "Moins d'une minute à lire" +post_word_count: "{{ .Count }} mots" +post_reading_minutes: "{{ .Minutes }} min" +post_read_original: "Lire l'original" # Print support -print_printable_section: Version imprimable multipages. -print_click_to_print: Cliquer ici pour imprimer -print_show_regular: Retour à la version par défaut -print_entire_section: Imprimer la section entière - +print_printable_section: "Vue imprimable multi-pages de cette section." +print_click_to_print: "Cliquer ici pour imprimer" +print_show_regular: "Retour à la version par défaut" +print_entire_section: "Imprimer la section entière" # Feedback -feedback_question: Cette page est-elle utile? -feedback_positive: Oui -feedback_negative: Non - +feedback_question: "Cette page est-elle utile?" +feedback_positive: "Oui" +feedback_negative: "Non" +feedback_thanks: "Merci—votre retour nous aide à améliorer cette page." +feedback_reason_prompt: "Qu'est-ce qui a posé problème ? (facultatif)" +feedback_reason_missing: "Information manquante" +feedback_reason_outdated: "Incorrecte ou obsolète" +feedback_reason_failed: "Les étapes n'ont pas fonctionné" +feedback_reason_unclear: "Difficile à comprendre" +feedback_details: "Ajouter des détails dans les commentaires" +feedback_change: "Modifier la réponse" # Table of contents -toc_on_this_page: Sur cette page - -# Replace these values with reviewed translations when available. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -ui_all: all - -# Footer text -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +toc_on_this_page: "Sur cette page" +# Error pages +error_404_title: "Page non trouvée" +error_404_body: "Désolé, cette page n'existe pas. Essayez de recommencer depuis la page d'accueil." +error_404_home: "Aller à la page d'accueil" +# Version banner +version_banner_archived: "La version {{ .Version }} de la documentation n'est plus activement maintenue. Le site que vous consultez actuellement est une copie archivée." +version_banner_latest: "Pour accéder à la documentation à jour, consultez la {{ .Link }}." +version_banner_latest_link: "dernière version" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "JavaScript est requis pour charger les commentaires." +comments_noscript_link: "Voir les discussions sur GitHub." +# LLM page actions +ui_open_in_prompt_label: "Poser une question à propos de cette page" +ui_view_history: "Voir l'historique des modifications" +ui_table_scroll: "Tableau défilant" +ui_filetree_divider: "Redimensionner la colonne de commentaires à côté de l’arborescence des fichiers" +book_figure: "Figure" +book_table: "Tableau" +book_equation: "Équation" +book_example: "Exemple" +book_toc: "Sommaire du livre" +book_draft: "Brouillon" +book_draft_notice: "Ce chapitre est encore en cours de révision." +contributors_count: "contributeurs" +# Article series +ui_series_title: "Série" +ui_series_part: "Partie {{ .Part }} sur {{ .Total }}" +# Markdown output +markdown_llms_index: "Index LLMS :" +markdown_section_pages: "Pages de section :" +markdown_backlinks: "Liens inverses :" diff --git a/i18n/he.yaml b/i18n/he.yaml index 15ca4de..b6f4bd4 100644 --- a/i18n/he.yaml +++ b/i18n/he.yaml @@ -1,295 +1,207 @@ # Alert labels -callout_caution: זהירות -callout_important: חשוב -callout_note: הערה -callout_tip: טיפ -callout_warning: אזהרה - +callout_caution: "זהירות" +callout_important: "חשוב" +callout_note: "הערה" +callout_tip: "טיפ" +callout_warning: "אזהרה" +callout_success: "הצלחה" +callout_danger: "סיכון" +callout_question: "שאלה" +callout_example: "דוגמה" +callout_quote: "ציטוט" +callout_details: "פרטים" # UI strings. Buttons and similar. -ui_pager_prev: הקודם -ui_pager_next: הבא -ui_search: חיפוש באתר… - +ui_pager_prev: "הקודם" +ui_pager_next: "הבא" +ui_search: "חיפוש…" +ui_search_empty: "לא נמצאו תוצאות" +ui_search_loading: "טוען אינדקס חיפוש…" +ui_search_results: "{count} תוצאות נמצאו" +ui_search_nav: "נווט" +ui_search_open: "פתח" +ui_search_close: "סגור" +ui_palette_actions: "פעולות" +ui_palette_page_actions: "פעולות עמוד" +ui_palette_preferences: "העדפות" +ui_palette_commands: "פקודות" +ui_palette_quick_links: "קישורים מהירים" +ui_palette_no_commands: "לא נמצאו פקודות תואמות" +ui_palette_choose: "בחר אפשרות" +ui_palette_action_failed: "לא ניתן להשלים את הפעולה" +ui_palette_pages: "עמודים" +ui_palette_index_unavailable: "אינדקס עמוד אינו זמין; הפעולות עדיין פועלות" +ui_sidebar_nav: "ניווט בפרק" +ui_heading_self_link: "קישור לכותרת זו" +ui_field_self_link: "קישור לשדה זה" +ui_preview_source: "Markdown" +ui_preview_rendered: "הצגה" +ui_main_nav: "ניווט ראשי" +ui_home: "דף הבית" +ui_sidebar_expand: "הרחב את סרגל הצד" +ui_sidebar_collapse: "כווץ את סרגל הצד" +ui_drawer_open: "פתח ניווט" +ui_drawer_close: "סגור ניווט" +ui_root_menu_label: "בחר פרק" +ui_tags_title: "תגיות" +ui_tag_title: "תגית" +ui_categories_title: "קטגוריות" +ui_category_title: "קטגוריה" +ui_modules_title: "מודולים" +ui_module_title: "מודול" +ui_authors_title: "מחברים" +ui_author_title: "מחבר" +ui_theme_toggle: "החלף ערכת צבעים" +ui_theme_auto: "מערכת" +ui_theme_light: "בהיר" +ui_theme_dark: "כהה" +ui_toc_hide: "הסתר תוכן עניינים" +ui_toc_show: "הצג תוכן עניינים" +ui_language_select: "בחר שפה" +ui_language_switch: "החלף שפה" +ui_skip_to_content: "דלג לתוכן" +ui_page_actions: "פעולות" +ui_open_in_chatgpt: "פתח ב-ChatGPT" +ui_open_in_claude: "פתח ב-Claude" +ui_open_in_prompt: "קרא מ-%s כדי שאוכל לשאול עליו שאלות." +ui_copy_markdown: "העתק Markdown" +ui_copy_success: "Markdown הועתק" +ui_copy_error: "לא ניתן להעתיק את Markdown" +ui_share: "שתף" +ui_share_email: "אימייל" +ui_copy_link: "העתק קישור" +ui_copy_link_success: "הקישור הועתק" +ui_copy_link_error: "לא ניתן להעתיק את הקישור" +ui_code_copy_label: "העתק קוד" +ui_code_copied: "הועתק" +ui_code_copy_error: "העתקה נכשלה" +ui_code_show_all: "הצג את כל {{ .Count }} השורות" +ui_code_collapse: "כווץ קוד" +ui_tabs_label: "לשוניות" +ui_pricing_featured: "מומלץ" +ui_pricing_included: "כולל" +ui_pricing_excluded: "לא כולל" +ui_marquee_pause: "עצור תנועה" +ui_kbd_with: "עם" +ui_keyboard_shortcuts: "קיצורי מקלדת" +ui_shortcut_tree_move: "נווט בסרגל הצד" +ui_shortcut_tree_toggle: "כווץ או הרחב פרק" +ui_shortcut_tree_open: "פתח את הדף שבמיקוד" +ui_shortcut_heading_move: "הכותרת הקודמת או הבאה" +ui_shortcut_page_move: "הדף הקודם או הבא" +ui_shortcut_search: "חיפוש" +ui_shortcut_commands: "לוח פקודות" +ui_shortcut_reading_mode: "מצב קריאה" +ui_shortcut_language: "החלף שפה" +ui_shortcut_theme: "החלף נושא" +ui_shortcut_route: "עבור בין דפים ברמה העליונה" +ui_page_annotation: "מידע על העמוד" +ui_backlinks: "קישורים הפונים" +ui_backlinks_more: "הצג עוד {{ . }}" +ui_field_required: "נדרש" +ui_action_unavailable: "לא זמין" +ui_image_zoom_dialog: "תצוגה מקדימה של תמונה" +ui_image_zoom_open: "פתח תצוגה מקדימה של תמונה" +ui_image_zoom_close: "סגור תצוגה מקדימה של תמונה" +ui_diagram_expand: "הגדל דיאגרמה" +ui_diagram_zoom_dialog: "תצוגה מקדימה של דיאגרמה" +ui_diagram_zoom_close: "סגור תצוגה מקדימה של דיאגרמה" +ui_diagram_zoom_in: "הגדלה" +ui_diagram_zoom_out: "הקטנה" +ui_diagram_zoom_reset: "אפס תצוגה" +ui_diagram_error: "לא ניתן להציג את הדיאגרמה" +ui_print_page: "הדפס עמוד זה" +ui_sidebar_expand_section: "הרחב פרק" +ui_sidebar_collapse_section: "כווץ פרק" +ui_asciinema_timer: "זמן ניגון" +ui_openapi_spec: "הגדרת OpenAPI" +ui_release_view: "הצג מהדורה" +ui_release_source: "מקור" +ui_release_released: "פורסם" +ui_assets_file: "קובץ" +ui_assets_checksum: "סכום ביקורת" +ui_assets_copy: "העתק סכום ביקורת" +ui_assets_copied: "הועתק" +ui_assets_copy_all: "העתק את כל סכומי הביקורת" +ui_assets_download: "הורד קובץ" +ui_download_channels: "ערוצי הורדה" +ui_download_unpublished: "ממתין לפרסום" # Used in sentences such as "All Tags" -ui_all: כל - +ui_all: "כל" +ui_list_separator: ", " +ui_blog_index_toggle: "החלף תצוגה" # Footer text -footer_all_rights_reserved: כל הזכויות שמורות - +footer_all_rights_reserved: "כל הזכויות שמורות" +ui_footer_collapse: "הסתר קישורים בתחתית" +ui_footer_expand: "הצג קישורים בתחתית" # Post (blog, article, etc.) -post_last_mod: עדכון אחרון -post_edit_this: עריכת העמוד -post_view_markdown: הצג Markdown -post_create_child_page: צור עמוד משנה -post_create_issue: Create docs issue -post_create_project_issue: Create project issue -post_reading_time: - one: דקת קריאה - other: דקות קריאה -post_less_than_a_minute_read: פחות מדקה - +post_last_mod: "עדכון אחרון" +post_upstream: "{{ .work }}, {{ .copyright }}, ברישיון {{ .license }}. ראו {{ .notice }}." +post_upstream_adapted: "מבוסס על {{ .work }}, {{ .copyright }}, ברישיון {{ .license }}. ראו {{ .notice }} ואת {{ .history }}." +post_upstream_adapted_plain: "מבוסס על {{ .work }}, {{ .copyright }}, ברישיון {{ .license }}. ראו {{ .notice }}." +post_upstream_notice: "ייחוס" +post_upstream_history: "היסטוריית שינויים" +post_translated: "דף זה הוא תרגום; {{ .original }} הוא הקובע." +post_translated_original: "המקור" +post_edit_this: "עריכת העמוד" +post_view_markdown: "הצג Markdown" +post_create_child_page: "צור עמוד משנה" +post_create_issue: "צור בעיה בתיעוד" +post_create_project_issue: "צור בעיה בפרויקט" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "מאת {{ .Authors }} · ב־{{ .Section }}" +post_meta_in: "ב-{{ .Section }}" +post_reading_time: "דקות קריאה" +post_less_than_a_minute_read: "פחות מדקה" +post_word_count: "{{ .Count }} מילים" +post_reading_minutes: "{{ .Minutes }} דקות" +post_read_original: "קרא עוד" # Print support -print_printable_section: זוהי גרסה להדפסה -print_click_to_print: לחץ כאן להדפסה -print_show_regular: חזור לתצוגה רגילה -print_entire_section: הדפס הכל - +print_printable_section: "זוהי תצוגה מרובת דפים להדפסה של מקטע זה." +print_click_to_print: "לחץ כאן להדפסה" +print_show_regular: "חזור לתצוגה רגילה" +print_entire_section: "הדפס את המקטע כולו" # Feedback -feedback_question: האם העמוד הזה היה מועיל לך? -feedback_positive: כן -feedback_negative: לא - +feedback_question: "האם העמוד הזה היה מועיל לך?" +feedback_positive: "כן" +feedback_negative: "לא" +feedback_thanks: "תודה—המשוב שלך עוזר לנו לשפר את הדף הזה." +feedback_reason_prompt: "מה הפריע? (אופציונלי)" +feedback_reason_missing: "מידע חסר" +feedback_reason_outdated: "לא מדויק או מיושן" +feedback_reason_failed: "הצעדים לא עבדו" +feedback_reason_unclear: "קשה להבין" +feedback_details: "הוסף פרטים בתגובות" +feedback_change: "שנה תגובה" # Table of contents -toc_on_this_page: בעמוד זה - -# Replace these values with reviewed translations when available. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +toc_on_this_page: "תוכן" +# Error pages +error_404_title: "הדף לא נמצא" +error_404_body: "מצטער, הדף הזה לא קיים. נסה להתחיל שוב מהדף הבית." +error_404_home: "עבור לדף הבית" +# Version banner +version_banner_archived: "גרסת התיעוד {{ .Version }} אינה מתוחזקת עוד באופן פעיל. האתר המוצג כעת הוא עותק שמור בארכיון." +version_banner_latest: "לתיעוד עדכני, ראה את {{ .Link }}." +version_banner_latest_link: "הגרסה האחרונה" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "נדרש JavaScript כדי לטעון תגובות." +comments_noscript_link: "ראה דיונים ב-GitHub." +# LLM page actions +ui_open_in_prompt_label: "שאל על עמוד זה" +ui_view_history: "ראה היסטוריית עריכה" +ui_table_scroll: "טבלה ניתנת לגלילה" +ui_filetree_divider: "שנה את רוחב עמודת ההערות שליד עץ הקבצים" +book_figure: "איור" +book_table: "טבלה" +book_equation: "משוואה" +book_example: "דוגמה" +book_toc: "תוכן הספר" +book_draft: "טיוטה" +book_draft_notice: "פרק זה עדיין נמצא בעריכה." +contributors_count: "תורמים" +# Article series +ui_series_title: "סדרה" +ui_series_part: "חלק {{ .Part }} מתוך {{ .Total }}" +# Markdown output +markdown_llms_index: "אינדקס LLMS:" +markdown_section_pages: "עמודים בפרק:" +markdown_backlinks: "קישורים הפונים:" diff --git a/i18n/hi.yaml b/i18n/hi.yaml index fd898eb..f28ce42 100644 --- a/i18n/hi.yaml +++ b/i18n/hi.yaml @@ -1,293 +1,207 @@ +# Alert labels +callout_caution: "सावधानी" +callout_important: "महत्वपूर्ण" +callout_note: "नोट" +callout_tip: "सुझाव" +callout_warning: "चेतावनी" +callout_success: "सफलता" +callout_danger: "खतरा" +callout_question: "प्रश्न" +callout_example: "उदाहरण" +callout_quote: "उद्धरण" +callout_details: "विवरण" # UI strings. Buttons and similar. -ui_pager_prev: पिछला -ui_pager_next: अगला -ui_search: इस साइट में खोजें… - +ui_pager_prev: "पिछला" +ui_pager_next: "अगला" +ui_search: "खोजें…" +ui_search_empty: "कोई परिणाम नहीं मिला" +ui_search_loading: "खोज सूची लोड हो रही है…" +ui_search_results: "{count} परिणाम मिले" +ui_search_nav: "नेविगेट करें" +ui_search_open: "खोलें" +ui_search_close: "बंद करें" +ui_palette_actions: "क्रियाएँ" +ui_palette_page_actions: "पृष्ठ क्रियाएँ" +ui_palette_preferences: "प्राथमिकताएँ" +ui_palette_commands: "आदेश" +ui_palette_quick_links: "त्वरित लिंक" +ui_palette_no_commands: "मेल खाने वाले आदेश नहीं मिले" +ui_palette_choose: "एक विकल्प चुनें" +ui_palette_action_failed: "क्रिया पूरी नहीं हो सकी" +ui_palette_pages: "पृष्ठ" +ui_palette_index_unavailable: "पृष्ठ सूची उपलब्ध नहीं है; क्रियाएँ अभी भी काम करती हैं" +ui_sidebar_nav: "खंड नेविगेशन" +ui_heading_self_link: "इस शीर्षक का लिंक" +ui_field_self_link: "इस फ़ील्ड का लिंक" +ui_preview_source: "Markdown" +ui_preview_rendered: "प्रदर्शित" +ui_main_nav: "मुख्य नेविगेशन" +ui_home: "होम" +ui_sidebar_expand: "साइडबार विस्तारित करें" +ui_sidebar_collapse: "साइडबार संक्षिप्त करें" +ui_drawer_open: "नेविगेशन खोलें" +ui_drawer_close: "नेविगेशन बंद करें" +ui_root_menu_label: "खंड चुनें" +ui_tags_title: "टैग" +ui_tag_title: "टैग" +ui_categories_title: "श्रेणियाँ" +ui_category_title: "श्रेणी" +ui_modules_title: "मॉड्यूल" +ui_module_title: "मॉड्यूल" +ui_authors_title: "लेखक" +ui_author_title: "लेखक" +ui_theme_toggle: "रंग थीम टॉगल करें" +ui_theme_auto: "सिस्टम" +ui_theme_light: "हल्का" +ui_theme_dark: "गहरा" +ui_toc_hide: "विषय-सूची छिपाएँ" +ui_toc_show: "विषय-सूची दिखाएँ" +ui_language_select: "भाषा चुनें" +ui_language_switch: "भाषा बदलें" +ui_skip_to_content: "सामग्री पर जाएँ" +ui_page_actions: "क्रियाएँ" +ui_open_in_chatgpt: "ChatGPT में खोलें" +ui_open_in_claude: "Claude में खोलें" +ui_open_in_prompt: "%s से पढ़ें ताकि मैं इसके बारे में प्रश्न पूछ सकूँ।" +ui_copy_markdown: "Markdown कॉपी करें" +ui_copy_success: "Markdown कॉपी किया गया" +ui_copy_error: "Markdown कॉपी नहीं किया जा सका" +ui_share: "साझा करें" +ui_share_email: "ईमेल" +ui_copy_link: "लिंक कॉपी करें" +ui_copy_link_success: "लिंक कॉपी किया गया" +ui_copy_link_error: "लिंक कॉपी नहीं किया जा सका" +ui_code_copy_label: "कोड कॉपी करें" +ui_code_copied: "कॉपी किया गया" +ui_code_copy_error: "कॉपी असफल" +ui_code_show_all: "सभी {{ .Count }} पंक्तियाँ दिखाएँ" +ui_code_collapse: "कोड संक्षिप्त करें" +ui_tabs_label: "टैब" +ui_pricing_featured: "सुझाए गए" +ui_pricing_included: "शामिल" +ui_pricing_excluded: "शामिल नहीं" +ui_marquee_pause: "गति रोकें" +ui_kbd_with: "के साथ" +ui_keyboard_shortcuts: "कीबोर्ड शॉर्टकट" +ui_shortcut_tree_move: "साइडबार में आगे-पीछे जाएँ" +ui_shortcut_tree_toggle: "खंड को संक्षिप्त या विस्तारित करें" +ui_shortcut_tree_open: "फ़ोकस किए गए पृष्ठ को खोलें" +ui_shortcut_heading_move: "पिछला या अगला शीर्षक" +ui_shortcut_page_move: "पिछला या अगला पृष्ठ" +ui_shortcut_search: "खोज" +ui_shortcut_commands: "आदेश पैलेट" +ui_shortcut_reading_mode: "पठन मोड" +ui_shortcut_language: "भाषा बदलें" +ui_shortcut_theme: "थीम बदलें" +ui_shortcut_route: "ऊपरी स्तर के पृष्ठों के बीच स्विच करें" +ui_page_annotation: "पृष्ठ जानकारी" +ui_backlinks: "बैकलिंक" +ui_backlinks_more: "{{ . }} अधिक दिखाएँ" +ui_field_required: "आवश्यक" +ui_action_unavailable: "उपलब्ध नहीं" +ui_image_zoom_dialog: "छवि प्रीव्यू" +ui_image_zoom_open: "छवि प्रीव्यू खोलें" +ui_image_zoom_close: "छवि प्रीव्यू बंद करें" +ui_diagram_expand: "चित्र बड़ा करें" +ui_diagram_zoom_dialog: "चित्र प्रीव्यू" +ui_diagram_zoom_close: "चित्र प्रीव्यू बंद करें" +ui_diagram_zoom_in: "जूम इन" +ui_diagram_zoom_out: "जूम आउट" +ui_diagram_zoom_reset: "दृश्य रीसेट करें" +ui_diagram_error: "चित्र को प्रदर्शित नहीं किया जा सका" +ui_print_page: "इस पृष्ठ को प्रिंट करें" +ui_sidebar_expand_section: "खंड विस्तारित करें" +ui_sidebar_collapse_section: "खंड संक्षिप्त करें" +ui_asciinema_timer: "प्लेबैक समय" +ui_openapi_spec: "OpenAPI विनिर्देश" +ui_release_view: "रिलीज देखें" +ui_release_source: "स्रोत" +ui_release_released: "रिलीज किया गया" +ui_assets_file: "फ़ाइल" +ui_assets_checksum: "चेकसम" +ui_assets_copy: "चेकसम कॉपी करें" +ui_assets_copied: "कॉपी किया गया" +ui_assets_copy_all: "सभी चेकसम कॉपी करें" +ui_assets_download: "फ़ाइल डाउनलोड करें" +ui_download_channels: "डाउनलोड चैनल" +ui_download_unpublished: "रिलीज़ लंबित" # Used in sentences such as "All Tags" -ui_all: देखना सभी टैग - +ui_all: "सभी" +ui_list_separator: ", " +ui_blog_index_toggle: "लेआउट बदलें" # Footer text -footer_all_rights_reserved: सर्वाधिकार सुरक्षित - +footer_all_rights_reserved: "सर्वाधिकार सुरक्षित" +ui_footer_collapse: "फुटर लिंक छिपाएँ" +ui_footer_expand: "फुटर लिंक दिखाएँ" # Post (blog, article, etc.) -post_last_mod: अंतिम बार संशोधित -post_edit_this: इस पृष्ठ को संपादित करें -post_view_markdown: Markdown देखें -post_create_child_page: चाइल्ड पृष्ठ बनाएं -post_create_issue: समस्या की सुचना दें -post_create_project_issue: परियोजना इशू बनाएं -post_reading_time: लघु अध्ययन -post_less_than_a_minute_read: एक मिनट से कम - +post_last_mod: "अंतिम बार संशोधित" +post_upstream: "{{ .work }}, {{ .copyright }}, {{ .license }} के अंतर्गत। {{ .notice }} देखें।" +post_upstream_adapted: "{{ .work }} से रूपांतरित, {{ .copyright }}, {{ .license }} के अंतर्गत। {{ .notice }} और {{ .history }} देखें।" +post_upstream_adapted_plain: "{{ .work }} से रूपांतरित, {{ .copyright }}, {{ .license }} के अंतर्गत। {{ .notice }} देखें।" +post_upstream_notice: "उल्लेख" +post_upstream_history: "परिवर्तन इतिहास" +post_translated: "यह पृष्ठ अनुवाद है; {{ .original }} प्रामाणिक है।" +post_translated_original: "मूल" +post_edit_this: "इस पृष्ठ को संपादित करें" +post_view_markdown: "Markdown देखें" +post_create_child_page: "उपपृष्ठ बनाएँ" +post_create_issue: "दस्तावेज़ीकरण संबंधी इश्यू बनाएँ" +post_create_project_issue: "परियोजना संबंधी इश्यू बनाएँ" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "{{ .Authors }} द्वारा · {{ .Section }} में" +post_meta_in: "{{ .Section }} में" +post_reading_time: "मिनट पढ़ने का समय" +post_less_than_a_minute_read: "एक मिनट से कम" +post_word_count: "{{ .Count }} शब्द" +post_reading_minutes: "{{ .Minutes }} मिनट" +post_read_original: "अधिक पढ़ें" # Print support -print_printable_section: यह इस खंड का बहु-पृष्ठ प्रिंट योग्य दृश्य है। -print_click_to_print: प्रिंट करने के लिए यहां क्लिक करें -print_show_regular: इस पृष्ठ के सामान्य दृश्य पर लौटें -print_entire_section: संपूर्ण अनुभाग प्रिंट करें - -# Replace these values with reviewed translations when available. -callout_caution: Caution -callout_important: Important -callout_note: Note -callout_tip: Tip -callout_warning: Warning - -# UI strings. Buttons and similar. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -feedback_question: Was this page helpful? -feedback_positive: Yes -feedback_negative: No - +print_printable_section: "यह इस अनुभाग का बहु-पृष्ठ मुद्रण दृश्य है।" +print_click_to_print: "प्रिंट करने के लिए यहां क्लिक करें" +print_show_regular: "इस पृष्ठ के सामान्य दृश्य पर लौटें" +print_entire_section: "पूरे खंड को प्रिंट करें" +# Feedback +feedback_question: "क्या यह पृष्ठ सहायक था?" +feedback_positive: "हाँ" +feedback_negative: "नहीं" +feedback_thanks: "धन्यवाद—आपकी प्रतिक्रिया इस पृष्ठ को बेहतर बनाने में हमारी मदद करती है।" +feedback_reason_prompt: "क्या बाधा बनी? (वैकल्पिक)" +feedback_reason_missing: "जानकारी की कमी" +feedback_reason_outdated: "गलत या पुराना" +feedback_reason_failed: "चरण सफल नहीं हुए" +feedback_reason_unclear: "समझने में कठिनाई" +feedback_details: "टिप्पणियों में विवरण जोड़ें" +feedback_change: "प्रतिक्रिया बदलें" # Table of contents -toc_on_this_page: Content - +toc_on_this_page: "विषय-सूची" # Error pages -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +error_404_title: "पृष्ठ नहीं मिला" +error_404_body: "क्षमा करें, यह पृष्ठ उपलब्ध नहीं है। होम पृष्ठ से फिर से शुरू करने का प्रयास करें।" +error_404_home: "होम पृष्ठ पर जाएँ" +# Version banner +version_banner_archived: "दस्तावेज़ीकरण का संस्करण {{ .Version }} अब सक्रिय रूप से बनाए नहीं रखा जा रहा है। आप जिस साइट को देख रहे हैं, वह एक संग्रहीत प्रति है।" +version_banner_latest: "अद्यतन दस्तावेज़ीकरण के लिए, {{ .Link }} देखें।" +version_banner_latest_link: "नवीनतम संस्करण" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "टिप्पणियाँ लोड करने के लिए JavaScript आवश्यक है।" +comments_noscript_link: "GitHub पर चर्चा देखें।" +# LLM page actions +ui_open_in_prompt_label: "इस पृष्ठ के बारे में पूछें" +ui_view_history: "संपादन इतिहास देखें" +ui_table_scroll: "स्क्रॉल करने योग्य तालिका" +ui_filetree_divider: "फ़ाइल ट्री के पास टिप्पणी कॉलम का आकार बदलें" +book_figure: "चित्र" +book_table: "तालिका" +book_equation: "समीकरण" +book_example: "उदाहरण" +book_toc: "पुस्तक की विषय-सूची" +book_draft: "मसौदा" +book_draft_notice: "इस अध्याय को अभी भी संशोधित किया जा रहा है।" +contributors_count: "योगदानकर्ता" +# Article series +ui_series_title: "श्रृंखला" +ui_series_part: "{{ .Total }} में से {{ .Part }} भाग" +# Markdown output +markdown_llms_index: "LLMS सूची:" +markdown_section_pages: "खंड पृष्ठ:" +markdown_backlinks: "बैकलिंक:" diff --git a/i18n/hu.yaml b/i18n/hu.yaml index b2b3d6d..f159e87 100644 --- a/i18n/hu.yaml +++ b/i18n/hu.yaml @@ -1,294 +1,207 @@ +# Alert labels +callout_caution: "Vigyázat" +callout_important: "Fontos" +callout_note: "Megjegyzés" +callout_tip: "Tanács" +callout_warning: "Figyelmeztetés" +callout_success: "Siker" +callout_danger: "Veszély" +callout_question: "Kérdés" +callout_example: "Példa" +callout_quote: "Idézet" +callout_details: "Részletek" # UI strings. Buttons and similar. -ui_pager_prev: Előző -ui_pager_next: Következő -ui_search: Keresés ezen az oldalon… - +ui_pager_prev: "Előző" +ui_pager_next: "Következő" +ui_search: "Keresés…" +ui_search_empty: "Nem található eredmény" +ui_search_loading: "Keresési index betöltése…" +ui_search_results: "{count} találat található" +ui_search_nav: "Navigálás" +ui_search_open: "Megnyitás" +ui_search_close: "Bezárás" +ui_palette_actions: "Műveletek" +ui_palette_page_actions: "Oldal műveletek" +ui_palette_preferences: "Beállítások" +ui_palette_commands: "Parancsok" +ui_palette_quick_links: "Gyorslink" +ui_palette_no_commands: "Nincs megfelelő parancs" +ui_palette_choose: "Válasszon egy lehetőséget" +ui_palette_action_failed: "A művelet nem hajtható végre" +ui_palette_pages: "Oldalak" +ui_palette_index_unavailable: "Az oldalindex nem érhető el; a műveletek továbbra is működnek" +ui_sidebar_nav: "Szakasz navigáció" +ui_heading_self_link: "Hivatkozás erre a fejlécre" +ui_field_self_link: "Hivatkozás erre a mezőre" +ui_preview_source: "Markdown" +ui_preview_rendered: "Megjelenített" +ui_main_nav: "Fő navigáció" +ui_home: "Kezdőlap" +ui_sidebar_expand: "Oldalsáv kibontása" +ui_sidebar_collapse: "Oldalsáv összecsukása" +ui_drawer_open: "Navigáció megnyitása" +ui_drawer_close: "Navigáció bezárása" +ui_root_menu_label: "Szakasz választása" +ui_tags_title: "Címkék" +ui_tag_title: "Címke" +ui_categories_title: "Kategóriák" +ui_category_title: "Kategória" +ui_modules_title: "Modulok" +ui_module_title: "Modul" +ui_authors_title: "Szerzők" +ui_author_title: "Szerző" +ui_theme_toggle: "Színtéma váltása" +ui_theme_auto: "Rendszer" +ui_theme_light: "Világos" +ui_theme_dark: "Sötét" +ui_toc_hide: "Tartalomjegyzék elrejtése" +ui_toc_show: "Tartalomjegyzék megjelenítése" +ui_language_select: "Nyelv választása" +ui_language_switch: "Nyelv váltása" +ui_skip_to_content: "Ugrás a tartalomra" +ui_page_actions: "Műveletek" +ui_open_in_chatgpt: "Megnyitás ChatGPT-ben" +ui_open_in_claude: "Megnyitás Claude-ban" +ui_open_in_prompt: "%s elolvasása, hogy kérdéseket tehessek fel róla." +ui_copy_markdown: "Markdown másolása" +ui_copy_success: "Markdown másolva" +ui_copy_error: "Nem sikerült másolni a Markdownot" +ui_share: "Megosztás" +ui_share_email: "E-mail" +ui_copy_link: "Hivatkozás másolása" +ui_copy_link_success: "Hivatkozás másolva" +ui_copy_link_error: "Nem sikerült másolni a hivatkozást" +ui_code_copy_label: "Kód másolása" +ui_code_copied: "Másolva" +ui_code_copy_error: "A másolás sikertelen" +ui_code_show_all: "Összes {{ .Count }} sor megjelenítése" +ui_code_collapse: "Kód összecsukása" +ui_tabs_label: "Lapok" +ui_pricing_featured: "Ajánlott" +ui_pricing_included: "Beleértve" +ui_pricing_excluded: "Nem tartalmazza" +ui_marquee_pause: "Mozgás szüneteltetése" +ui_kbd_with: "együttesen" +ui_keyboard_shortcuts: "Gyorsbillentyűk" +ui_shortcut_tree_move: "Navigálás az oldalsávban" +ui_shortcut_tree_toggle: "Szakasz kibontása vagy összecsukása" +ui_shortcut_tree_open: "Fókuszban lévő oldal megnyitása" +ui_shortcut_heading_move: "Előző vagy következő fejléc" +ui_shortcut_page_move: "Előző vagy következő oldal" +ui_shortcut_search: "Keresés" +ui_shortcut_commands: "Parancs paletta" +ui_shortcut_reading_mode: "Olvasó mód" +ui_shortcut_language: "Nyelv váltása" +ui_shortcut_theme: "Téma váltása" +ui_shortcut_route: "Váltás a legfelső szintű oldalak között" +ui_page_annotation: "Oldal információ" +ui_backlinks: "Visszahivatkozások" +ui_backlinks_more: "{{ . }} további megjelenítése" +ui_field_required: "kötelező" +ui_action_unavailable: "elérhetetlen" +ui_image_zoom_dialog: "Kép előnézete" +ui_image_zoom_open: "Kép előnézet megnyitása" +ui_image_zoom_close: "Kép előnézet bezárása" +ui_diagram_expand: "Diagram nagyítása" +ui_diagram_zoom_dialog: "Diagram előnézete" +ui_diagram_zoom_close: "Diagram előnézet bezárása" +ui_diagram_zoom_in: "Nagyítás" +ui_diagram_zoom_out: "Kicsinyítés" +ui_diagram_zoom_reset: "Nézet visszaállítása" +ui_diagram_error: "A diagram nem jeleníthető meg" +ui_print_page: "Oldal nyomtatása" +ui_sidebar_expand_section: "Szakasz kibontása" +ui_sidebar_collapse_section: "Szakasz összecsukása" +ui_asciinema_timer: "Lejátszási idő" +ui_openapi_spec: "OpenAPI specifikáció" +ui_release_view: "Kiadás megtekintése" +ui_release_source: "Forrás" +ui_release_released: "Kiadva" +ui_assets_file: "Fájl" +ui_assets_checksum: "Ellenőrzőösszeg" +ui_assets_copy: "Ellenőrzőösszeg másolása" +ui_assets_copied: "Másolva" +ui_assets_copy_all: "Összes ellenőrzőösszeg másolása" +ui_assets_download: "Fájl letöltése" +ui_download_channels: "Letöltési csatornák" +ui_download_unpublished: "Kiadás előtt" +# Used in sentences such as "All Tags" +ui_all: "összes" +ui_list_separator: ", " +ui_blog_index_toggle: "Elrendezés váltása" # Footer text -footer_all_rights_reserved: Minden jog fenntartva - +footer_all_rights_reserved: "Minden jog fenntartva" +ui_footer_collapse: "Lábléc hivatkozások elrejtése" +ui_footer_expand: "Lábléc hivatkozások megjelenítése" # Post (blog, article, etc.) -post_last_mod: Utolsó módosítás -post_edit_this: Oldal szerkesztése -post_create_child_page: Aloldal létrehozása -post_view_markdown: Markdown megtekintése -post_create_issue: Dokumentáció issue létrehozása -post_create_project_issue: Projekt issue létrehozása -# so I left it as is -post_reading_time: minute read -post_less_than_a_minute_read: less than a minute - +post_last_mod: "Utolsó módosítás" +post_upstream: "{{ .work }}, {{ .copyright }}, {{ .license }} licenc alatt. Lásd: {{ .notice }}." +post_upstream_adapted: "Átdolgozva ebből: {{ .work }}; {{ .copyright }}, {{ .license }} licenc alatt. Lásd: {{ .notice }} és {{ .history }}." +post_upstream_adapted_plain: "Átdolgozva ebből: {{ .work }}; {{ .copyright }}, {{ .license }} licenc alatt. Lásd: {{ .notice }}." +post_upstream_notice: "hivatkozás" +post_upstream_history: "változások története" +post_translated: "Ez az oldal fordítás; az {{ .original }} az irányadó." +post_translated_original: "eredeti" +post_edit_this: "Oldal szerkesztése" +post_view_markdown: "Markdown megtekintése" +post_create_child_page: "Aloldal létrehozása" +post_create_issue: "Dokumentációs hibajegy létrehozása" +post_create_project_issue: "Projekt-hibajegy létrehozása" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "Szerző: {{ .Authors }} · Szakasz: {{ .Section }}" +post_meta_in: "Szakasz: {{ .Section }}" +post_reading_time: "perc olvasási idő" +post_less_than_a_minute_read: "kevesebb, mint egy perc" +post_word_count: "{{ .Count }} szó" +post_reading_minutes: "{{ .Minutes }} perc" +post_read_original: "További olvasás" # Print support -print_printable_section: This is the multi-page printable view of this section. -print_click_to_print: Click here to print -print_show_regular: Return to the regular view of this page -print_entire_section: Print entire section - -# Replace these values with reviewed translations when available. -callout_caution: Caution -callout_important: Important -callout_note: Note -callout_tip: Tip -callout_warning: Warning - -# UI strings. Buttons and similar. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -ui_all: all - -# Footer text -feedback_question: Was this page helpful? -feedback_positive: Yes -feedback_negative: No - +print_printable_section: "Ez a szakasz többoldalas nyomtatható verziója." +print_click_to_print: "Kattintson ide a nyomtatáshoz" +print_show_regular: "Visszatérés a szokásos nézethez" +print_entire_section: "Teljes szakasz nyomtatása" +# Feedback +feedback_question: "Hasznos volt ez az oldal?" +feedback_positive: "Igen" +feedback_negative: "Nem" +feedback_thanks: "Köszönjük—visszajelzése segít javítani ezt az oldalt." +feedback_reason_prompt: "Mi akadályozta? (nem kötelező)" +feedback_reason_missing: "Hiányzó információ" +feedback_reason_outdated: "Hibás vagy elavult" +feedback_reason_failed: "A lépések nem működtek" +feedback_reason_unclear: "Nehezen érthető" +feedback_details: "Részletek a megjegyzésekben" +feedback_change: "Válasz módosítása" # Table of contents -toc_on_this_page: Content - +toc_on_this_page: "Tartalom" # Error pages -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +error_404_title: "Oldal nem található" +error_404_body: "Sajnáljuk, ez az oldal nem létezik. Próbálja újra a kezdőlapról." +error_404_home: "Ugrás a kezdőlapra" +# Version banner +version_banner_archived: "A dokumentáció {{ .Version }} verzióját már nem tartják karban aktívan. A jelenleg megtekintett webhely archivált másolat." +version_banner_latest: "Naprakész dokumentáció: {{ .Link }}." +version_banner_latest_link: "legfrissebb verzió" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "A megjegyzések betöltéséhez JavaScript szükséges." +comments_noscript_link: "Megtekintés a GitHub-on." +# LLM page actions +ui_open_in_prompt_label: "Kérdezzen erről az oldalról" +ui_view_history: "Szerkesztési előzmények megtekintése" +ui_table_scroll: "Görgethető táblázat" +ui_filetree_divider: "A fájlfa melletti megjegyzésoszlop átméretezése" +book_figure: "Ábra" +book_table: "Táblázat" +book_equation: "Egyenlet" +book_example: "Példa" +book_toc: "A könyv tartalomjegyzéke" +book_draft: "Piszkozat" +book_draft_notice: "Ez a fejezet továbbra is módosítás alatt van." +contributors_count: "közreműködő" +# Article series +ui_series_title: "Sorozat" +ui_series_part: "{{ .Part }}. rész / {{ .Total }}" +# Markdown output +markdown_llms_index: "LLMS-index:" +markdown_section_pages: "Szakasz oldalak:" +markdown_backlinks: "Visszahivatkozások:" diff --git a/i18n/it.yaml b/i18n/it.yaml index 0c9b65a..5826918 100644 --- a/i18n/it.yaml +++ b/i18n/it.yaml @@ -1,288 +1,207 @@ +# Alert labels +callout_caution: "Attenzione" +callout_important: "Importante" +callout_note: "Nota" +callout_tip: "Suggerimento" +callout_warning: "Avviso" +callout_success: "Successo" +callout_danger: "Pericolo" +callout_question: "Domanda" +callout_example: "Esempio" +callout_quote: "Citazione" +callout_details: "Dettagli" # UI strings. Buttons and similar. -ui_pager_prev: Precedente -ui_pager_next: Successivo -ui_search: Cerca nel sito… - +ui_pager_prev: "Precedente" +ui_pager_next: "Successivo" +ui_search: "Cerca…" +ui_search_empty: "Nessun risultato trovato" +ui_search_loading: "Caricamento indice di ricerca…" +ui_search_results: "{count} risultati trovati" +ui_search_nav: "Naviga" +ui_search_open: "Apri" +ui_search_close: "Chiudi" +ui_palette_actions: "Azioni" +ui_palette_page_actions: "Azioni pagina" +ui_palette_preferences: "Preferenze" +ui_palette_commands: "Comandi" +ui_palette_quick_links: "Collegamenti rapidi" +ui_palette_no_commands: "Nessun comando corrispondente" +ui_palette_choose: "Scegli un'opzione" +ui_palette_action_failed: "L'azione non è riuscita" +ui_palette_pages: "Pagine" +ui_palette_index_unavailable: "Indice pagina non disponibile; le azioni sono comunque disponibili" +ui_sidebar_nav: "Navigazione sezione" +ui_heading_self_link: "Collegamento a questo titolo" +ui_field_self_link: "Collegamento a questo campo" +ui_preview_source: "Markdown" +ui_preview_rendered: "Visualizzato" +ui_main_nav: "Navigazione principale" +ui_home: "Home" +ui_sidebar_expand: "Espandi barra laterale" +ui_sidebar_collapse: "Comprimi barra laterale" +ui_drawer_open: "Apri navigazione" +ui_drawer_close: "Chiudi navigazione" +ui_root_menu_label: "Scegli sezione" +ui_tags_title: "Tag" +ui_tag_title: "Tag" +ui_categories_title: "Categorie" +ui_category_title: "Categoria" +ui_modules_title: "Moduli" +ui_module_title: "Modulo" +ui_authors_title: "Autori" +ui_author_title: "Autore" +ui_theme_toggle: "Cambia tema colore" +ui_theme_auto: "Sistema" +ui_theme_light: "Chiaro" +ui_theme_dark: "Scuro" +ui_toc_hide: "Nascondi sommario" +ui_toc_show: "Mostra sommario" +ui_language_select: "Scegli lingua" +ui_language_switch: "Cambia lingua" +ui_skip_to_content: "Vai al contenuto" +ui_page_actions: "Azioni" +ui_open_in_chatgpt: "Apri in ChatGPT" +ui_open_in_claude: "Apri in Claude" +ui_open_in_prompt: "Leggi %s così potrò farti domande al riguardo." +ui_copy_markdown: "Copia Markdown" +ui_copy_success: "Markdown copiato" +ui_copy_error: "Impossibile copiare il Markdown" +ui_share: "Condividi" +ui_share_email: "Email" +ui_copy_link: "Copia link" +ui_copy_link_success: "Link copiato" +ui_copy_link_error: "Impossibile copiare il link" +ui_code_copy_label: "Copia codice" +ui_code_copied: "Copiato" +ui_code_copy_error: "Copia fallita" +ui_code_show_all: "Mostra tutti i {{ .Count }} righe" +ui_code_collapse: "Comprimi codice" +ui_tabs_label: "Schede" +ui_pricing_featured: "Consigliato" +ui_pricing_included: "Incluso" +ui_pricing_excluded: "Non incluso" +ui_marquee_pause: "Pausa movimento" +ui_kbd_with: "con" +ui_keyboard_shortcuts: "Scorciatoie da tastiera" +ui_shortcut_tree_move: "Sposta nella barra laterale" +ui_shortcut_tree_toggle: "Comprimi o espandi sezione" +ui_shortcut_tree_open: "Apri la pagina selezionata" +ui_shortcut_heading_move: "Titolo precedente o successivo" +ui_shortcut_page_move: "Pagina precedente o successiva" +ui_shortcut_search: "Cerca" +ui_shortcut_commands: "Tastiera comandi" +ui_shortcut_reading_mode: "Modalità lettura" +ui_shortcut_language: "Cambia lingua" +ui_shortcut_theme: "Cambia tema" +ui_shortcut_route: "Passa tra le pagine di primo livello" +ui_page_annotation: "Informazioni pagina" +ui_backlinks: "Collegamenti inversi" +ui_backlinks_more: "Mostra {{ . }} in più" +ui_field_required: "obbligatorio" +ui_action_unavailable: "non disponibile" +ui_image_zoom_dialog: "Anteprima immagine" +ui_image_zoom_open: "Apri anteprima immagine" +ui_image_zoom_close: "Chiudi anteprima immagine" +ui_diagram_expand: "Aumenta dimensione diagramma" +ui_diagram_zoom_dialog: "Anteprima diagramma" +ui_diagram_zoom_close: "Chiudi anteprima diagramma" +ui_diagram_zoom_in: "Zoom avanti" +ui_diagram_zoom_out: "Zoom indietro" +ui_diagram_zoom_reset: "Ripristina visualizzazione" +ui_diagram_error: "Impossibile visualizzare il diagramma" +ui_print_page: "Stampa questa pagina" +ui_sidebar_expand_section: "Espandi sezione" +ui_sidebar_collapse_section: "Comprimi sezione" +ui_asciinema_timer: "Tempo riproduzione" +ui_openapi_spec: "Specifica OpenAPI" +ui_release_view: "Visualizza rilascio" +ui_release_source: "Origine" +ui_release_released: "Rilasciato" +ui_assets_file: "File" +ui_assets_checksum: "Somma di controllo" +ui_assets_copy: "Copia somma di controllo" +ui_assets_copied: "Copiato" +ui_assets_copy_all: "Copia tutte le somme di controllo" +ui_assets_download: "Scarica file" +ui_download_channels: "Canali di download" +ui_download_unpublished: "In attesa di rilascio" +# Used in sentences such as "All Tags" +ui_all: "tutti" +ui_list_separator: ", " +ui_blog_index_toggle: "Cambia layout" # Footer text -footer_all_rights_reserved: Tutti i diritti riservati - +footer_all_rights_reserved: "Tutti i diritti riservati" +ui_footer_collapse: "Nascondi collegamenti piè di pagina" +ui_footer_expand: "Mostra collegamenti piè di pagina" # Post (blog, article, etc.) -post_last_mod: Ultima modifica -post_edit_this: Modifica -post_create_child_page: Create child page -post_view_markdown: Visualizza Markdown -post_create_issue: Crea issue di documentazione -post_create_project_issue: Crea issue di progetto -post_reading_time: minute read -post_less_than_a_minute_read: less than a minute -post_word_count: '{{ .Count }} parole' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Leggi l'originale - +post_last_mod: "Ultima modifica" +post_upstream: "{{ .work }}, {{ .copyright }}, con licenza {{ .license }}. Vedi {{ .notice }}." +post_upstream_adapted: "Adattato da {{ .work }}, {{ .copyright }}, con licenza {{ .license }}. Vedi {{ .notice }} e {{ .history }}." +post_upstream_adapted_plain: "Adattato da {{ .work }}, {{ .copyright }}, con licenza {{ .license }}. Vedi {{ .notice }}." +post_upstream_notice: "attribuzione" +post_upstream_history: "cronologia modifiche" +post_translated: "Questa pagina è una traduzione; fa fede l’{{ .original }}." +post_translated_original: "originale" +post_edit_this: "Modifica" +post_view_markdown: "Visualizza Markdown" +post_create_child_page: "Crea sottopagina" +post_create_issue: "Crea una segnalazione sulla documentazione" +post_create_project_issue: "Crea una segnalazione sul progetto" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "Di {{ .Authors }} · In {{ .Section }}" +post_meta_in: "In {{ .Section }}" +post_reading_time: "minuti di lettura" +post_less_than_a_minute_read: "meno di un minuto" +post_word_count: "{{ .Count }} parole" +post_reading_minutes: "{{ .Minutes }} min" +post_read_original: "Leggi l'originale" # Print support -print_printable_section: This is the multi-page printable view of this section. -print_click_to_print: Click here to print -print_show_regular: Return to the regular view of this page -print_entire_section: Print entire section - -# Replace these values with reviewed translations when available. -callout_caution: Caution -callout_important: Important -callout_note: Note -callout_tip: Tip -callout_warning: Warning - -# UI strings. Buttons and similar. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -ui_all: all - -# Footer text -feedback_question: Was this page helpful? -feedback_positive: Yes -feedback_negative: No - +print_printable_section: "Questa è la visualizzazione stampabile multi-pagina di questa sezione." +print_click_to_print: "Clicca qui per stampare" +print_show_regular: "Torna alla visualizzazione normale di questa pagina" +print_entire_section: "Stampa l'intera sezione" +# Feedback +feedback_question: "Questa pagina è stata utile?" +feedback_positive: "Sì" +feedback_negative: "No" +feedback_thanks: "Grazie—il tuo riscontro aiuta a migliorare questa pagina." +feedback_reason_prompt: "Cosa ti ha ostacolato? (opzionale)" +feedback_reason_missing: "Informazioni mancanti" +feedback_reason_outdated: "Errata o obsoleta" +feedback_reason_failed: "I passaggi non hanno funzionato" +feedback_reason_unclear: "Difficile da capire" +feedback_details: "Aggiungi dettagli nei commenti" +feedback_change: "Modifica risposta" # Table of contents -toc_on_this_page: Content - +toc_on_this_page: "Contenuto" # Error pages -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +error_404_title: "Pagina non trovata" +error_404_body: "Spiacenti, questa pagina non esiste. Prova a ricominciare dalla pagina iniziale." +error_404_home: "Vai alla pagina iniziale" +# Version banner +version_banner_archived: "La versione {{ .Version }} della documentazione non è più attivamente mantenuta. Il sito che stai visualizzando è una copia archiviata." +version_banner_latest: "Per la documentazione aggiornata, consulta la {{ .Link }}." +version_banner_latest_link: "versione più recente" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "È richiesto JavaScript per caricare i commenti." +comments_noscript_link: "Visualizza le discussioni su GitHub." +# LLM page actions +ui_open_in_prompt_label: "Chiedi informazioni su questa pagina" +ui_view_history: "Visualizza cronologia modifiche" +ui_table_scroll: "Tabella scorrevole" +ui_filetree_divider: "Ridimensiona la colonna dei commenti accanto all’albero dei file" +book_figure: "Figura" +book_table: "Tabella" +book_equation: "Equazione" +book_example: "Esempio" +book_toc: "Sommario del libro" +book_draft: "Bozza" +book_draft_notice: "Questo capitolo è ancora in revisione." +contributors_count: "contributori" +# Article series +ui_series_title: "Serie" +ui_series_part: "Parte {{ .Part }} di {{ .Total }}" +# Markdown output +markdown_llms_index: "Indice LLMS:" +markdown_section_pages: "Pagine sezione:" +markdown_backlinks: "Collegamenti inversi:" diff --git a/i18n/ja.yaml b/i18n/ja.yaml index 4257bf6..1c8f377 100644 --- a/i18n/ja.yaml +++ b/i18n/ja.yaml @@ -1,288 +1,207 @@ # Alert labels -callout_caution: 注意 -callout_important: 重要 -callout_note: 注記 -callout_tip: ヒント -callout_warning: 警告 - +callout_caution: "注意" +callout_important: "重要" +callout_note: "注記" +callout_tip: "ヒント" +callout_warning: "警告" +callout_success: "成功" +callout_danger: "危険" +callout_question: "質問" +callout_example: "例" +callout_quote: "引用" +callout_details: "詳細" # UI strings. Buttons and similar. -ui_pager_prev: 前へ -ui_pager_next: 次へ -ui_search: サイトを検索... - +ui_pager_prev: "前へ" +ui_pager_next: "次へ" +ui_search: "検索…" +ui_search_empty: "該当する結果がありません" +ui_search_loading: "検索インデックスを読み込み中…" +ui_search_results: "{count} 件の結果が見つかりました" +ui_search_nav: "移動" +ui_search_open: "開く" +ui_search_close: "閉じる" +ui_palette_actions: "操作" +ui_palette_page_actions: "ページ操作" +ui_palette_preferences: "設定" +ui_palette_commands: "コマンド" +ui_palette_quick_links: "クイックリンク" +ui_palette_no_commands: "一致するコマンドがありません" +ui_palette_choose: "オプションを選択" +ui_palette_action_failed: "操作を完了できませんでした" +ui_palette_pages: "ページ" +ui_palette_index_unavailable: "ページインデックスが利用できませんが、操作は可能です" +ui_sidebar_nav: "セクションナビゲーション" +ui_heading_self_link: "この見出しへのリンク" +ui_field_self_link: "このフィールドへのリンク" +ui_preview_source: "Markdown" +ui_preview_rendered: "レンダリング済み" +ui_main_nav: "メインナビゲーション" +ui_home: "ホーム" +ui_sidebar_expand: "サイドバーを展開" +ui_sidebar_collapse: "サイドバーを折りたたみ" +ui_drawer_open: "ナビゲーションを開く" +ui_drawer_close: "ナビゲーションを閉じる" +ui_root_menu_label: "セクションを選択" +ui_tags_title: "タグ" +ui_tag_title: "タグ" +ui_categories_title: "カテゴリ" +ui_category_title: "カテゴリ" +ui_modules_title: "モジュール" +ui_module_title: "モジュール" +ui_authors_title: "著者" +ui_author_title: "著者" +ui_theme_toggle: "色テーマを切り替え" +ui_theme_auto: "システム" +ui_theme_light: "ライト" +ui_theme_dark: "ダーク" +ui_toc_hide: "目次を非表示" +ui_toc_show: "目次を表示" +ui_language_select: "言語を選択" +ui_language_switch: "言語を切り替え" +ui_skip_to_content: "本文へスキップ" +ui_page_actions: "操作" +ui_open_in_chatgpt: "ChatGPTで開く" +ui_open_in_claude: "Claudeで開く" +ui_open_in_prompt: "%s を読んで、内容について質問できるようにしてください。" +ui_copy_markdown: "Markdownをコピー" +ui_copy_success: "Markdownをコピーしました" +ui_copy_error: "Markdownのコピーに失敗しました" +ui_share: "共有" +ui_share_email: "メール" +ui_copy_link: "リンクをコピー" +ui_copy_link_success: "リンクをコピーしました" +ui_copy_link_error: "リンクのコピーに失敗しました" +ui_code_copy_label: "コードをコピー" +ui_code_copied: "コピー済み" +ui_code_copy_error: "コピーに失敗しました" +ui_code_show_all: "{{ .Count }} 行すべてを表示" +ui_code_collapse: "コードを折りたたみ" +ui_tabs_label: "タブ" +ui_pricing_featured: "おすすめ" +ui_pricing_included: "含まれる" +ui_pricing_excluded: "含まれない" +ui_marquee_pause: "動きを一時停止" +ui_kbd_with: "と" +ui_keyboard_shortcuts: "キーボードショートカット" +ui_shortcut_tree_move: "サイドバーを移動" +ui_shortcut_tree_toggle: "セクションの折りたたみ/展開" +ui_shortcut_tree_open: "フォーカス中のページを開く" +ui_shortcut_heading_move: "前の見出しまたは次の見出しへ" +ui_shortcut_page_move: "前のページまたは次のページへ" +ui_shortcut_search: "検索" +ui_shortcut_commands: "コマンドパレット" +ui_shortcut_reading_mode: "リーディングモード" +ui_shortcut_language: "言語を切り替え" +ui_shortcut_theme: "テーマを切り替え" +ui_shortcut_route: "トップレベルページを切り替え" +ui_page_annotation: "ページ情報" +ui_backlinks: "逆リンク" +ui_backlinks_more: "{{ . }} 件さらに表示" +ui_field_required: "必須" +ui_action_unavailable: "利用不可" +ui_image_zoom_dialog: "画像プレビュー" +ui_image_zoom_open: "画像プレビューを開く" +ui_image_zoom_close: "画像プレビューを閉じる" +ui_diagram_expand: "図を拡大" +ui_diagram_zoom_dialog: "図プレビュー" +ui_diagram_zoom_close: "図プレビューを閉じる" +ui_diagram_zoom_in: "拡大" +ui_diagram_zoom_out: "縮小" +ui_diagram_zoom_reset: "表示をリセット" +ui_diagram_error: "図のレンダリングに失敗しました" +ui_print_page: "このページを印刷" +ui_sidebar_expand_section: "セクションを展開" +ui_sidebar_collapse_section: "セクションを折りたたみ" +ui_asciinema_timer: "再生時間" +ui_openapi_spec: "OpenAPI仕様" +ui_release_view: "リリースを表示" +ui_release_source: "ソース" +ui_release_released: "リリース済み" +ui_assets_file: "ファイル" +ui_assets_checksum: "チェックサム" +ui_assets_copy: "チェックサムをコピー" +ui_assets_copied: "コピー済み" +ui_assets_copy_all: "すべてのチェックサムをコピー" +ui_assets_download: "ファイルをダウンロード" +ui_download_channels: "ダウンロードチャンネル" +ui_download_unpublished: "リリース待ち" +# Used in sentences such as "All Tags" +ui_all: "すべて" +ui_list_separator: "、 " +ui_blog_index_toggle: "レイアウトを切り替え" # Footer text -footer_all_rights_reserved: All Rights Reserved - +footer_all_rights_reserved: "すべての権利を保有します" +ui_footer_collapse: "フッターのリンクを非表示" +ui_footer_expand: "フッターのリンクを表示" # Post (blog, article, etc.) -post_last_mod: 最終更新 -post_edit_this: ページの編集 -post_view_markdown: Markdownを表示 -post_create_child_page: 子ページを作成 -post_create_issue: ドキュメントのissueを作成 -post_create_project_issue: プロジェクトのissueを作成 -post_reading_time: minute read -post_less_than_a_minute_read: less than a minute -post_word_count: '{{ .Count }} 文字' -post_reading_minutes: '{{ .Minutes }} 分' -post_read_original: 原文を読む - +post_last_mod: "最終更新" +post_upstream: "{{ .work }}({{ .copyright }})は {{ .license }} の下で提供されています。{{ .notice }} を参照してください。" +post_upstream_adapted: "{{ .work }}({{ .copyright }})を改変したもので、{{ .license }} の下で提供されています。{{ .notice }} と {{ .history }} を参照してください。" +post_upstream_adapted_plain: "{{ .work }}({{ .copyright }})を改変したもので、{{ .license }} の下で提供されています。{{ .notice }} を参照してください。" +post_upstream_notice: "出典" +post_upstream_history: "変更履歴" +post_translated: "このページは翻訳です。内容が異なる場合は {{ .original }} が優先されます。" +post_translated_original: "オリジナル" +post_edit_this: "ページの編集" +post_view_markdown: "Markdownを表示" +post_create_child_page: "子ページを作成" +post_create_issue: "ドキュメントに関する Issue を作成" +post_create_project_issue: "プロジェクトに関する Issue を作成" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "著者: {{ .Authors }} · セクション: {{ .Section }}" +post_meta_in: "セクション: {{ .Section }}" +post_reading_time: "分で読めます" +post_less_than_a_minute_read: "1分未満" +post_word_count: "{{ .Count }} 文字" +post_reading_minutes: "{{ .Minutes }} 分" +post_read_original: "原文を読む" # Print support -print_printable_section: これは、このセクションの複数ページの印刷可能なビューです。 -print_click_to_print: 印刷するには、ここをクリックしてください -print_show_regular: このページの通常のビューに戻る -print_entire_section: セクション全体を印刷 - +print_printable_section: "これはセクションの複数ページ印刷用ビューです。" +print_click_to_print: "印刷するには、ここをクリックしてください" +print_show_regular: "このページの通常のビューに戻る" +print_entire_section: "セクション全体を印刷" # Feedback -feedback_question: このページは役に立ちましたか? -feedback_positive: 役に立った -feedback_negative: 役に立たなかった - -# Replace these values with reviewed translations when available. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -ui_all: all - -# Footer text -toc_on_this_page: Content - +feedback_question: "このページは役に立ちましたか?" +feedback_positive: "役に立った" +feedback_negative: "役に立たなかった" +feedback_thanks: "ご協力ありがとうございます。フィードバックはこのページの改善に役立ちます。" +feedback_reason_prompt: "何が問題でしたか?(任意)" +feedback_reason_missing: "情報が不足している" +feedback_reason_outdated: "誤りまたは古くなっている" +feedback_reason_failed: "手順が機能しなかった" +feedback_reason_unclear: "理解しにくい" +feedback_details: "コメントに詳細を追加" +feedback_change: "回答を変更" +# Table of contents +toc_on_this_page: "コンテンツ" # Error pages -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +error_404_title: "ページが見つかりません" +error_404_body: "申し訳ありませんが、このページは存在しません。ホームページから再試行してください。" +error_404_home: "ホームページへ移動" +# Version banner +version_banner_archived: "ドキュメントのバージョン {{ .Version }} は現在メンテナンスされていません。表示中のサイトはアーカイブされたコピーです。" +version_banner_latest: "最新のドキュメントについては、{{ .Link }} をご確認ください。" +version_banner_latest_link: "最新バージョン" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "コメントを読み込むにはJavaScriptが必要です。" +comments_noscript_link: "GitHubでの議論を表示。" +# LLM page actions +ui_open_in_prompt_label: "このページについて質問" +ui_view_history: "編集履歴を表示" +ui_table_scroll: "スクロール可能なテーブル" +ui_filetree_divider: "ファイルツリー横のコメント列の幅を変更" +book_figure: "図" +book_table: "表" +book_equation: "式" +book_example: "例" +book_toc: "書籍の目次" +book_draft: "下書き" +book_draft_notice: "この章はまだ修正中です。" +contributors_count: "貢献者" +# Article series +ui_series_title: "シリーズ" +ui_series_part: "第 {{ .Part }} 部 (全 {{ .Total }} 部中)" +# Markdown output +markdown_llms_index: "LLMSインデックス:" +markdown_section_pages: "セクションページ:" +markdown_backlinks: "逆リンク:" diff --git a/i18n/ko.yaml b/i18n/ko.yaml index b3d153b..605bd2f 100644 --- a/i18n/ko.yaml +++ b/i18n/ko.yaml @@ -1,288 +1,207 @@ +# Alert labels +callout_caution: "주의" +callout_important: "중요" +callout_note: "참고" +callout_tip: "팁" +callout_warning: "경고" +callout_success: "성공" +callout_danger: "위험" +callout_question: "질문" +callout_example: "예시" +callout_quote: "인용" +callout_details: "세부 정보" # UI strings. Buttons and similar. -ui_pager_prev: 이전 -ui_pager_next: 다음 -ui_search: 사이트에서 검색… - +ui_pager_prev: "이전" +ui_pager_next: "다음" +ui_search: "검색…" +ui_search_empty: "결과가 없습니다" +ui_search_loading: "검색 인덱스를 로딩 중입니다…" +ui_search_results: "{count}개의 결과가 발견되었습니다" +ui_search_nav: "이동" +ui_search_open: "열기" +ui_search_close: "닫기" +ui_palette_actions: "작업" +ui_palette_page_actions: "페이지 작업" +ui_palette_preferences: "설정" +ui_palette_commands: "명령" +ui_palette_quick_links: "빠른 링크" +ui_palette_no_commands: "일치하는 명령이 없습니다" +ui_palette_choose: "옵션 선택" +ui_palette_action_failed: "작업을 완료할 수 없습니다" +ui_palette_pages: "페이지" +ui_palette_index_unavailable: "페이지 인덱스를 사용할 수 없습니다; 작업은 여전히 가능합니다" +ui_sidebar_nav: "섹션 탐색" +ui_heading_self_link: "이 제목에 대한 링크" +ui_field_self_link: "이 필드로 연결" +ui_preview_source: "Markdown" +ui_preview_rendered: "렌더링 보기" +ui_main_nav: "메인 탐색" +ui_home: "홈" +ui_sidebar_expand: "사이드바 확장" +ui_sidebar_collapse: "사이드바 축소" +ui_drawer_open: "탐색 열기" +ui_drawer_close: "탐색 닫기" +ui_root_menu_label: "섹션 선택" +ui_tags_title: "태그" +ui_tag_title: "태그" +ui_categories_title: "카테고리" +ui_category_title: "카테고리" +ui_modules_title: "모듈" +ui_module_title: "모듈" +ui_authors_title: "저자" +ui_author_title: "저자" +ui_theme_toggle: "색 테마 전환" +ui_theme_auto: "시스템" +ui_theme_light: "라이트" +ui_theme_dark: "다크" +ui_toc_hide: "목차 숨기기" +ui_toc_show: "목차 보이기" +ui_language_select: "언어 선택" +ui_language_switch: "언어 전환" +ui_skip_to_content: "콘텐츠로 건너뛰기" +ui_page_actions: "작업" +ui_open_in_chatgpt: "ChatGPT에서 열기" +ui_open_in_claude: "Claude에서 열기" +ui_open_in_prompt: "%s의 내용을 읽어 주세요. 그러면 이에 대해 질문할 수 있습니다." +ui_copy_markdown: "Markdown 복사" +ui_copy_success: "Markdown 복사됨" +ui_copy_error: "Markdown을 복사할 수 없습니다" +ui_share: "공유" +ui_share_email: "이메일" +ui_copy_link: "링크 복사" +ui_copy_link_success: "링크 복사됨" +ui_copy_link_error: "링크를 복사할 수 없습니다" +ui_code_copy_label: "코드 복사" +ui_code_copied: "복사됨" +ui_code_copy_error: "복사 실패" +ui_code_show_all: "{{ .Count }}줄 모두 보기" +ui_code_collapse: "코드 축소" +ui_tabs_label: "탭" +ui_pricing_featured: "추천" +ui_pricing_included: "포함됨" +ui_pricing_excluded: "포함되지 않음" +ui_marquee_pause: "움직임 일시정지" +ui_kbd_with: "와" +ui_keyboard_shortcuts: "키보드 단축키" +ui_shortcut_tree_move: "사이드바 탐색" +ui_shortcut_tree_toggle: "섹션 접기 또는 펼치기" +ui_shortcut_tree_open: "키보드 포커스가 있는 페이지 열기" +ui_shortcut_heading_move: "이전 또는 다음 제목 이동" +ui_shortcut_page_move: "이전 또는 다음 페이지 이동" +ui_shortcut_search: "검색" +ui_shortcut_commands: "명령 팔레트" +ui_shortcut_reading_mode: "읽기 모드" +ui_shortcut_language: "언어 전환" +ui_shortcut_theme: "테마 전환" +ui_shortcut_route: "최상위 페이지 간 전환" +ui_page_annotation: "페이지 정보" +ui_backlinks: "역링크" +ui_backlinks_more: "{{ . }}개 더 보기" +ui_field_required: "필수" +ui_action_unavailable: "사용 불가" +ui_image_zoom_dialog: "이미지 미리보기" +ui_image_zoom_open: "이미지 미리보기 열기" +ui_image_zoom_close: "이미지 미리보기 닫기" +ui_diagram_expand: "다이어그램 확대" +ui_diagram_zoom_dialog: "다이어그램 미리보기" +ui_diagram_zoom_close: "다이어그램 미리보기 닫기" +ui_diagram_zoom_in: "확대" +ui_diagram_zoom_out: "축소" +ui_diagram_zoom_reset: "보기 재설정" +ui_diagram_error: "다이어그램을 렌더링할 수 없습니다" +ui_print_page: "이 페이지 인쇄" +ui_sidebar_expand_section: "섹션 확장" +ui_sidebar_collapse_section: "섹션 축소" +ui_asciinema_timer: "재생 시간" +ui_openapi_spec: "OpenAPI 사양" +ui_release_view: "릴리스 보기" +ui_release_source: "소스" +ui_release_released: "릴리스됨" +ui_assets_file: "파일" +ui_assets_checksum: "체크섬" +ui_assets_copy: "체크섬 복사" +ui_assets_copied: "복사됨" +ui_assets_copy_all: "모든 체크섬 복사" +ui_assets_download: "파일 다운로드" +ui_download_channels: "다운로드 채널" +ui_download_unpublished: "릴리스 대기 중" +# Used in sentences such as "All Tags" +ui_all: "모든" +ui_list_separator: ", " +ui_blog_index_toggle: "레이아웃 전환" # Footer text -footer_all_rights_reserved: All Rights Reserved - +footer_all_rights_reserved: "모든 권리 보유" +ui_footer_collapse: "푸터 링크 숨기기" +ui_footer_expand: "푸터 링크 보이기" # Post (blog, article, etc.) -post_last_mod: 최종 수정 -post_edit_this: 페이지 편집 -post_create_child_page: 하부 페이지 생성 -post_view_markdown: Markdown 보기 -post_create_issue: 문서에 이슈 생성 -post_create_project_issue: 프로젝트에 이슈 생성 -post_reading_time: minute read -post_less_than_a_minute_read: less than a minute -post_word_count: '{{ .Count }} 단어' -post_reading_minutes: '{{ .Minutes }}분' -post_read_original: 원문 보기 - +post_last_mod: "최종 수정" +post_upstream: "{{ .work }}(저작권: {{ .copyright }})는 {{ .license }}에 따라 제공됩니다. {{ .notice }}를 참조하세요." +post_upstream_adapted: "{{ .work }}(저작권: {{ .copyright }})를 수정한 것으로, {{ .license }}에 따라 제공됩니다. {{ .notice }}와 {{ .history }}를 참조하세요." +post_upstream_adapted_plain: "{{ .work }}(저작권: {{ .copyright }})를 수정한 것으로, {{ .license }}에 따라 제공됩니다. {{ .notice }}를 참조하세요." +post_upstream_notice: "저작권 표시" +post_upstream_history: "변경 이력" +post_translated: "이 페이지는 번역본이며, {{ .original }}이 우선합니다." +post_translated_original: "원본" +post_edit_this: "페이지 편집" +post_view_markdown: "Markdown 보기" +post_create_child_page: "하위 페이지 만들기" +post_create_issue: "문서 이슈 생성" +post_create_project_issue: "프로젝트 이슈 생성" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "{{ .Authors }} 작성 · {{ .Section }}" +post_meta_in: "섹션: {{ .Section }}" +post_reading_time: "분 소요" +post_less_than_a_minute_read: "1분 미만" +post_word_count: "{{ .Count }} 단어" +post_reading_minutes: "{{ .Minutes }}분" +post_read_original: "원문 보기" # Print support -print_printable_section: 이 섹션의 다중 페이지 출력 화면임. -print_click_to_print: 여기를 클릭하여 프린트 -print_show_regular: 이 페이지의 일반 화면으로 돌아가기 -print_entire_section: 전체 섹션 프린트 - -# Replace these values with reviewed translations when available. -callout_caution: Caution -callout_important: Important -callout_note: Note -callout_tip: Tip -callout_warning: Warning - -# UI strings. Buttons and similar. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -ui_all: all - -# Footer text -feedback_question: Was this page helpful? -feedback_positive: Yes -feedback_negative: No - +print_printable_section: "이것은 이 섹션의 여러 페이지 인쇄 보기입니다." +print_click_to_print: "여기를 클릭하여 프린트" +print_show_regular: "이 페이지의 일반 화면으로 돌아가기" +print_entire_section: "전체 섹션 인쇄" +# Feedback +feedback_question: "이 페이지가 도움이 되었나요?" +feedback_positive: "예" +feedback_negative: "아니요" +feedback_thanks: "감사합니다—피드백은 이 페이지 개선에 도움이 됩니다." +feedback_reason_prompt: "어떤 점이 방해되었나요? (선택 사항)" +feedback_reason_missing: "정보 부족" +feedback_reason_outdated: "부정확하거나 오래됨" +feedback_reason_failed: "단계가 작동하지 않음" +feedback_reason_unclear: "이해하기 어려움" +feedback_details: "댓글에 세부 정보 추가" +feedback_change: "응답 변경" # Table of contents -toc_on_this_page: Content - +toc_on_this_page: "내용" # Error pages -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +error_404_title: "페이지를 찾을 수 없습니다" +error_404_body: "죄송합니다. 해당 페이지는 존재하지 않습니다. 홈 페이지에서 다시 시작해 보세요." +error_404_home: "홈 페이지로 이동" +# Version banner +version_banner_archived: "문서 버전 {{ .Version }}은 더 이상 유지되지 않습니다. 현재 보고 있는 사이트는 보관된 사본입니다." +version_banner_latest: "최신 문서: {{ .Link }}." +version_banner_latest_link: "최신 버전" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "댓글을 로드하려면 JavaScript가 필요합니다." +comments_noscript_link: "GitHub에서 토론 보기." +# LLM page actions +ui_open_in_prompt_label: "이 페이지에 대해 질문하기" +ui_view_history: "편집 이력 보기" +ui_table_scroll: "스크롤 가능한 테이블" +ui_filetree_divider: "파일 트리 옆 주석 열 너비 조정" +book_figure: "그림" +book_table: "표" +book_equation: "식" +book_example: "예시" +book_toc: "책 목차" +book_draft: "초안" +book_draft_notice: "이 장은 여전히 수정 중입니다." +contributors_count: "기여자" +# Article series +ui_series_title: "시리즈" +ui_series_part: "{{ .Total }} 중 {{ .Part }}부" +# Markdown output +markdown_llms_index: "LLMS 인덱스:" +markdown_section_pages: "섹션 페이지:" +markdown_backlinks: "역링크:" diff --git a/i18n/nl.yaml b/i18n/nl.yaml index f7e52b6..e3192a8 100644 --- a/i18n/nl.yaml +++ b/i18n/nl.yaml @@ -1,294 +1,207 @@ +# Alert labels +callout_caution: "Let op" +callout_important: "Belangrijk" +callout_note: "Opmerking" +callout_tip: "Tip" +callout_warning: "Waarschuwing" +callout_success: "Succes" +callout_danger: "Gevaar" +callout_question: "Vraag" +callout_example: "Voorbeeld" +callout_quote: "Citaat" +callout_details: "Details" # UI strings. Buttons and similar. -ui_pager_prev: Vorige -ui_pager_next: Volgende -ui_search: Doorzoek deze site - -# Used in sentences such as "Posted in News" - -ui_all: alle - +ui_pager_prev: "Vorige" +ui_pager_next: "Volgende" +ui_search: "Zoeken…" +ui_search_empty: "Geen resultaten gevonden" +ui_search_loading: "Zoekindex aan het laden…" +ui_search_results: "{count} resultaten gevonden" +ui_search_nav: "Navigeer" +ui_search_open: "Openen" +ui_search_close: "Sluiten" +ui_palette_actions: "Acties" +ui_palette_page_actions: "Pagina-acties" +ui_palette_preferences: "Voorkeuren" +ui_palette_commands: "Opdrachten" +ui_palette_quick_links: "Snelkoppelingen" +ui_palette_no_commands: "Geen overeenkomstige opdrachten" +ui_palette_choose: "Kies een optie" +ui_palette_action_failed: "Actie kon niet worden voltooid" +ui_palette_pages: "Pagina's" +ui_palette_index_unavailable: "Pagina-index niet beschikbaar; acties werken nog steeds" +ui_sidebar_nav: "Sectie-navigatie" +ui_heading_self_link: "Koppeling naar deze kop" +ui_field_self_link: "Link naar dit veld" +ui_preview_source: "Markdown" +ui_preview_rendered: "Weergegeven" +ui_main_nav: "Hoofdnavigatie" +ui_home: "Home" +ui_sidebar_expand: "Zijbalk uitvouwen" +ui_sidebar_collapse: "Zijbalk inklappen" +ui_drawer_open: "Navigatie openen" +ui_drawer_close: "Navigatie sluiten" +ui_root_menu_label: "Kies sectie" +ui_tags_title: "Tags" +ui_tag_title: "Tag" +ui_categories_title: "Categorieën" +ui_category_title: "Categorie" +ui_modules_title: "Modules" +ui_module_title: "Module" +ui_authors_title: "Auteurs" +ui_author_title: "Auteur" +ui_theme_toggle: "Wissel kleurenthema" +ui_theme_auto: "Systeem" +ui_theme_light: "Licht" +ui_theme_dark: "Donker" +ui_toc_hide: "Inhoudsopgave verbergen" +ui_toc_show: "Inhoudsopgave tonen" +ui_language_select: "Kies taal" +ui_language_switch: "Wissel taal" +ui_skip_to_content: "Naar inhoud springen" +ui_page_actions: "Acties" +ui_open_in_chatgpt: "Open in ChatGPT" +ui_open_in_claude: "Open in Claude" +ui_open_in_prompt: "Lees %s zodat ik er vragen over kan stellen." +ui_copy_markdown: "Kopieer Markdown" +ui_copy_success: "Markdown gekopieerd" +ui_copy_error: "Kon Markdown niet kopiëren" +ui_share: "Deel" +ui_share_email: "E-mail" +ui_copy_link: "Kopieer link" +ui_copy_link_success: "Link gekopieerd" +ui_copy_link_error: "Kon de link niet kopiëren" +ui_code_copy_label: "Kopieer code" +ui_code_copied: "Kopieer succesvol" +ui_code_copy_error: "Kopiëren mislukt" +ui_code_show_all: "Toon alle {{ .Count }} regels" +ui_code_collapse: "Code inklappen" +ui_tabs_label: "Tabs" +ui_pricing_featured: "Aanbevolen" +ui_pricing_included: "Inbegrepen" +ui_pricing_excluded: "Niet inbegrepen" +ui_marquee_pause: "Beweging pauzeren" +ui_kbd_with: "met" +ui_keyboard_shortcuts: "Toetsenbordtoetsen" +ui_shortcut_tree_move: "Navigeer door zijbalk" +ui_shortcut_tree_toggle: "Sectie inklappen of uitvouwen" +ui_shortcut_tree_open: "Open de pagina met toetsenbordfocus" +ui_shortcut_heading_move: "Vorige of volgende kop" +ui_shortcut_page_move: "Vorige of volgende pagina" +ui_shortcut_search: "Zoeken" +ui_shortcut_commands: "Opdrachtpalet" +ui_shortcut_reading_mode: "Leesmodus" +ui_shortcut_language: "Wissel taal" +ui_shortcut_theme: "Wissel thema" +ui_shortcut_route: "Wissel tussen hoofdpagina’s" +ui_page_annotation: "Pagina-informatie" +ui_backlinks: "Terugverwijzingen" +ui_backlinks_more: "Toon {{ . }} meer" +ui_field_required: "verplicht" +ui_action_unavailable: "niet beschikbaar" +ui_image_zoom_dialog: "Afbeelding voorbeeld" +ui_image_zoom_open: "Afbeelding voorbeeld openen" +ui_image_zoom_close: "Afbeelding voorbeeld sluiten" +ui_diagram_expand: "Vergroot diagram" +ui_diagram_zoom_dialog: "Diagram voorbeeld" +ui_diagram_zoom_close: "Diagram voorbeeld sluiten" +ui_diagram_zoom_in: "Inzoomen" +ui_diagram_zoom_out: "Uitzoomen" +ui_diagram_zoom_reset: "Weergave resetten" +ui_diagram_error: "Het diagram kon niet worden weergegeven" +ui_print_page: "Druk deze pagina af" +ui_sidebar_expand_section: "Sectie uitvouwen" +ui_sidebar_collapse_section: "Sectie inklappen" +ui_asciinema_timer: "Afspeltijd" +ui_openapi_spec: "OpenAPI specificatie" +ui_release_view: "Bekijk release" +ui_release_source: "Bron" +ui_release_released: "Uitgegeven" +ui_assets_file: "Bestand" +ui_assets_checksum: "Controlesom" +ui_assets_copy: "Controlesom kopiëren" +ui_assets_copied: "Kopieer succesvol" +ui_assets_copy_all: "Alle controlesommen kopiëren" +ui_assets_download: "Download bestand" +ui_download_channels: "Downloadkanalen" +ui_download_unpublished: "In afwachting van release" +# Used in sentences such as "All Tags" +ui_all: "alle" +ui_list_separator: ", " +ui_blog_index_toggle: "Wissel lay-out" # Footer text -footer_all_rights_reserved: Alle rechten voorbehouden - +footer_all_rights_reserved: "Alle rechten voorbehouden" +ui_footer_collapse: "Voettekst koppelingen verbergen" +ui_footer_expand: "Voettekst koppelingen tonen" # Post (blog, article, etc.) -post_last_mod: Laatst gewijzigd -post_edit_this: Bewerk deze pagina -post_view_markdown: Bekijk Markdown -post_create_child_page: Maak sub pagina -post_create_issue: Maak documentatie issue -post_create_project_issue: Maak project issue -post_reading_time: minuten leestijd -post_less_than_a_minute_read: minder dan een minuut - +post_last_mod: "Laatst gewijzigd" +post_upstream: "{{ .work }}, {{ .copyright }}, onder {{ .license }}. Zie {{ .notice }}." +post_upstream_adapted: "Aangepast van {{ .work }}, {{ .copyright }}, onder {{ .license }}. Zie {{ .notice }} en {{ .history }}." +post_upstream_adapted_plain: "Aangepast van {{ .work }}, {{ .copyright }}, onder {{ .license }}. Zie {{ .notice }}." +post_upstream_notice: "bronvermelding" +post_upstream_history: "wijzigingsgeschiedenis" +post_translated: "Deze pagina is een vertaling; het {{ .original }} is leidend." +post_translated_original: "origineel" +post_edit_this: "Bewerk deze pagina" +post_view_markdown: "Bekijk Markdown" +post_create_child_page: "Maak subpagina" +post_create_issue: "Meld een probleem met de documentatie" +post_create_project_issue: "Meld een probleem met het project" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "Door {{ .Authors }} · In {{ .Section }}" +post_meta_in: "In {{ .Section }}" +post_reading_time: "minuten leestijd" +post_less_than_a_minute_read: "minder dan een minuut" +post_word_count: "{{ .Count }} woorden" +post_reading_minutes: "{{ .Minutes }} min" +post_read_original: "Lees meer" # Print support -print_printable_section: Dit is de multi-page printable view van deze sectie. -print_click_to_print: Klik hier om te printen -print_show_regular: Terug naar normale view van deze pagina -print_entire_section: Print volledige sectie - -# Replace these values with reviewed translations when available. -callout_caution: Caution -callout_important: Important -callout_note: Note -callout_tip: Tip -callout_warning: Warning - -# UI strings. Buttons and similar. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -feedback_question: Was this page helpful? -feedback_positive: Yes -feedback_negative: No - +print_printable_section: "Dit is de meerpagina-afdrukweergave van deze sectie." +print_click_to_print: "Klik hier om te printen" +print_show_regular: "Terug naar normale view van deze pagina" +print_entire_section: "Druk de volledige sectie af" +# Feedback +feedback_question: "Was deze pagina nuttig?" +feedback_positive: "Ja" +feedback_negative: "Nee" +feedback_thanks: "Bedankt—je reactie helpt ons deze pagina te verbeteren." +feedback_reason_prompt: "Wat ging fout? (optioneel)" +feedback_reason_missing: "Ontbrekende informatie" +feedback_reason_outdated: "Onjuist of verouderd" +feedback_reason_failed: "Stappen hebben niet gewerkt" +feedback_reason_unclear: "Moeilijk te begrijpen" +feedback_details: "Voeg details toe in de opmerkingen" +feedback_change: "Wijzig antwoord" # Table of contents -toc_on_this_page: Content - +toc_on_this_page: "Inhoud" # Error pages -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +error_404_title: "Pagina niet gevonden" +error_404_body: "Sorry, deze pagina bestaat niet. Probeer het opnieuw vanaf de startpagina." +error_404_home: "Ga naar de startpagina" +# Version banner +version_banner_archived: "Versie {{ .Version }} van de documentatie wordt niet langer actief onderhouden. De site die je nu bekijkt is een gearchiveerde kopie." +version_banner_latest: "Voor up-to-date documentatie, zie de {{ .Link }}." +version_banner_latest_link: "laatste versie" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "JavaScript is vereist om reacties te laden." +comments_noscript_link: "Bekijk discussies op GitHub." +# LLM page actions +ui_open_in_prompt_label: "Vraag over deze pagina" +ui_view_history: "Bekijk bewerkingsgeschiedenis" +ui_table_scroll: "Scrollbare tabel" +ui_filetree_divider: "Pas de breedte van de opmerkingenkolom naast de bestandsstructuur aan" +book_figure: "Afbeelding" +book_table: "Tabel" +book_equation: "Vergelijking" +book_example: "Voorbeeld" +book_toc: "Boekinhoud" +book_draft: "Concept" +book_draft_notice: "Dit hoofdstuk wordt nog herzien." +contributors_count: "bijdragers" +# Article series +ui_series_title: "Reeks" +ui_series_part: "Deel {{ .Part }} van {{ .Total }}" +# Markdown output +markdown_llms_index: "LLMS-index:" +markdown_section_pages: "Sectiepagina's:" +markdown_backlinks: "Terugverwijzingen:" diff --git a/i18n/no.yaml b/i18n/no.yaml index 4bc6f85..5bd8236 100644 --- a/i18n/no.yaml +++ b/i18n/no.yaml @@ -1,293 +1,207 @@ # Alert labels -callout_caution: Forsiktig -callout_important: Viktig -callout_note: Merknad -callout_tip: Tips -callout_warning: Advarsel - +callout_caution: "Forsiktig" +callout_important: "Viktig" +callout_note: "Merknad" +callout_tip: "Tips" +callout_warning: "Advarsel" +callout_success: "Suksess" +callout_danger: "Farlig" +callout_question: "Spørsmål" +callout_example: "Eksempel" +callout_quote: "Sitat" +callout_details: "Detaljer" # UI strings. Buttons and similar. -ui_pager_prev: Forrige -ui_pager_next: Neste -ui_search: Søk på nettstedet… - +ui_pager_prev: "Forrige" +ui_pager_next: "Neste" +ui_search: "Søk…" +ui_search_empty: "Ingen resultater funnet" +ui_search_loading: "Laster søkeindeks…" +ui_search_results: "{count} resultater funnet" +ui_search_nav: "Naviger" +ui_search_open: "Åpne" +ui_search_close: "Lukk" +ui_palette_actions: "Handlinger" +ui_palette_page_actions: "Sidehandlinger" +ui_palette_preferences: "Innstillinger" +ui_palette_commands: "Kommandoer" +ui_palette_quick_links: "Hurtiglenker" +ui_palette_no_commands: "Ingen kommandoer matcher" +ui_palette_choose: "Velg et alternativ" +ui_palette_action_failed: "Handlingen kunne ikke fullføres" +ui_palette_pages: "Sider" +ui_palette_index_unavailable: "Sideindeks ikke tilgjengelig; handlinger fungerer fremdeles" +ui_sidebar_nav: "Seksjonsnavigasjon" +ui_heading_self_link: "Lenke til denne overskriften" +ui_field_self_link: "Lenke til dette feltet" +ui_preview_source: "Markdown" +ui_preview_rendered: "Rendret" +ui_main_nav: "Hovednavigasjon" +ui_home: "Hjem" +ui_sidebar_expand: "Utvid sidefeltet" +ui_sidebar_collapse: "Fold sammen sidefeltet" +ui_drawer_open: "Åpne navigasjon" +ui_drawer_close: "Lukk navigasjon" +ui_root_menu_label: "Velg seksjon" +ui_tags_title: "Tagger" +ui_tag_title: "Tagg" +ui_categories_title: "Kategorier" +ui_category_title: "Kategori" +ui_modules_title: "Moduler" +ui_module_title: "Modul" +ui_authors_title: "Forfattere" +ui_author_title: "Forfatter" +ui_theme_toggle: "Bytt fargetema" +ui_theme_auto: "System" +ui_theme_light: "Lyst" +ui_theme_dark: "Mørkt" +ui_toc_hide: "Skjul innholdsfortegnelse" +ui_toc_show: "Vis innholdsfortegnelse" +ui_language_select: "Velg språk" +ui_language_switch: "Bytt språk" +ui_skip_to_content: "Hopp til innhold" +ui_page_actions: "Handlinger" +ui_open_in_chatgpt: "Åpne i ChatGPT" +ui_open_in_claude: "Åpne i Claude" +ui_open_in_prompt: "Les fra %s slik at jeg kan stille spørsmål om det." +ui_copy_markdown: "Kopier Markdown" +ui_copy_success: "Markdown kopiert" +ui_copy_error: "Kunne ikke kopiere Markdown" +ui_share: "Del" +ui_share_email: "E-post" +ui_copy_link: "Kopier lenke" +ui_copy_link_success: "Lenke kopiert" +ui_copy_link_error: "Kunne ikke kopiere lenken" +ui_code_copy_label: "Kopier kode" +ui_code_copied: "Kopiert" +ui_code_copy_error: "Kopiering mislyktes" +ui_code_show_all: "Vis alle {{ .Count }} linjer" +ui_code_collapse: "Skjul kode" +ui_tabs_label: "Faner" +ui_pricing_featured: "Anbefalt" +ui_pricing_included: "Inkludert" +ui_pricing_excluded: "Ikke inkludert" +ui_marquee_pause: "Pause bevegelse" +ui_kbd_with: "med" +ui_keyboard_shortcuts: "Tastaturgenveier" +ui_shortcut_tree_move: "Beveg deg gjennom sidefeltet" +ui_shortcut_tree_toggle: "Skjul eller vis seksjon" +ui_shortcut_tree_open: "Åpne siden som har fokus" +ui_shortcut_heading_move: "Forrige eller neste overskrift" +ui_shortcut_page_move: "Forrige eller neste side" +ui_shortcut_search: "Søk" +ui_shortcut_commands: "Kommandopalette" +ui_shortcut_reading_mode: "Lesemodus" +ui_shortcut_language: "Bytt språk" +ui_shortcut_theme: "Bytt tema" +ui_shortcut_route: "Bytt mellom hovedsider" +ui_page_annotation: "Sideinformasjon" +ui_backlinks: "Tilbakekoblinger" +ui_backlinks_more: "Vis {{ . }} til" +ui_field_required: "obligatorisk" +ui_action_unavailable: "ikke tilgjengelig" +ui_image_zoom_dialog: "Bildeforhåndvisning" +ui_image_zoom_open: "Åpne bildeforhåndvisning" +ui_image_zoom_close: "Lukk bildeforhåndvisning" +ui_diagram_expand: "Forstør diagram" +ui_diagram_zoom_dialog: "Diagramforhåndvisning" +ui_diagram_zoom_close: "Lukk diagramforhåndvisning" +ui_diagram_zoom_in: "Zoom inn" +ui_diagram_zoom_out: "Zoom ut" +ui_diagram_zoom_reset: "Tilbakestill visning" +ui_diagram_error: "Diagrammet kunne ikke vises" +ui_print_page: "Skriv ut denne siden" +ui_sidebar_expand_section: "Utvid seksjon" +ui_sidebar_collapse_section: "Skjul seksjon" +ui_asciinema_timer: "Avspillingstid" +ui_openapi_spec: "OpenAPI-spesifikasjon" +ui_release_view: "Vis utgivelse" +ui_release_source: "Kilde" +ui_release_released: "Utgitt" +ui_assets_file: "Fil" +ui_assets_checksum: "Kontrollsum" +ui_assets_copy: "Kopier kontrollsum" +ui_assets_copied: "Kopiert" +ui_assets_copy_all: "Kopier alle kontrollsummer" +ui_assets_download: "Last ned fil" +ui_download_channels: "Nedlastingskanaler" +ui_download_unpublished: "Venter på utgivelse" # Used in sentences such as "All Tags" -ui_all: alle - +ui_all: "alle" +ui_list_separator: ", " +ui_blog_index_toggle: "Bytt layout" # Footer text -footer_all_rights_reserved: Alle rettigheter er reservert - +footer_all_rights_reserved: "Alle rettigheter er reservert" +ui_footer_collapse: "Skjul footer-lenker" +ui_footer_expand: "Vis footer-lenker" # Post (blog, article, etc.) -post_last_mod: Sist endret -post_edit_this: Endre denne siden -post_view_markdown: Vis Markdown -post_create_child_page: Lag underside -post_create_issue: Opprett dokumentasjon sak -post_create_project_issue: Opprett prosjekt sak -post_reading_time: minute read -post_less_than_a_minute_read: less than a minute - +post_last_mod: "Sist endret" +post_upstream: "{{ .work }}, {{ .copyright }}, lisensiert under {{ .license }}. Se {{ .notice }}." +post_upstream_adapted: "Tilpasset fra {{ .work }}, {{ .copyright }}, lisensiert under {{ .license }}. Se {{ .notice }} og {{ .history }}." +post_upstream_adapted_plain: "Tilpasset fra {{ .work }}, {{ .copyright }}, lisensiert under {{ .license }}. Se {{ .notice }}." +post_upstream_notice: "navngivelse" +post_upstream_history: "endringshistorikk" +post_translated: "Denne siden er en oversettelse; {{ .original }} er autoritativ." +post_translated_original: "originalen" +post_edit_this: "Endre denne siden" +post_view_markdown: "Vis Markdown" +post_create_child_page: "Lag underside" +post_create_issue: "Opprett dokumentasjonssak" +post_create_project_issue: "Opprett prosjektsak" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "Av {{ .Authors }} · I {{ .Section }}" +post_meta_in: "I {{ .Section }}" +post_reading_time: "minutters lesetid" +post_less_than_a_minute_read: "mindre enn et minutt" +post_word_count: "{{ .Count }} ord" +post_reading_minutes: "{{ .Minutes }} min" +post_read_original: "Les mer" # Print support -print_printable_section: Dette er flersidevisningen av denne seksjonen. -print_click_to_print: Klikk her for å skrive ut -print_show_regular: Gå tilbake til vanlig sidevisning -print_entire_section: Skriv ut hele seksjonen - +print_printable_section: "Dette er flersiders utskriftsvisning av denne seksjonen." +print_click_to_print: "Klikk her for å skrive ut" +print_show_regular: "Gå tilbake til vanlig sidevisning" +print_entire_section: "Skriv ut hele seksjonen" # Feedback -feedback_question: Var denne siden nyttig? -feedback_positive: Ja -feedback_negative: Nei - +feedback_question: "Var denne siden nyttig?" +feedback_positive: "Ja" +feedback_negative: "Nei" +feedback_thanks: "Takk—din tilbakemelding hjelper oss med å forbedre denne siden." +feedback_reason_prompt: "Hva hindret deg? (valgfritt)" +feedback_reason_missing: "Mangler informasjon" +feedback_reason_outdated: "Feil eller utdatert" +feedback_reason_failed: "Stegene fungerte ikke" +feedback_reason_unclear: "Vanskelig å forstå" +feedback_details: "Legg til detaljer i kommentarene" +feedback_change: "Endre svar" # Table of contents -toc_on_this_page: På denne siden - -# Replace these values with reviewed translations when available. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +toc_on_this_page: "På denne siden" +# Error pages +error_404_title: "Siden ble ikke funnet" +error_404_body: "Beklager, denne siden finnes ikke. Prøv igjen fra forsiden." +error_404_home: "Gå til forsiden" +# Version banner +version_banner_archived: "Versjon {{ .Version }} av dokumentasjonen blir ikke lenger aktivt vedlikeholdt. Nettstedet du ser nå er en arkivert kopi." +version_banner_latest: "Oppdatert dokumentasjon: {{ .Link }}." +version_banner_latest_link: "siste versjon" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "JavaScript er nødvendig for å laste inn kommentarer." +comments_noscript_link: "Vis diskusjoner på GitHub." +# LLM page actions +ui_open_in_prompt_label: "Spør om denne siden" +ui_view_history: "Vis redigeringshistorikk" +ui_table_scroll: "Rullbar tabell" +ui_filetree_divider: "Endre bredden på kommentarkolonnen ved siden av filtreet" +book_figure: "Figur" +book_table: "Tabell" +book_equation: "Likning" +book_example: "Eksempel" +book_toc: "Bokinnhold" +book_draft: "Kladd" +book_draft_notice: "Dette kapittelet blir fortsatt revidert." +contributors_count: "bidragsytere" +# Article series +ui_series_title: "Serie" +ui_series_part: "Del {{ .Part }} av {{ .Total }}" +# Markdown output +markdown_llms_index: "LLMS-indeks:" +markdown_section_pages: "Seksjonssider:" +markdown_backlinks: "Tilbakekoblinger:" diff --git a/i18n/oc.yaml b/i18n/oc.yaml index 6e42367..4f8d310 100644 --- a/i18n/oc.yaml +++ b/i18n/oc.yaml @@ -1,293 +1,207 @@ +# Alert labels +callout_caution: "Atencion" +callout_important: "Important" +callout_note: "Nota" +callout_tip: "Consell" +callout_warning: "Avertiment" +callout_success: "Capitada" +callout_danger: "Perill" +callout_question: "Question" +callout_example: "Exemple" +callout_quote: "Cita" +callout_details: "Detalhs" # UI strings. Buttons and similar. -ui_pager_prev: Precedent -ui_pager_next: Seguent -ui_search: Cercar dins lo site… - +ui_pager_prev: "Precedent" +ui_pager_next: "Seguent" +ui_search: "Cercar…" +ui_search_empty: "Cap de resultat trobat" +ui_search_loading: "Cargament de l’indèx de recèrca…" +ui_search_results: "{count} resultats trobats" +ui_search_nav: "Navegar" +ui_search_open: "Dobrir" +ui_search_close: "Tancar" +ui_palette_actions: "Accions" +ui_palette_page_actions: "Accions de la pagina" +ui_palette_preferences: "Preferéncias" +ui_palette_commands: "Comandas" +ui_palette_quick_links: "Ligams rapids" +ui_palette_no_commands: "Cap de comanda compatible" +ui_palette_choose: "Seleccionar una opcion" +ui_palette_action_failed: "L'accion a pas poguda èsser completada" +ui_palette_pages: "Paginas" +ui_palette_index_unavailable: "L'index de las paginas es pas disponible; las accions son encara disponibles" +ui_sidebar_nav: "Navigacion de la seccion" +ui_heading_self_link: "Ligam cap a aqueste títol" +ui_field_self_link: "Ligam a aqueste camp" +ui_preview_source: "Markdown" +ui_preview_rendered: "Rendut" +ui_main_nav: "Navigacion principala" +ui_home: "Acuèlh" +ui_sidebar_expand: "Espandir la barra laterala" +ui_sidebar_collapse: "Replegar la barra laterala" +ui_drawer_open: "Dobrir la navigacion" +ui_drawer_close: "Tancar la navigacion" +ui_root_menu_label: "Seleccionar una seccion" +ui_tags_title: "Etiquetas" +ui_tag_title: "Etiqueta" +ui_categories_title: "Categorias" +ui_category_title: "Categoria" +ui_modules_title: "Moduls" +ui_module_title: "Modul" +ui_authors_title: "Autors" +ui_author_title: "Autor" +ui_theme_toggle: "Alternar lo tèma cromatic" +ui_theme_auto: "Sistema" +ui_theme_light: "Clar" +ui_theme_dark: "Escur" +ui_toc_hide: "Amagar lo somari" +ui_toc_show: "Mostrar lo somari" +ui_language_select: "Seleccionar una lenga" +ui_language_switch: "Cambiar de lenga" +ui_skip_to_content: "Anar al contengut" +ui_page_actions: "Accions" +ui_open_in_chatgpt: "Dobrir dins ChatGPT" +ui_open_in_claude: "Dobrir dins Claude" +ui_open_in_prompt: "Legissètz %s per que li pòsca pausar de questions." +ui_copy_markdown: "Copiar lo Markdown" +ui_copy_success: "Markdown copiat" +ui_copy_error: "Impossible de copiar lo Markdown" +ui_share: "Partejar" +ui_share_email: "Corrièl" +ui_copy_link: "Copiar lo ligam" +ui_copy_link_success: "Ligam copiat" +ui_copy_link_error: "Impossible de copiar lo ligam" +ui_code_copy_label: "Copiar lo còdi" +ui_code_copied: "Copiat" +ui_code_copy_error: "La copia a fallit" +ui_code_show_all: "Mostrar totas las {{ .Count }} linhas" +ui_code_collapse: "Replegar lo còdi" +ui_tabs_label: "Onglets" +ui_pricing_featured: "Recomandat" +ui_pricing_included: "Inclòs" +ui_pricing_excluded: "Pas inclòs" +ui_marquee_pause: "Pausar lo moviment" +ui_kbd_with: "amb" +ui_keyboard_shortcuts: "Acorchis de clavièr" +ui_shortcut_tree_move: "Navigar dins la barra laterala" +ui_shortcut_tree_toggle: "Reduire o agrandir una seccion" +ui_shortcut_tree_open: "Dobrir la pagina qu’a lo focus" +ui_shortcut_heading_move: "Titol precedent o seguent" +ui_shortcut_page_move: "Pagina precedenta o seguenta" +ui_shortcut_search: "Cercar" +ui_shortcut_commands: "Paleta de comandas" +ui_shortcut_reading_mode: "Mode lectura" +ui_shortcut_language: "Cambiar de lenga" +ui_shortcut_theme: "Cambiar de teme" +ui_shortcut_route: "Passar d’una pagina de nivèl superior a l’autra" +ui_page_annotation: "Informacions de la pagina" +ui_backlinks: "Ligams retro" +ui_backlinks_more: "Mostrar {{ . }} de plus" +ui_field_required: "obligatòri" +ui_action_unavailable: "pas disponible" +ui_image_zoom_dialog: "Vista previsuala de l'imatge" +ui_image_zoom_open: "Dobrir la vista previsuala de l’imatge" +ui_image_zoom_close: "Tancar la vista previsuala de l'imatge" +ui_diagram_expand: "Agrandir lo diagrama" +ui_diagram_zoom_dialog: "Vista previsuala del diagrama" +ui_diagram_zoom_close: "Tancar la vista previsuala del diagrama" +ui_diagram_zoom_in: "Agrandir" +ui_diagram_zoom_out: "Redusir" +ui_diagram_zoom_reset: "Reiniciar la vista" +ui_diagram_error: "Lo diagrama a pas pogut èsser visualizat" +ui_print_page: "Imprimir aquesta pagina" +ui_sidebar_expand_section: "Agrandir la seccion" +ui_sidebar_collapse_section: "Replegar la seccion" +ui_asciinema_timer: "Temps de reproduccion" +ui_openapi_spec: "Specificacion OpenAPI" +ui_release_view: "Veire la publicacion" +ui_release_source: "Font" +ui_release_released: "Publicat" +ui_assets_file: "Fichièr" +ui_assets_checksum: "Suma de control" +ui_assets_copy: "Copiar la suma de control" +ui_assets_copied: "Copiat" +ui_assets_copy_all: "Copiar totas las sumas de control" +ui_assets_download: "Telecargar lo fichièr" +ui_download_channels: "Canals de telecargament" +ui_download_unpublished: "En espera de lançament" # Used in sentences such as "All Tags" -ui_all: Totas - +ui_all: "Totas" +ui_list_separator: ", " +ui_blog_index_toggle: "Cambiar de disposicion" # Footer text -footer_all_rights_reserved: Tot drech reservat - +footer_all_rights_reserved: "Totes los dreches reservats" +ui_footer_collapse: "Amagar los ligams del peu" +ui_footer_expand: "Mostrar los ligams del peu" # Post (blog, article, etc.) -post_last_mod: Darrièra modificacion -post_edit_this: Modificar aquesta pagina -post_view_markdown: Veire Markdown -post_create_child_page: Crear una pagina enfant -post_create_issue: Crear una anomalia de documentacion -post_create_project_issue: Crear una anomalia de projècte -post_reading_time: minutas de lectura +post_last_mod: "Darrièra modificacion" +post_upstream: "{{ .work }}, {{ .copyright }}, jos licéncia {{ .license }}. Vejatz {{ .notice }}." +post_upstream_adapted: "Adaptat de {{ .work }}, {{ .copyright }}, jos licéncia {{ .license }}. Vejatz {{ .notice }} e {{ .history }}." +post_upstream_adapted_plain: "Adaptat de {{ .work }}, {{ .copyright }}, jos licéncia {{ .license }}. Vejatz {{ .notice }}." +post_upstream_notice: "atribucion" +post_upstream_history: "istoric de las modificacions" +post_translated: "Aquesta pagina es una traduccion; l’{{ .original }} fa fe." +post_translated_original: "original" +post_edit_this: "Modificar aquesta pagina" +post_view_markdown: "Veire lo Markdown" +post_create_child_page: "Crear una pagina filha" +post_create_issue: "Crear un problèma de documentacion" +post_create_project_issue: "Crear un problèma de projècte" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "Per {{ .Authors }} · Dins {{ .Section }}" +post_meta_in: "Dins {{ .Section }}" +post_reading_time: "minutas de lectura" post_less_than_a_minute_read: "mens d'una minuta de lectura" - +post_word_count: "{{ .Count }} mots" +post_reading_minutes: "{{ .Minutes }} min" +post_read_original: "Lègir mai" # Print support -print_printable_section: Aquò es una vista multipagina imprimibla de la seccion. -print_click_to_print: Clicar aquí per imprimir +print_printable_section: "Aquò es la vista imprimibla multipagina d’aquesta seccion." +print_click_to_print: "Clicar aquí per imprimir" print_show_regular: "Tornar a la vista normala d'aquesta pagina" -print_entire_section: Imprimir la seccion complèta - +print_entire_section: "Imprimir tota la seccion" # Feedback -feedback_question: Èra utila aquesta pagina ? -feedback_positive: Oc -feedback_negative: Non - -# Replace these values with reviewed translations when available. -callout_caution: Caution -callout_important: Important -callout_note: Note -callout_tip: Tip -callout_warning: Warning - -# UI strings. Buttons and similar. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -toc_on_this_page: Content - +feedback_question: "Èra utila aquesta pagina ?" +feedback_positive: "Oc" +feedback_negative: "Non" +feedback_thanks: "Mercés—vòstre retorn nos ajuda a melhorar aquesta pagina." +feedback_reason_prompt: "Qué vos a empachat? (opcional)" +feedback_reason_missing: "Informacion mancanta" +feedback_reason_outdated: "Incorrècta o obsolèta" +feedback_reason_failed: "Las etapas an pas foncionat" +feedback_reason_unclear: "Dificil de comprendre" +feedback_details: "Apondre de detalhs dins los comentaris" +feedback_change: "Modificar la resposta" +# Table of contents +toc_on_this_page: "Contengut" # Error pages -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +error_404_title: "Pagina pas trobada" +error_404_body: "O plan, aquesta pagina existís pas. Tornatz començar a partir de la pagina d’acuèlh." +error_404_home: "Anar a la pagina d’acuèlh" +# Version banner +version_banner_archived: "La version {{ .Version }} de la documentacion es pas mai mantenguda activament. Lo site que consultatz es una còpia archivada." +version_banner_latest: "Per una documentacion actualizada, vejatz la {{ .Link }}." +version_banner_latest_link: "version actualizada" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "JavaScript es necessari per cargar los comentaris." +comments_noscript_link: "Veire las discussions sus GitHub." +# LLM page actions +ui_open_in_prompt_label: "Preguntar a prepaus d'aquesta pagina" +ui_view_history: "Veire l’istoric de las modificacions" +ui_table_scroll: "Taula amb desfilament" +ui_filetree_divider: "Redimensionar la colomna de comentaris al costat de l’arbre de fichièrs" +book_figure: "Figura" +book_table: "Taula" +book_equation: "Equacion" +book_example: "Exemple" +book_toc: "Contengut del libre" +book_draft: "Borrolhon" +book_draft_notice: "Aqueste capítol es encara en revision." +contributors_count: "contributors" +# Article series +ui_series_title: "Sèrie" +ui_series_part: "Part {{ .Part }} de {{ .Total }}" +# Markdown output +markdown_llms_index: "Index LLMS:" +markdown_section_pages: "Paginas de la seccion:" +markdown_backlinks: "Ligams retro:" diff --git a/i18n/pl.yaml b/i18n/pl.yaml index 76ee4ef..b7fd8a3 100644 --- a/i18n/pl.yaml +++ b/i18n/pl.yaml @@ -1,293 +1,207 @@ +# Alert labels +callout_caution: "Przestroga" +callout_important: "Ważne" +callout_note: "Uwaga" +callout_tip: "Porada" +callout_warning: "Ostrzeżenie" +callout_success: "Sukces" +callout_danger: "Zagrażające" +callout_question: "Pytanie" +callout_example: "Przykład" +callout_quote: "Cytat" +callout_details: "Szczegóły" # UI strings. Buttons and similar. -ui_pager_prev: Wstecz -ui_pager_next: Dalej -ui_search: Szukaj na stronie ... - +ui_pager_prev: "Wstecz" +ui_pager_next: "Dalej" +ui_search: "Szukaj..." +ui_search_empty: "Nie znaleziono wyników" +ui_search_loading: "Ładowanie indeksu wyszukiwania..." +ui_search_results: "{count} wyników znaleziono" +ui_search_nav: "Przejdź" +ui_search_open: "Otwórz" +ui_search_close: "Zamknij" +ui_palette_actions: "Działania" +ui_palette_page_actions: "Działania strony" +ui_palette_preferences: "Ustawienia" +ui_palette_commands: "Polecenia" +ui_palette_quick_links: "Szybkie linki" +ui_palette_no_commands: "Brak pasujących poleceń" +ui_palette_choose: "Wybierz opcję" +ui_palette_action_failed: "Działanie nie powiodło się" +ui_palette_pages: "Strony" +ui_palette_index_unavailable: "Indeks strony niedostępny; działania są nadal dostępne" +ui_sidebar_nav: "Nawigacja sekcji" +ui_heading_self_link: "Link do tego nagłówka" +ui_field_self_link: "Link do tego pola" +ui_preview_source: "Markdown" +ui_preview_rendered: "Renderowane" +ui_main_nav: "Nawigacja główna" +ui_home: "Strona główna" +ui_sidebar_expand: "Rozwiń pasek boczny" +ui_sidebar_collapse: "Zwiń pasek boczny" +ui_drawer_open: "Otwórz nawigację" +ui_drawer_close: "Zamknij nawigację" +ui_root_menu_label: "Wybierz sekcję" +ui_tags_title: "Tagi" +ui_tag_title: "Tag" +ui_categories_title: "Kategorie" +ui_category_title: "Kategoria" +ui_modules_title: "Moduły" +ui_module_title: "Moduł" +ui_authors_title: "Autorzy" +ui_author_title: "Autor" +ui_theme_toggle: "Przełącz motyw kolorystyczny" +ui_theme_auto: "System" +ui_theme_light: "Jasny" +ui_theme_dark: "Ciemny" +ui_toc_hide: "Ukryj spis treści" +ui_toc_show: "Pokaż spis treści" +ui_language_select: "Wybierz język" +ui_language_switch: "Przełącz język" +ui_skip_to_content: "Przejdź do treści" +ui_page_actions: "Działania" +ui_open_in_chatgpt: "Otwórz w ChatGPT" +ui_open_in_claude: "Otwórz w Claude" +ui_open_in_prompt: "Przeczytaj %s, abym mógł zadawać pytania na ten temat." +ui_copy_markdown: "Kopiuj Markdown" +ui_copy_success: "Markdown skopiowany" +ui_copy_error: "Nie udało się skopiować Markdown" +ui_share: "Udostępnij" +ui_share_email: "E-mail" +ui_copy_link: "Kopiuj link" +ui_copy_link_success: "Link skopiowany" +ui_copy_link_error: "Nie udało się skopiować linku" +ui_code_copy_label: "Kopiuj kod" +ui_code_copied: "Skopiowano" +ui_code_copy_error: "Kopiowanie nie powiodło się" +ui_code_show_all: "Pokaż wszystkie {{ .Count }} wierszy" +ui_code_collapse: "Zwiń kod" +ui_tabs_label: "Karty" +ui_pricing_featured: "Zalecane" +ui_pricing_included: "Włączone" +ui_pricing_excluded: "Nie włączone" +ui_marquee_pause: "Zatrzymaj ruch" +ui_kbd_with: "z" +ui_keyboard_shortcuts: "Skróty klawiaturowe" +ui_shortcut_tree_move: "Przesuwaj się po pasku bocznym" +ui_shortcut_tree_toggle: "Zwiń lub rozwiń sekcję" +ui_shortcut_tree_open: "Otwórz stronę wskazaną klawiaturą" +ui_shortcut_heading_move: "Poprzedni lub następny nagłówek" +ui_shortcut_page_move: "Poprzednia lub następna strona" +ui_shortcut_search: "Szukaj" +ui_shortcut_commands: "Paleta poleceń" +ui_shortcut_reading_mode: "Tryb czytania" +ui_shortcut_language: "Przełącz język" +ui_shortcut_theme: "Przełącz motyw" +ui_shortcut_route: "Przełącz strony najwyższego poziomu" +ui_page_annotation: "Informacje o stronie" +ui_backlinks: "Linki powrotne" +ui_backlinks_more: "Pokaż {{ . }} więcej" +ui_field_required: "wymagane" +ui_action_unavailable: "dostępne" +ui_image_zoom_dialog: "Podgląd obrazu" +ui_image_zoom_open: "Otwórz podgląd obrazu" +ui_image_zoom_close: "Zamknij podgląd obrazu" +ui_diagram_expand: "Zwiększ diagram" +ui_diagram_zoom_dialog: "Podgląd diagramu" +ui_diagram_zoom_close: "Zamknij podgląd diagramu" +ui_diagram_zoom_in: "Powiększ" +ui_diagram_zoom_out: "Pomniejsz" +ui_diagram_zoom_reset: "Resetuj widok" +ui_diagram_error: "Diagram nie mógł zostać wyrenderowany" +ui_print_page: "Drukuj tę stronę" +ui_sidebar_expand_section: "Rozwiń sekcję" +ui_sidebar_collapse_section: "Zwiń sekcję" +ui_asciinema_timer: "Czas odtwarzania" +ui_openapi_spec: "Specyfikacja OpenAPI" +ui_release_view: "Wyświetl wydanie" +ui_release_source: "Źródło" +ui_release_released: "Wydane" +ui_assets_file: "Plik" +ui_assets_checksum: "Suma kontrolna" +ui_assets_copy: "Kopiuj sumę kontrolną" +ui_assets_copied: "Skopiowano" +ui_assets_copy_all: "Kopiuj wszystkie sumy kontrolne" +ui_assets_download: "Pobierz plik" +ui_download_channels: "Kanały pobierania" +ui_download_unpublished: "Oczekujące wydanie" +# Used in sentences such as "All Tags" +ui_all: "wszystkie" +ui_list_separator: ", " +ui_blog_index_toggle: "Przełącz układ" # Footer text -footer_all_rights_reserved: Wszelkie prawa zastrzeżone - +footer_all_rights_reserved: "Wszelkie prawa zastrzeżone" +ui_footer_collapse: "Ukryj linki stopki" +ui_footer_expand: "Pokaż linki stopki" # Post (blog, article, etc.) -post_last_mod: Ostatnia modyfikacja -post_edit_this: Edytuj tę stronę -post_create_child_page: Utwórz podstronę -post_view_markdown: Wyświetl Markdown -post_create_issue: Zgłoś błąd w dokumencie -post_create_project_issue: Zgłoś błąd na stronie -post_reading_time: min. -post_less_than_a_minute_read: mniej niż minutę - +post_last_mod: "Ostatnia modyfikacja" +post_upstream: "{{ .work }}, {{ .copyright }}, pod licencją {{ .license }}. Zobacz {{ .notice }}." +post_upstream_adapted: "Przepisane z {{ .work }}, {{ .copyright }}, pod licencją {{ .license }}. Zobacz {{ .notice }} i {{ .history }}." +post_upstream_adapted_plain: "Przepisane z {{ .work }}, {{ .copyright }}, pod licencją {{ .license }}. Zobacz {{ .notice }}." +post_upstream_notice: "uznanie autorstwa" +post_upstream_history: "historia zmian" +post_translated: "Ta strona jest tłumaczeniem; wiążący jest {{ .original }}." +post_translated_original: "oryginał" +post_edit_this: "Edytuj tę stronę" +post_view_markdown: "Wyświetl Markdown" +post_create_child_page: "Utwórz podstronę" +post_create_issue: "Utwórz zgłoszenie dotyczące dokumentacji" +post_create_project_issue: "Utwórz zgłoszenie dotyczące projektu" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "Autor: {{ .Authors }} · Sekcja: {{ .Section }}" +post_meta_in: "W: {{ .Section }}" +post_reading_time: "min czytania" +post_less_than_a_minute_read: "mniej niż minutę" +post_word_count: "{{ .Count }} słów" +post_reading_minutes: "{{ .Minutes }} min" +post_read_original: "Czytaj więcej" # Print support -print_printable_section: To wielostronicowy widok tej sekcji do wydrukowania. -print_click_to_print: Kliknij aby wydrukować -print_show_regular: Wróć do zwykłego widoku tej strony -print_entire_section: Wydrukuj całą sekcję - -# Replace these values with reviewed translations when available. -callout_caution: Caution -callout_important: Important -callout_note: Note -callout_tip: Tip -callout_warning: Warning - -# UI strings. Buttons and similar. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -ui_all: all - -# Footer text -feedback_question: Was this page helpful? -feedback_positive: Yes -feedback_negative: No - +print_printable_section: "To wielostronicowy widok tej sekcji do wydruku." +print_click_to_print: "Kliknij aby wydrukować" +print_show_regular: "Wróć do zwykłego widoku tej strony" +print_entire_section: "Wydrukuj całą sekcję" +# Feedback +feedback_question: "Czy ta strona była pomocna?" +feedback_positive: "Tak" +feedback_negative: "Nie" +feedback_thanks: "Dziękujemy — Twoja opinia pomaga nam poprawić tę stronę." +feedback_reason_prompt: "Co stanowiło przeszkodę? (opcjonalnie)" +feedback_reason_missing: "Brakujące informacje" +feedback_reason_outdated: "Niepoprawne lub przestarzałe" +feedback_reason_failed: "Kroki nie zadziałały" +feedback_reason_unclear: "Trudno zrozumieć" +feedback_details: "Dodaj szczegóły w komentarzach" +feedback_change: "Zmień odpowiedź" # Table of contents -toc_on_this_page: Content - +toc_on_this_page: "Zawartość" # Error pages -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +error_404_title: "Strona nie znaleziona" +error_404_body: "Przepraszamy, ta strona nie istnieje. Spróbuj ponownie od strony głównej." +error_404_home: "Przejdź na stronę główną" +# Version banner +version_banner_archived: "Wersja {{ .Version }} dokumentacji nie jest już aktywnie utrzymywana. Strona, którą przeglądasz, to archiwalna kopia." +version_banner_latest: "Aktualna dokumentacja: {{ .Link }}." +version_banner_latest_link: "najnowsza wersja" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "Aby załadować komentarze, wymagany jest JavaScript." +comments_noscript_link: "Zobacz dyskusje na GitHubie." +# LLM page actions +ui_open_in_prompt_label: "Zapytaj o tę stronę" +ui_view_history: "Wyświetl historię edycji" +ui_table_scroll: "Tabela przewijana" +ui_filetree_divider: "Zmień szerokość kolumny komentarzy obok drzewa plików" +book_figure: "Rysunek" +book_table: "Tabela" +book_equation: "Równanie" +book_example: "Przykład" +book_toc: "Zawartość książki" +book_draft: "Wersja robocza" +book_draft_notice: "Ten rozdział jest nadal w trakcie poprawek." +contributors_count: "współtwórców" +# Article series +ui_series_title: "Seria" +ui_series_part: "Część {{ .Part }} z {{ .Total }}" +# Markdown output +markdown_llms_index: "Indeks LLMS:" +markdown_section_pages: "Strony sekcji:" +markdown_backlinks: "Linki powrotne:" diff --git a/i18n/pt-br.yaml b/i18n/pt-br.yaml index d92e18c..58bf426 100644 --- a/i18n/pt-br.yaml +++ b/i18n/pt-br.yaml @@ -1,288 +1,207 @@ # Alert labels -callout_caution: Cuidado -callout_important: Importante -callout_note: Nota -callout_tip: Dica -callout_warning: Aviso - +callout_caution: "Cuidado" +callout_important: "Importante" +callout_note: "Nota" +callout_tip: "Dica" +callout_warning: "Aviso" +callout_success: "Sucesso" +callout_danger: "Perigo" +callout_question: "Pergunta" +callout_example: "Exemplo" +callout_quote: "Citação" +callout_details: "Detalhes" # UI strings. Buttons and similar. -ui_pager_prev: Anterior -ui_pager_next: Próximo -ui_search: Buscar no site… - +ui_pager_prev: "Anterior" +ui_pager_next: "Próximo" +ui_search: "Buscar…" +ui_search_empty: "Nenhum resultado encontrado" +ui_search_loading: "Carregando índice de busca…" +ui_search_results: "{count} resultados encontrados" +ui_search_nav: "Navegar" +ui_search_open: "Abrir" +ui_search_close: "Fechar" +ui_palette_actions: "Ações" +ui_palette_page_actions: "Ações da página" +ui_palette_preferences: "Preferências" +ui_palette_commands: "Comandos" +ui_palette_quick_links: "Links rápidos" +ui_palette_no_commands: "Nenhum comando correspondente" +ui_palette_choose: "Escolha uma opção" +ui_palette_action_failed: "A ação não pôde ser concluída" +ui_palette_pages: "Páginas" +ui_palette_index_unavailable: "Índice de páginas indisponível; as ações ainda funcionam" +ui_sidebar_nav: "Navegação da seção" +ui_heading_self_link: "Link para este título" +ui_field_self_link: "Link para este campo" +ui_preview_source: "Markdown" +ui_preview_rendered: "Renderizado" +ui_main_nav: "Navegação principal" +ui_home: "Início" +ui_sidebar_expand: "Expandir barra lateral" +ui_sidebar_collapse: "Colapsar barra lateral" +ui_drawer_open: "Abrir navegação" +ui_drawer_close: "Fechar navegação" +ui_root_menu_label: "Escolha a seção" +ui_tags_title: "Etiquetas" +ui_tag_title: "Etiqueta" +ui_categories_title: "Categorias" +ui_category_title: "Categoria" +ui_modules_title: "Módulos" +ui_module_title: "Módulo" +ui_authors_title: "Autores" +ui_author_title: "Autor" +ui_theme_toggle: "Alternar tema de cor" +ui_theme_auto: "Sistema" +ui_theme_light: "Claro" +ui_theme_dark: "Escuro" +ui_toc_hide: "Ocultar tabela de conteúdos" +ui_toc_show: "Mostrar tabela de conteúdos" +ui_language_select: "Escolha o idioma" +ui_language_switch: "Alternar idioma" +ui_skip_to_content: "Pular para o conteúdo" +ui_page_actions: "Ações" +ui_open_in_chatgpt: "Abrir no ChatGPT" +ui_open_in_claude: "Abrir no Claude" +ui_open_in_prompt: "Leia %s para que eu possa fazer perguntas a respeito." +ui_copy_markdown: "Copiar Markdown" +ui_copy_success: "Markdown copiado" +ui_copy_error: "Não foi possível copiar o Markdown" +ui_share: "Compartilhar" +ui_share_email: "E-mail" +ui_copy_link: "Copiar link" +ui_copy_link_success: "Link copiado" +ui_copy_link_error: "Não foi possível copiar o link" +ui_code_copy_label: "Copiar código" +ui_code_copied: "Copiado" +ui_code_copy_error: "Falha na cópia" +ui_code_show_all: "Mostrar todos os {{ .Count }} linhas" +ui_code_collapse: "Colapsar código" +ui_tabs_label: "Abas" +ui_pricing_featured: "Recomendado" +ui_pricing_included: "Incluído" +ui_pricing_excluded: "Não incluído" +ui_marquee_pause: "Pausar movimento" +ui_kbd_with: "com" +ui_keyboard_shortcuts: "Atalhos de teclado" +ui_shortcut_tree_move: "Navegar pela barra lateral" +ui_shortcut_tree_toggle: "Colapsar ou expandir seção" +ui_shortcut_tree_open: "Abrir a página em foco" +ui_shortcut_heading_move: "Título anterior ou seguinte" +ui_shortcut_page_move: "Página anterior ou seguinte" +ui_shortcut_search: "Buscar" +ui_shortcut_commands: "Paleta de comandos" +ui_shortcut_reading_mode: "Modo leitura" +ui_shortcut_language: "Alternar idioma" +ui_shortcut_theme: "Alternar tema" +ui_shortcut_route: "Alternar entre páginas principais" +ui_page_annotation: "Informações da página" +ui_backlinks: "Links de entrada" +ui_backlinks_more: "Mostrar {{ . }} mais" +ui_field_required: "obrigatório" +ui_action_unavailable: "indisponível" +ui_image_zoom_dialog: "Visualização da imagem" +ui_image_zoom_open: "Abrir visualização da imagem" +ui_image_zoom_close: "Fechar visualização da imagem" +ui_diagram_expand: "Ampliar diagrama" +ui_diagram_zoom_dialog: "Visualização do diagrama" +ui_diagram_zoom_close: "Fechar visualização do diagrama" +ui_diagram_zoom_in: "Ampliar" +ui_diagram_zoom_out: "Reduzir" +ui_diagram_zoom_reset: "Redefinir visualização" +ui_diagram_error: "O diagrama não pôde ser renderizado" +ui_print_page: "Imprimir esta página" +ui_sidebar_expand_section: "Expandir seção" +ui_sidebar_collapse_section: "Colapsar seção" +ui_asciinema_timer: "Tempo de reprodução" +ui_openapi_spec: "Especificação OpenAPI" +ui_release_view: "Ver lançamento" +ui_release_source: "Origem" +ui_release_released: "Lançado" +ui_assets_file: "Arquivo" +ui_assets_checksum: "Soma de verificação" +ui_assets_copy: "Copiar soma de verificação" +ui_assets_copied: "Copiado" +ui_assets_copy_all: "Copiar todas as somas de verificação" +ui_assets_download: "Baixar arquivo" +ui_download_channels: "Canais de download" +ui_download_unpublished: "Pendente de lançamento" # Used in sentences such as "All Tags" -ui_all: todos - +ui_all: "todos" +ui_list_separator: ", " +ui_blog_index_toggle: "Alternar layout" # Footer text -footer_all_rights_reserved: Todos os direitos reservados - +footer_all_rights_reserved: "Todos os direitos reservados" +ui_footer_collapse: "Ocultar links do rodapé" +ui_footer_expand: "Mostrar links do rodapé" # Post (blog, article, etc.) -post_last_mod: Última modificação -post_edit_this: Editar essa página -post_view_markdown: Ver Markdown -post_create_child_page: Criar uma subpágina -post_create_issue: Relatar um problema de documentação -post_create_project_issue: Relatar um problema no projeto -post_reading_time: minute read -post_less_than_a_minute_read: less than a minute -post_word_count: '{{ .Count }} palavras' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Ler o original - +post_last_mod: "Última modificação" +post_upstream: "{{ .work }}, {{ .copyright }}, sob a licença {{ .license }}. Consulte {{ .notice }}." +post_upstream_adapted: "Adaptado de {{ .work }}, {{ .copyright }}, sob a licença {{ .license }}. Consulte {{ .notice }} e {{ .history }}." +post_upstream_adapted_plain: "Adaptado de {{ .work }}, {{ .copyright }}, sob a licença {{ .license }}. Consulte {{ .notice }}." +post_upstream_notice: "atribuição" +post_upstream_history: "histórico de alterações" +post_translated: "Esta página é uma tradução; o {{ .original }} prevalece." +post_translated_original: "original" +post_edit_this: "Editar essa página" +post_view_markdown: "Ver Markdown" +post_create_child_page: "Criar uma subpágina" +post_create_issue: "Criar problema na documentação" +post_create_project_issue: "Criar problema no projeto" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "Por {{ .Authors }} · Em {{ .Section }}" +post_meta_in: "Em {{ .Section }}" +post_reading_time: "minutos de leitura" +post_less_than_a_minute_read: "menos de um minuto" +post_word_count: "{{ .Count }} palavras" +post_reading_minutes: "{{ .Minutes }} min" +post_read_original: "Ler mais" # Print support -print_printable_section: This is the multi-page printable view of this section. -print_click_to_print: Click here to print -print_show_regular: Return to the regular view of this page -print_entire_section: Print entire section - +print_printable_section: "Esta é a visualização de impressão de várias páginas desta seção." +print_click_to_print: "Clique aqui para imprimir" +print_show_regular: "Voltar à visualização normal desta página" +print_entire_section: "Imprimir seção inteira" # Feedback -feedback_question: Esta página foi útil? -feedback_positive: Sim -feedback_negative: Não - +feedback_question: "Esta página foi útil?" +feedback_positive: "Sim" +feedback_negative: "Não" +feedback_thanks: "Agradecemos—seu feedback nos ajuda a melhorar esta página." +feedback_reason_prompt: "O que atrapalhou? (opcional)" +feedback_reason_missing: "Informação ausente" +feedback_reason_outdated: "Incorreta ou desatualizada" +feedback_reason_failed: "Passos não funcionaram" +feedback_reason_unclear: "Difícil de entender" +feedback_details: "Adicione detalhes nos comentários" +feedback_change: "Alterar resposta" # Table of contents -toc_on_this_page: Nesta página - -# Replace these values with reviewed translations when available. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +toc_on_this_page: "Nesta página" +# Error pages +error_404_title: "Página não encontrada" +error_404_body: "Desculpe, esta página não existe. Tente começar novamente a partir da página inicial." +error_404_home: "Ir para a página inicial" +# Version banner +version_banner_archived: "A versão {{ .Version }} da documentação não é mais mantida ativamente. O site que você está vendo é uma cópia arquivada." +version_banner_latest: "Para documentação atualizada, veja a {{ .Link }}." +version_banner_latest_link: "versão mais recente" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "JavaScript é necessário para carregar os comentários." +comments_noscript_link: "Veja as discussões no GitHub." +# LLM page actions +ui_open_in_prompt_label: "Pergunte sobre esta página" +ui_view_history: "Ver histórico de edições" +ui_table_scroll: "Tabela com rolagem" +ui_filetree_divider: "Redimensionar a coluna de comentários ao lado da árvore de arquivos" +book_figure: "Figura" +book_table: "Tabela" +book_equation: "Equação" +book_example: "Exemplo" +book_toc: "Conteúdo do livro" +book_draft: "Rascunho" +book_draft_notice: "Este capítulo ainda está sendo revisado." +contributors_count: "colaboradores" +# Article series +ui_series_title: "Série" +ui_series_part: "Parte {{ .Part }} de {{ .Total }}" +# Markdown output +markdown_llms_index: "Índice de LLMS:" +markdown_section_pages: "Páginas da seção:" +markdown_backlinks: "Links de entrada:" diff --git a/i18n/ro.yaml b/i18n/ro.yaml index d1c17d6..e49ee4f 100644 --- a/i18n/ro.yaml +++ b/i18n/ro.yaml @@ -1,294 +1,207 @@ # Alert labels -callout_caution: Atenție -callout_important: Important -callout_note: Notă -callout_tip: Sfat -callout_warning: Avertisment - +callout_caution: "Atenție" +callout_important: "Important" +callout_note: "Notă" +callout_tip: "Sfat" +callout_warning: "Avertisment" +callout_success: "Reușit" +callout_danger: "Pericol" +callout_question: "Întrebare" +callout_example: "Exemplu" +callout_quote: "Citat" +callout_details: "Detalii" # UI strings. Buttons and similar. -ui_pager_prev: Anterior -ui_pager_next: Următor -ui_search: Caută pe acest site… - +ui_pager_prev: "Anterior" +ui_pager_next: "Următor" +ui_search: "Caută…" +ui_search_empty: "Nu s-au găsit rezultate" +ui_search_loading: "Se încarcă indexul de căutare…" +ui_search_results: "{count} rezultate găsite" +ui_search_nav: "Navighează" +ui_search_open: "Deschide" +ui_search_close: "Închide" +ui_palette_actions: "Acțiuni" +ui_palette_page_actions: "Acțiuni pagină" +ui_palette_preferences: "Preferințe" +ui_palette_commands: "Comenzi" +ui_palette_quick_links: "Legături rapide" +ui_palette_no_commands: "Nu există comenzi potrivite" +ui_palette_choose: "Alege o opțiune" +ui_palette_action_failed: "Acțiunea nu a putut fi finalizată" +ui_palette_pages: "Pagini" +ui_palette_index_unavailable: "Indexul paginii nu este disponibil; acțiunile funcționează totuși" +ui_sidebar_nav: "Navigare secțiune" +ui_heading_self_link: "Legătură către acest titlu" +ui_field_self_link: "Link la acest câmp" +ui_preview_source: "Markdown" +ui_preview_rendered: "Redat" +ui_main_nav: "Navigare principală" +ui_home: "Acasă" +ui_sidebar_expand: "Extinde bara laterală" +ui_sidebar_collapse: "Restrânge bara laterală" +ui_drawer_open: "Deschide navigarea" +ui_drawer_close: "Închide navigarea" +ui_root_menu_label: "Alege secțiunea" +ui_tags_title: "Etichete" +ui_tag_title: "Etichetă" +ui_categories_title: "Categorii" +ui_category_title: "Categorie" +ui_modules_title: "Module" +ui_module_title: "Modul" +ui_authors_title: "Autori" +ui_author_title: "Autor" +ui_theme_toggle: "Comută tema de culoare" +ui_theme_auto: "Sistem" +ui_theme_light: "Luminoasă" +ui_theme_dark: "Întunecată" +ui_toc_hide: "Ascunde cuprinsul" +ui_toc_show: "Afișează cuprinsul" +ui_language_select: "Alege limba" +ui_language_switch: "Comută limba" +ui_skip_to_content: "Sari la conținut" +ui_page_actions: "Acțiuni" +ui_open_in_chatgpt: "Deschide în ChatGPT" +ui_open_in_claude: "Deschide în Claude" +ui_open_in_prompt: "Citește din %s pentru a putea pune întrebări despre acesta." +ui_copy_markdown: "Copiază Markdown" +ui_copy_success: "Markdown copiat" +ui_copy_error: "Nu s-a putut copia Markdown" +ui_share: "Partajează" +ui_share_email: "Email" +ui_copy_link: "Copiază linkul" +ui_copy_link_success: "Link copiat" +ui_copy_link_error: "Nu s-a putut copia linkul" +ui_code_copy_label: "Copiază codul" +ui_code_copied: "Copiat" +ui_code_copy_error: "Copierea a eșuat" +ui_code_show_all: "Afișează toate liniile ({{ .Count }})" +ui_code_collapse: "Restrânge codul" +ui_tabs_label: "File" +ui_pricing_featured: "Recomandat" +ui_pricing_included: "Inclus" +ui_pricing_excluded: "Neinclus" +ui_marquee_pause: "Oprește mișcarea" +ui_kbd_with: "cu" +ui_keyboard_shortcuts: "Scurtături tastatură" +ui_shortcut_tree_move: "Navighează prin bara laterală" +ui_shortcut_tree_toggle: "Restrânge sau extinde secțiunea" +ui_shortcut_tree_open: "Deschide pagina focalizată" +ui_shortcut_heading_move: "Titlu anterior sau următor" +ui_shortcut_page_move: "Pagină anterioară sau următoare" +ui_shortcut_search: "Caută" +ui_shortcut_commands: "Paleta de comenzi" +ui_shortcut_reading_mode: "Mod citire" +ui_shortcut_language: "Comută limba" +ui_shortcut_theme: "Comută tema" +ui_shortcut_route: "Comută între paginile principale" +ui_page_annotation: "Informații pagină" +ui_backlinks: "Legături inverse" +ui_backlinks_more: "Afișează {{ . }} mai multe" +ui_field_required: "necesar" +ui_action_unavailable: "nedisponibil" +ui_image_zoom_dialog: "Previzualizare imagine" +ui_image_zoom_open: "Deschide previzualizarea imaginii" +ui_image_zoom_close: "Închide previzualizarea imaginii" +ui_diagram_expand: "Mărește diagrama" +ui_diagram_zoom_dialog: "Previzualizare diagramă" +ui_diagram_zoom_close: "Închide previzualizarea diagramei" +ui_diagram_zoom_in: "Mărește" +ui_diagram_zoom_out: "Micșorează" +ui_diagram_zoom_reset: "Resetează vizualizarea" +ui_diagram_error: "Diagrama nu a putut fi redată" +ui_print_page: "Imprimă această pagină" +ui_sidebar_expand_section: "Extinde secțiunea" +ui_sidebar_collapse_section: "Restrânge secțiunea" +ui_asciinema_timer: "Timp redare" +ui_openapi_spec: "Specificare OpenAPI" +ui_release_view: "Vizualizează lansarea" +ui_release_source: "Sursă" +ui_release_released: "Lansată" +ui_assets_file: "Fișier" +ui_assets_checksum: "Sumă de control" +ui_assets_copy: "Copiază suma de control" +ui_assets_copied: "Copiat" +ui_assets_copy_all: "Copiază toate sumele de control" +ui_assets_download: "Descarcă fișierul" +ui_download_channels: "Canale de descărcare" +ui_download_unpublished: "În așteptarea lansării" # Used in sentences such as "All Tags" -ui_all: toate - +ui_all: "toate" +ui_list_separator: ", " +ui_blog_index_toggle: "Comută aspectul" # Footer text -footer_all_rights_reserved: Toate drepturile rezervate - +footer_all_rights_reserved: "Toate drepturile rezervate" +ui_footer_collapse: "Ascunde legăturile din subsol" +ui_footer_expand: "Afișează legăturile din subsol" # Post (blog, article, etc.) -post_last_mod: Ultima modificare -post_edit_this: Editează această pagină -post_view_markdown: Vizualizează Markdown -post_create_child_page: Creează subpagină -post_create_issue: Creează problemă de documentație -post_create_project_issue: Creează problemă de proiect -post_reading_time: minute citite -post_less_than_a_minute_read: mai puțin de un minut - +post_last_mod: "Ultima modificare" +post_upstream: "{{ .work }}, {{ .copyright }}, sub licența {{ .license }}. Vezi {{ .notice }}." +post_upstream_adapted: "Adaptat din {{ .work }}, {{ .copyright }}, sub licența {{ .license }}. Vezi {{ .notice }} și {{ .history }}." +post_upstream_adapted_plain: "Adaptat din {{ .work }}, {{ .copyright }}, sub licența {{ .license }}. Vezi {{ .notice }}." +post_upstream_notice: "atribuire" +post_upstream_history: "istoric modificări" +post_translated: "Această pagină este o traducere; {{ .original }} prevalează." +post_translated_original: "originalul" +post_edit_this: "Editează această pagină" +post_view_markdown: "Vizualizează Markdown" +post_create_child_page: "Creează subpagină" +post_create_issue: "Creează o sesizare pentru documentație" +post_create_project_issue: "Creează o sesizare pentru proiect" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "De {{ .Authors }} · În {{ .Section }}" +post_meta_in: "În {{ .Section }}" +post_reading_time: "minute de lectură" +post_less_than_a_minute_read: "mai puțin de un minut" +post_word_count: "{{ .Count }} cuvinte" +post_reading_minutes: "{{ .Minutes }} min" +post_read_original: "Citește mai mult" # Print support -print_printable_section: - Aceasta este vizualizarea imprimabilă pe mai multe pagini a acestei secțiuni. -print_click_to_print: Clic aici pentru a imprima -print_show_regular: Revenire la vizualizarea normală a acestei pagini -print_entire_section: Imprimă întreaga secțiune - +print_printable_section: "Aceasta este versiunea imprimabilă pe mai multe pagini a acestei secțiuni." +print_click_to_print: "Clic aici pentru a imprima" +print_show_regular: "Revenire la vizualizarea normală a acestei pagini" +print_entire_section: "Imprimă întreaga secțiune" # Feedback -feedback_question: A fost utilă această pagină? -feedback_positive: Da -feedback_negative: Nu - +feedback_question: "A fost utilă această pagină?" +feedback_positive: "Da" +feedback_negative: "Nu" +feedback_thanks: "Mulțumim — opinia ta ne ajută să îmbunătățim această pagină." +feedback_reason_prompt: "Ce a fost dificil? (opțional)" +feedback_reason_missing: "Informații lipsă" +feedback_reason_outdated: "Incorect sau învechit" +feedback_reason_failed: "Pașii nu au funcționat" +feedback_reason_unclear: "Greu de înțeles" +feedback_details: "Adaugă detalii în comentarii" +feedback_change: "Schimbă răspunsul" # Table of contents -toc_on_this_page: Pe această pagină - -# Replace these values with reviewed translations when available. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +toc_on_this_page: "Pe această pagină" +# Error pages +error_404_title: "Pagina nu a fost găsită" +error_404_body: "Ne pare rău, această pagină nu există. Încearcă din nou de la pagina principală." +error_404_home: "Mergi la pagina principală" +# Version banner +version_banner_archived: "Versiunea {{ .Version }} a documentației nu mai este menținută activ. Site-ul pe care îl vizualizați în prezent este o copie arhivată." +version_banner_latest: "Documentație actualizată: {{ .Link }}." +version_banner_latest_link: "versiunea actuală" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "Este necesar JavaScript pentru a încărca comentariile." +comments_noscript_link: "Vezi discuțiile pe GitHub." +# LLM page actions +ui_open_in_prompt_label: "Întreabă despre această pagină" +ui_view_history: "Vizualizează istoricul editărilor" +ui_table_scroll: "Tabel cu derulare" +ui_filetree_divider: "Redimensionează coloana comentariilor arborelui de fișiere" +book_figure: "Figură" +book_table: "Tabel" +book_equation: "Ecuație" +book_example: "Exemplu" +book_toc: "Conținut carte" +book_draft: "Ciornă" +book_draft_notice: "Acest capitol este încă în curs de revizuire." +contributors_count: "contribuitori" +# Article series +ui_series_title: "Serie" +ui_series_part: "Partea {{ .Part }} din {{ .Total }}" +# Markdown output +markdown_llms_index: "Index LLMS:" +markdown_section_pages: "Pagini secțiune:" +markdown_backlinks: "Legături inverse:" diff --git a/i18n/ru.yaml b/i18n/ru.yaml index 4380c46..812df18 100644 --- a/i18n/ru.yaml +++ b/i18n/ru.yaml @@ -1,288 +1,207 @@ # Alert labels -callout_caution: Осторожно -callout_important: Важно -callout_note: Примечание -callout_tip: Подсказка -callout_warning: Предупреждение - +callout_caution: "Осторожно" +callout_important: "Важно" +callout_note: "Примечание" +callout_tip: "Подсказка" +callout_warning: "Предупреждение" +callout_success: "Успешно" +callout_danger: "Опасность" +callout_question: "Вопрос" +callout_example: "Пример" +callout_quote: "Цитата" +callout_details: "Детали" # UI strings. Buttons and similar. -ui_pager_prev: Предыдущая -ui_pager_next: Следующая -ui_search: Поиск по сайту… - +ui_pager_prev: "Предыдущая" +ui_pager_next: "Следующая" +ui_search: "Поиск…" +ui_search_empty: "Ничего не найдено" +ui_search_loading: "Загрузка индекса поиска…" +ui_search_results: "{count} результатов найдено" +ui_search_nav: "Перейти" +ui_search_open: "Открыть" +ui_search_close: "Закрыть" +ui_palette_actions: "Действия" +ui_palette_page_actions: "Действия на странице" +ui_palette_preferences: "Настройки" +ui_palette_commands: "Команды" +ui_palette_quick_links: "Быстрые ссылки" +ui_palette_no_commands: "Нет совпадающих команд" +ui_palette_choose: "Выберите опцию" +ui_palette_action_failed: "Действие не удалось выполнить" +ui_palette_pages: "Страницы" +ui_palette_index_unavailable: "Индекс страниц недоступен; действия всё ещё работают" +ui_sidebar_nav: "Навигация по разделу" +ui_heading_self_link: "Ссылка на этот заголовок" +ui_field_self_link: "Ссылка на это поле" +ui_preview_source: "Markdown" +ui_preview_rendered: "Отображено" +ui_main_nav: "Основное меню" +ui_home: "Главная" +ui_sidebar_expand: "Развернуть боковую панель" +ui_sidebar_collapse: "Свернуть боковую панель" +ui_drawer_open: "Открыть навигацию" +ui_drawer_close: "Закрыть навигацию" +ui_root_menu_label: "Выберите раздел" +ui_tags_title: "Теги" +ui_tag_title: "Тег" +ui_categories_title: "Категории" +ui_category_title: "Категория" +ui_modules_title: "Модули" +ui_module_title: "Модуль" +ui_authors_title: "Авторы" +ui_author_title: "Автор" +ui_theme_toggle: "Переключить тему" +ui_theme_auto: "Системная" +ui_theme_light: "Светлая" +ui_theme_dark: "Тёмная" +ui_toc_hide: "Скрыть оглавление" +ui_toc_show: "Показать оглавление" +ui_language_select: "Выберите язык" +ui_language_switch: "Переключить язык" +ui_skip_to_content: "Перейти к содержимому" +ui_page_actions: "Действия" +ui_open_in_chatgpt: "Открыть в ChatGPT" +ui_open_in_claude: "Открыть в Claude" +ui_open_in_prompt: "Прочитать %s, чтобы я мог задать о ней вопросы." +ui_copy_markdown: "Копировать Markdown" +ui_copy_success: "Markdown скопирован" +ui_copy_error: "Не удалось скопировать Markdown" +ui_share: "Поделиться" +ui_share_email: "Электронная почта" +ui_copy_link: "Копировать ссылку" +ui_copy_link_success: "Ссылка скопирована" +ui_copy_link_error: "Не удалось скопировать ссылку" +ui_code_copy_label: "Копировать код" +ui_code_copied: "Скопировано" +ui_code_copy_error: "Копирование не удалось" +ui_code_show_all: "Показать все {{ .Count }} строк" +ui_code_collapse: "Скрыть код" +ui_tabs_label: "Вкладки" +ui_pricing_featured: "Рекомендуемый" +ui_pricing_included: "Включено" +ui_pricing_excluded: "Не включено" +ui_marquee_pause: "Остановить движение" +ui_kbd_with: "с" +ui_keyboard_shortcuts: "Сочетания клавиш" +ui_shortcut_tree_move: "Перемещение по боковой панели" +ui_shortcut_tree_toggle: "Свернуть или развернуть раздел" +ui_shortcut_tree_open: "Открыть страницу с фокусом клавиатуры" +ui_shortcut_heading_move: "Переход к предыдущему или следующему заголовку" +ui_shortcut_page_move: "Переход к предыдущей или следующей странице" +ui_shortcut_search: "Поиск" +ui_shortcut_commands: "Палитра команд" +ui_shortcut_reading_mode: "Режим чтения" +ui_shortcut_language: "Переключить язык" +ui_shortcut_theme: "Сменить тему" +ui_shortcut_route: "Переключиться между разделами верхнего уровня" +ui_page_annotation: "Информация о странице" +ui_backlinks: "Обратные ссылки" +ui_backlinks_more: "Показать ещё {{ . }}" +ui_field_required: "обязательно" +ui_action_unavailable: "недоступно" +ui_image_zoom_dialog: "Предпросмотр изображения" +ui_image_zoom_open: "Открыть предпросмотр изображения" +ui_image_zoom_close: "Закрыть предпросмотр изображения" +ui_diagram_expand: "Увеличить диаграмму" +ui_diagram_zoom_dialog: "Предпросмотр диаграммы" +ui_diagram_zoom_close: "Закрыть предпросмотр диаграммы" +ui_diagram_zoom_in: "Увеличить" +ui_diagram_zoom_out: "Уменьшить" +ui_diagram_zoom_reset: "Сбросить вид" +ui_diagram_error: "Диаграмма не может быть отображена" +ui_print_page: "Распечатать эту страницу" +ui_sidebar_expand_section: "Развернуть раздел" +ui_sidebar_collapse_section: "Свернуть раздел" +ui_asciinema_timer: "Время воспроизведения" +ui_openapi_spec: "Спецификация OpenAPI" +ui_release_view: "Просмотр релиза" +ui_release_source: "Исходный код" +ui_release_released: "Опубликовано" +ui_assets_file: "Файл" +ui_assets_checksum: "Контрольная сумма" +ui_assets_copy: "Скопировать контрольную сумму" +ui_assets_copied: "Скопировано" +ui_assets_copy_all: "Скопировать все контрольные суммы" +ui_assets_download: "Скачать файл" +ui_download_channels: "Каналы загрузки" +ui_download_unpublished: "Ожидает публикации" # Used in sentences such as "All Tags" -ui_all: все - +ui_all: "все" +ui_list_separator: ", " +ui_blog_index_toggle: "Переключить макет" # Footer text -footer_all_rights_reserved: Все права защищены - +footer_all_rights_reserved: "Все права защищены" +ui_footer_collapse: "Скрыть ссылки в подвале" +ui_footer_expand: "Показать ссылки в подвале" # Post (blog, article, etc.) -post_last_mod: Изменено -post_edit_this: Редактировать страницу -post_view_markdown: Посмотреть Markdown -post_create_child_page: Создать вложенную страницу -post_create_issue: Создать тикет по документации -post_create_project_issue: Создать тикет по проекту -post_reading_time: мин. чтения -post_less_than_a_minute_read: меньше минуты -post_word_count: 'Слов: {{ .Count }}' -post_reading_minutes: '{{ .Minutes }} мин' -post_read_original: Читать оригинал - +post_last_mod: "Изменено" +post_upstream: "{{ .work }}, {{ .copyright }}, под лицензией {{ .license }}. См. {{ .notice }}." +post_upstream_adapted: "Переработано из {{ .work }}, {{ .copyright }}, под лицензией {{ .license }}. См. {{ .notice }} и {{ .history }}." +post_upstream_adapted_plain: "Переработано из {{ .work }}, {{ .copyright }}, под лицензией {{ .license }}. См. {{ .notice }}." +post_upstream_notice: "авторство" +post_upstream_history: "история изменений" +post_translated: "Эта страница — перевод; при расхождениях действует {{ .original }}." +post_translated_original: "оригинал" +post_edit_this: "Редактировать страницу" +post_view_markdown: "Посмотреть Markdown" +post_create_child_page: "Создать вложенную страницу" +post_create_issue: "Создать задачу по документации" +post_create_project_issue: "Создать задачу по проекту" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "Автор: {{ .Authors }} · Раздел: {{ .Section }}" +post_meta_in: "Раздел: {{ .Section }}" +post_reading_time: "мин. чтения" +post_less_than_a_minute_read: "меньше минуты" +post_word_count: "Слов: {{ .Count }}" +post_reading_minutes: "{{ .Minutes }} мин" +post_read_original: "Читать оригинал" # Print support -print_printable_section: Это многостраничный печатный вид текущего раздела. -print_click_to_print: Нажмите, чтобы распечатать -print_show_regular: Вернуться к обычному просмотру страницы -print_entire_section: Распечатать весь раздел - +print_printable_section: "Это многостраничный печатный вид раздела." +print_click_to_print: "Нажмите, чтобы распечатать" +print_show_regular: "Вернуться к обычному просмотру страницы" +print_entire_section: "Печатать весь раздел" # Feedback -feedback_question: Эта страница была полезна? -feedback_positive: Да -feedback_negative: Нет - +feedback_question: "Эта страница была полезна?" +feedback_positive: "Да" +feedback_negative: "Нет" +feedback_thanks: "Спасибо — ваш отзыв помогает улучшить эту страницу." +feedback_reason_prompt: "Что помешало? (необязательно)" +feedback_reason_missing: "Отсутствует информация" +feedback_reason_outdated: "Неверно или устарело" +feedback_reason_failed: "Шаги не сработали" +feedback_reason_unclear: "Сложно понять" +feedback_details: "Добавьте детали в комментарии" +feedback_change: "Изменить ответ" # Table of contents -toc_on_this_page: На этой странице - -# Replace these values with reviewed translations when available. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +toc_on_this_page: "На этой странице" +# Error pages +error_404_title: "Страница не найдена" +error_404_body: "Извините, такой страницы не существует. Попробуйте начать с главной страницы." +error_404_home: "Перейти на главную страницу" +# Version banner +version_banner_archived: "Версия {{ .Version }} документации больше не поддерживается. Текущий сайт — архивная копия." +version_banner_latest: "Актуальная документация: {{ .Link }}." +version_banner_latest_link: "последняя версия" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "Для загрузки комментариев требуется JavaScript." +comments_noscript_link: "Просмотреть обсуждения на GitHub." +# LLM page actions +ui_open_in_prompt_label: "Задать вопрос по этой странице" +ui_view_history: "Просмотреть историю изменений" +ui_table_scroll: "Таблица с прокруткой" +ui_filetree_divider: "Изменить ширину колонки комментариев рядом с деревом файлов" +book_figure: "Рисунок" +book_table: "Таблица" +book_equation: "Уравнение" +book_example: "Пример" +book_toc: "Оглавление книги" +book_draft: "Черновик" +book_draft_notice: "Эта глава всё ещё редактируется." +contributors_count: "участников" +# Article series +ui_series_title: "Серия" +ui_series_part: "Часть {{ .Part }} из {{ .Total }}" +# Markdown output +markdown_llms_index: "Индекс LLMS:" +markdown_section_pages: "Страницы раздела:" +markdown_backlinks: "Обратные ссылки:" diff --git a/i18n/sr-cyrl.yaml b/i18n/sr-cyrl.yaml index f320c2e..fcffe5b 100644 --- a/i18n/sr-cyrl.yaml +++ b/i18n/sr-cyrl.yaml @@ -1,293 +1,207 @@ # Alert labels -callout_caution: Опрез -callout_important: Важно -callout_note: Белешка -callout_tip: Савет -callout_warning: Упозорење - +callout_caution: "Опрез" +callout_important: "Важно" +callout_note: "Белешка" +callout_tip: "Савет" +callout_warning: "Упозорење" +callout_success: "Успех" +callout_danger: "Опасност" +callout_question: "Питање" +callout_example: "Пример" +callout_quote: "Цитат" +callout_details: "Детаљи" # UI strings. Buttons and similar. -ui_pager_prev: Претходно -ui_pager_next: Наредно -ui_search: Претражите сајт… - +ui_pager_prev: "Претходно" +ui_pager_next: "Наредно" +ui_search: "Претражите сајт…" +ui_search_empty: "Ниједан резултат није пронађен" +ui_search_loading: "Учитавање индекса претраге…" +ui_search_results: "{count} резултата пронађено" +ui_search_nav: "Навигација" +ui_search_open: "Отвори" +ui_search_close: "Затвори" +ui_palette_actions: "Акције" +ui_palette_page_actions: "Акције стране" +ui_palette_preferences: "Подешавања" +ui_palette_commands: "Команде" +ui_palette_quick_links: "Брзе везе" +ui_palette_no_commands: "Нема поклапајућих команда" +ui_palette_choose: "Изаберите опцију" +ui_palette_action_failed: "Акција није могла бити завршена" +ui_palette_pages: "Странице" +ui_palette_index_unavailable: "Индекс стране није доступан; акције и даље функционишу" +ui_sidebar_nav: "Навигација секције" +ui_heading_self_link: "Веза на овај наслов" +ui_field_self_link: "Веза на ово поље" +ui_preview_source: "Markdown" +ui_preview_rendered: "Приказ" +ui_main_nav: "Главна навигација" +ui_home: "Почетна" +ui_sidebar_expand: "Прошири бочну траку" +ui_sidebar_collapse: "Скупи бочну траку" +ui_drawer_open: "Отвори навигацију" +ui_drawer_close: "Затвори навигацију" +ui_root_menu_label: "Изаберите секцију" +ui_tags_title: "Ознаке" +ui_tag_title: "Ознака" +ui_categories_title: "Категорије" +ui_category_title: "Категорија" +ui_modules_title: "Модули" +ui_module_title: "Модул" +ui_authors_title: "Аутори" +ui_author_title: "Аутор" +ui_theme_toggle: "Промени тему боја" +ui_theme_auto: "Систем" +ui_theme_light: "Светла" +ui_theme_dark: "Тамна" +ui_toc_hide: "Сакриј садржај" +ui_toc_show: "Прикажи садржај" +ui_language_select: "Изаберите језик" +ui_language_switch: "Промени језик" +ui_skip_to_content: "Прескочи на садржај" +ui_page_actions: "Акције" +ui_open_in_chatgpt: "Отвори у ChatGPT" +ui_open_in_claude: "Отвори у Claude" +ui_open_in_prompt: "Прочитајте %s да бих могао да постављам питања о томе." +ui_copy_markdown: "Копирај Markdown" +ui_copy_success: "Markdown је копиран" +ui_copy_error: "Није могуће копирати Markdown" +ui_share: "Подели" +ui_share_email: "Е-пошта" +ui_copy_link: "Копирај везу" +ui_copy_link_success: "Веза је копирана" +ui_copy_link_error: "Није могуће копирати везу" +ui_code_copy_label: "Копирај код" +ui_code_copied: "Копирано" +ui_code_copy_error: "Копирање није успело" +ui_code_show_all: "Прикажи све {{ .Count }} линије" +ui_code_collapse: "Скупи код" +ui_tabs_label: "Картице" +ui_pricing_featured: "Препоручено" +ui_pricing_included: "Укључено" +ui_pricing_excluded: "Није укључено" +ui_marquee_pause: "Паузирај кретање" +ui_kbd_with: "са" +ui_keyboard_shortcuts: "Пречице на тастатури" +ui_shortcut_tree_move: "Кретање кроз бочну траку" +ui_shortcut_tree_toggle: "Скупи или прошири секцију" +ui_shortcut_tree_open: "Отвори фокусирану страницу" +ui_shortcut_heading_move: "Претходни или следећи наслов" +ui_shortcut_page_move: "Претходна или следећа страница" +ui_shortcut_search: "Претражи" +ui_shortcut_commands: "Палета команди" +ui_shortcut_reading_mode: "Режим читања" +ui_shortcut_language: "Промени језик" +ui_shortcut_theme: "Промени тему" +ui_shortcut_route: "Пређи између страница највишег нивоа" +ui_page_annotation: "Информације о страници" +ui_backlinks: "Повратне везе" +ui_backlinks_more: "Прикажи још {{ . }}" +ui_field_required: "обавезно" +ui_action_unavailable: "недоступно" +ui_image_zoom_dialog: "Преглед слике" +ui_image_zoom_open: "Отвори преглед слике" +ui_image_zoom_close: "Затвори преглед слике" +ui_diagram_expand: "Увећај дијаграм" +ui_diagram_zoom_dialog: "Преглед дијаграма" +ui_diagram_zoom_close: "Затвори преглед дијаграма" +ui_diagram_zoom_in: "Увећај" +ui_diagram_zoom_out: "Умањи" +ui_diagram_zoom_reset: "Ресетуј приказ" +ui_diagram_error: "Дијаграм није могао бити приказан" +ui_print_page: "Штампај ову страницу" +ui_sidebar_expand_section: "Прошири секцију" +ui_sidebar_collapse_section: "Скупи секцију" +ui_asciinema_timer: "Време плејбека" +ui_openapi_spec: "OpenAPI спецификација" +ui_release_view: "Погледај издање" +ui_release_source: "Извор" +ui_release_released: "Објављено" +ui_assets_file: "Датотека" +ui_assets_checksum: "Контролни збир" +ui_assets_copy: "Копирај контролни збир" +ui_assets_copied: "Копирано" +ui_assets_copy_all: "Копирај све контролне збирове" +ui_assets_download: "Преузми датотеку" +ui_download_channels: "Канали преузимања" +ui_download_unpublished: "Чека на издање" # Used in sentences such as "All Tags" -ui_all: све - +ui_all: "све" +ui_list_separator: ", " +ui_blog_index_toggle: "Промени распоред" # Footer text -footer_all_rights_reserved: Сва права задржана - +footer_all_rights_reserved: "Сва права задржана" +ui_footer_collapse: "Сакриј везе у подножју" +ui_footer_expand: "Прикажи везе у подножју" # Post (blog, article, etc.) -post_last_mod: Последњи пут измењено -post_edit_this: Уредите ову страницу -post_view_markdown: Погледајте Markdown -post_create_child_page: Креирајте подстраницу -post_create_issue: Креирајте issue за документацију -post_create_project_issue: Креирајте issue за пројекат -post_reading_time: минута за читање -post_less_than_a_minute_read: мање од минута за читање - +post_last_mod: "Последњи пут измењено" +post_upstream: "{{ .work }}, {{ .copyright }}, под лиценцом {{ .license }}. Види {{ .notice }}." +post_upstream_adapted: "Прилагођено из {{ .work }}, {{ .copyright }}, под лиценцом {{ .license }}. Види {{ .notice }} и {{ .history }}." +post_upstream_adapted_plain: "Прилагођено из {{ .work }}, {{ .copyright }}, под лиценцом {{ .license }}. Види {{ .notice }}." +post_upstream_notice: "ауторство" +post_upstream_history: "историја промена" +post_translated: "Ова страница је превод; {{ .original }} је меродаван." +post_translated_original: "оригинал" +post_edit_this: "Уредите ову страницу" +post_view_markdown: "Погледајте Markdown" +post_create_child_page: "Креирајте подстраницу" +post_create_issue: "Направи пријаву за документацију" +post_create_project_issue: "Направи пријаву за пројекат" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "Аутор: {{ .Authors }} · Одељак: {{ .Section }}" +post_meta_in: "У: {{ .Section }}" +post_reading_time: "минута за читање" +post_less_than_a_minute_read: "мање од минута за читање" +post_word_count: "{{ .Count }} речи" +post_reading_minutes: "{{ .Minutes }} мин" +post_read_original: "Прочитајте више" # Print support -print_printable_section: Ово је вишестрани преглед за штампање ове секције. -print_click_to_print: Кликните овде за штампање -print_show_regular: Повратак на обичан преглед ове странице -print_entire_section: Одштампајте читаву секцију - +print_printable_section: "Ово је вишестранични приказ за штампу овог одељка." +print_click_to_print: "Кликните овде за штампање" +print_show_regular: "Повратак на обичан преглед ове странице" +print_entire_section: "Одштампај цео одељак" # Feedback -feedback_question: Да ли вам је ова страница била од помоћи? -feedback_positive: Да -feedback_negative: Не - +feedback_question: "Да ли вам је ова страница била од помоћи?" +feedback_positive: "Да" +feedback_negative: "Не" +feedback_thanks: "Хвала — ваша повратна информација помаже у побољшању ове странице." +feedback_reason_prompt: "Шта је представљало проблем? (необавезно)" +feedback_reason_missing: "Недостаје информација" +feedback_reason_outdated: "Нетачно или застарело" +feedback_reason_failed: "Кораци нису функционисали" +feedback_reason_unclear: "Тешко разумљиво" +feedback_details: "Додајте детаље у коментарима" +feedback_change: "Промени одговор" # Table of contents -toc_on_this_page: На овој страници - -# Replace these values with reviewed translations when available. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +toc_on_this_page: "На овој страници" +# Error pages +error_404_title: "Страница није пронађена" +error_404_body: "Жао нам је, ова страница не постоји. Покушајте поново са Почетне странице." +error_404_home: "Иди на Почетну страницу" +# Version banner +version_banner_archived: "Верзија {{ .Version }} документације више се не одржава активно. Сајт који тренутно прегледате је архивирана копија." +version_banner_latest: "Ажурна документација: {{ .Link }}." +version_banner_latest_link: "најновија верзија" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "За учитавање коментара потребан је JavaScript." +comments_noscript_link: "Погледајте дискусије на GitHub-у." +# LLM page actions +ui_open_in_prompt_label: "Питајте о овој страници" +ui_view_history: "Погледајте историју измена" +ui_table_scroll: "Табела са померањем" +ui_filetree_divider: "Промени ширину колоне за коментаре поред стабла датотека" +book_figure: "Слика" +book_table: "Табела" +book_equation: "Једначина" +book_example: "Пример" +book_toc: "Садржај књиге" +book_draft: "Нацрт" +book_draft_notice: "Ова глава је још у току уређивања." +contributors_count: "сарадника" +# Article series +ui_series_title: "Серија" +ui_series_part: "Део {{ .Part }} од {{ .Total }}" +# Markdown output +markdown_llms_index: "LLMS индекс:" +markdown_section_pages: "Странице секције:" +markdown_backlinks: "Повратне везе:" diff --git a/i18n/sr-latn.yaml b/i18n/sr-latn.yaml index 95d72df..914d726 100644 --- a/i18n/sr-latn.yaml +++ b/i18n/sr-latn.yaml @@ -1,293 +1,207 @@ # Alert labels -callout_caution: Oprez -callout_important: Važno -callout_note: Beleška -callout_tip: Savet -callout_warning: Upozorenje - +callout_caution: "Oprez" +callout_important: "Važno" +callout_note: "Beleška" +callout_tip: "Savet" +callout_warning: "Upozorenje" +callout_success: "Uspeh" +callout_danger: "Opasnost" +callout_question: "Pitanje" +callout_example: "Primer" +callout_quote: "Citat" +callout_details: "Detalji" # UI strings. Buttons and similar. -ui_pager_prev: Prethodno -ui_pager_next: Naredno -ui_search: Pretražite sajt… - +ui_pager_prev: "Prethodno" +ui_pager_next: "Naredno" +ui_search: "Pretražite sajt…" +ui_search_empty: "Nijedan rezultat nije pronađen" +ui_search_loading: "Učitavanje indeksa pretrage…" +ui_search_results: "{count} rezultata pronađeno" +ui_search_nav: "Navigacija" +ui_search_open: "Otvori" +ui_search_close: "Zatvori" +ui_palette_actions: "Akcije" +ui_palette_page_actions: "Akcije strane" +ui_palette_preferences: "Podešavanja" +ui_palette_commands: "Komande" +ui_palette_quick_links: "Brze veze" +ui_palette_no_commands: "Nema poklapajućih komanda" +ui_palette_choose: "Izaberite opciju" +ui_palette_action_failed: "Akcija nije mogla biti završena" +ui_palette_pages: "Stranice" +ui_palette_index_unavailable: "Indeks strane nije dostupan; akcije i dalje funkcionišu" +ui_sidebar_nav: "Navigacija sekcije" +ui_heading_self_link: "Veza na ovaj naslov" +ui_field_self_link: "Veza na ovo polje" +ui_preview_source: "Markdown" +ui_preview_rendered: "Prikaz" +ui_main_nav: "Glavna navigacija" +ui_home: "Početna" +ui_sidebar_expand: "Proširi bočnu traku" +ui_sidebar_collapse: "Skupi bočnu traku" +ui_drawer_open: "Otvori navigaciju" +ui_drawer_close: "Zatvori navigaciju" +ui_root_menu_label: "Izaberite sekciju" +ui_tags_title: "Oznake" +ui_tag_title: "Oznaka" +ui_categories_title: "Kategorije" +ui_category_title: "Kategorija" +ui_modules_title: "Moduli" +ui_module_title: "Modul" +ui_authors_title: "Autori" +ui_author_title: "Autor" +ui_theme_toggle: "Promeni temu boja" +ui_theme_auto: "Sistem" +ui_theme_light: "Svetla" +ui_theme_dark: "Tamna" +ui_toc_hide: "Sakrij sadržaj" +ui_toc_show: "Prikaži sadržaj" +ui_language_select: "Izaberite jezik" +ui_language_switch: "Promeni jezik" +ui_skip_to_content: "Preskoči na sadržaj" +ui_page_actions: "Akcije" +ui_open_in_chatgpt: "Otvori u ChatGPT" +ui_open_in_claude: "Otvori u Claude" +ui_open_in_prompt: "Pročitajte %s da bih mogao da postavljam pitanja o tome." +ui_copy_markdown: "Kopiraj Markdown" +ui_copy_success: "Markdown je kopiran" +ui_copy_error: "Nije moguće kopirati Markdown" +ui_share: "Podeli" +ui_share_email: "E-pošta" +ui_copy_link: "Kopiraj vezu" +ui_copy_link_success: "Veza je kopirana" +ui_copy_link_error: "Nije moguće kopirati vezu" +ui_code_copy_label: "Kopiraj kod" +ui_code_copied: "Kopirano" +ui_code_copy_error: "Kopiranje nije uspelo" +ui_code_show_all: "Prikaži sve {{ .Count }} linije" +ui_code_collapse: "Skupi kod" +ui_tabs_label: "Kartice" +ui_pricing_featured: "Preporučeno" +ui_pricing_included: "Uključeno" +ui_pricing_excluded: "Nije uključeno" +ui_marquee_pause: "Pauziraj kretanje" +ui_kbd_with: "sa" +ui_keyboard_shortcuts: "Prečice na tastaturi" +ui_shortcut_tree_move: "Kretanje kroz bočnu traku" +ui_shortcut_tree_toggle: "Skupi ili proširi sekciju" +ui_shortcut_tree_open: "Otvori fokusiranu stranicu" +ui_shortcut_heading_move: "Prethodni ili sledeći naslov" +ui_shortcut_page_move: "Prethodna ili sledeća stranica" +ui_shortcut_search: "Pretraži" +ui_shortcut_commands: "Paleta komandi" +ui_shortcut_reading_mode: "Režim čitanja" +ui_shortcut_language: "Promeni jezik" +ui_shortcut_theme: "Promeni temu" +ui_shortcut_route: "Pređi između stranica najvišeg nivoa" +ui_page_annotation: "Informacije o stranici" +ui_backlinks: "Povratne veze" +ui_backlinks_more: "Prikaži još {{ . }}" +ui_field_required: "obavezno" +ui_action_unavailable: "nedostupno" +ui_image_zoom_dialog: "Pregled slike" +ui_image_zoom_open: "Otvori pregled slike" +ui_image_zoom_close: "Zatvori pregled slike" +ui_diagram_expand: "Uvećaj dijagram" +ui_diagram_zoom_dialog: "Pregled dijagrama" +ui_diagram_zoom_close: "Zatvori pregled dijagrama" +ui_diagram_zoom_in: "Uvećaj" +ui_diagram_zoom_out: "Umanji" +ui_diagram_zoom_reset: "Resetuj prikaz" +ui_diagram_error: "Dijagram nije mogao biti prikazan" +ui_print_page: "Štampaj ovu stranicu" +ui_sidebar_expand_section: "Proširi sekciju" +ui_sidebar_collapse_section: "Skupi sekciju" +ui_asciinema_timer: "Vreme plejbeka" +ui_openapi_spec: "OpenAPI specifikacija" +ui_release_view: "Pogledaj izdanje" +ui_release_source: "Izvor" +ui_release_released: "Objavljeno" +ui_assets_file: "Datoteka" +ui_assets_checksum: "Kontrolni zbir" +ui_assets_copy: "Kopiraj kontrolni zbir" +ui_assets_copied: "Kopirano" +ui_assets_copy_all: "Kopiraj sve kontrolne zbirove" +ui_assets_download: "Preuzmi datoteku" +ui_download_channels: "Kanali preuzimanja" +ui_download_unpublished: "Čeka na izdanje" # Used in sentences such as "All Tags" -ui_all: sve - +ui_all: "sve" +ui_list_separator: ", " +ui_blog_index_toggle: "Promeni raspored" # Footer text -footer_all_rights_reserved: Sva prava zadržana - +footer_all_rights_reserved: "Sva prava zadržana" +ui_footer_collapse: "Sakrij veze u podnožju" +ui_footer_expand: "Prikaži veze u podnožju" # Post (blog, article, etc.) -post_last_mod: Poslednji put izmenjeno -post_edit_this: Uredite ovu stranicu -post_view_markdown: Pogledajte Markdown -post_create_child_page: Kreirajte podstranicu -post_create_issue: Kreirajte issue za dokumentaciju -post_create_project_issue: Kreirajte issue za projekat -post_reading_time: minuta za čitanje -post_less_than_a_minute_read: manje od minuta za čitanje - +post_last_mod: "Poslednji put izmenjeno" +post_upstream: "{{ .work }}, {{ .copyright }}, pod licencom {{ .license }}. Vidi {{ .notice }}." +post_upstream_adapted: "Prilagođeno iz {{ .work }}, {{ .copyright }}, pod licencom {{ .license }}. Vidi {{ .notice }} i {{ .history }}." +post_upstream_adapted_plain: "Prilagođeno iz {{ .work }}, {{ .copyright }}, pod licencom {{ .license }}. Vidi {{ .notice }}." +post_upstream_notice: "autorstvo" +post_upstream_history: "istorija promena" +post_translated: "Ova stranica je prevod; {{ .original }} je merodavan." +post_translated_original: "original" +post_edit_this: "Uredite ovu stranicu" +post_view_markdown: "Pogledajte Markdown" +post_create_child_page: "Kreirajte podstranicu" +post_create_issue: "Napravi prijavu za dokumentaciju" +post_create_project_issue: "Napravi prijavu za projekat" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "Autor: {{ .Authors }} · Odeljak: {{ .Section }}" +post_meta_in: "U: {{ .Section }}" +post_reading_time: "minuta za čitanje" +post_less_than_a_minute_read: "manje od minuta za čitanje" +post_word_count: "{{ .Count }} reči" +post_reading_minutes: "{{ .Minutes }} min" +post_read_original: "Pročitajte više" # Print support -print_printable_section: Ovo je višestrani pregled za štampanje ove sekcije. -print_click_to_print: Kliknite ovde za štampanje -print_show_regular: Povratak na običan pregled ove stranice -print_entire_section: Odštampajte čitavu sekciju - +print_printable_section: "Ovo je višestranični prikaz za štampu ovog odeljka." +print_click_to_print: "Kliknite ovde za štampanje" +print_show_regular: "Povratak na običan pregled ove stranice" +print_entire_section: "Odštampaj ceo odeljak" # Feedback -feedback_question: Da li vam je ova stranica bila od pomoći? -feedback_positive: Da -feedback_negative: Ne - +feedback_question: "Da li vam je ova stranica bila od pomoći?" +feedback_positive: "Da" +feedback_negative: "Ne" +feedback_thanks: "Hvala — vaša povratna informacija pomaže u poboljšanju ove stranice." +feedback_reason_prompt: "Šta je predstavljalo problem? (neobavezno)" +feedback_reason_missing: "Nedostaje informacija" +feedback_reason_outdated: "Netačno ili zastarelo" +feedback_reason_failed: "Koraci nisu funkcionisali" +feedback_reason_unclear: "Teško razumljivo" +feedback_details: "Dodajte detalje u komentarima" +feedback_change: "Promeni odgovor" # Table of contents -toc_on_this_page: Na ovoj stranici - -# Replace these values with reviewed translations when available. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +toc_on_this_page: "Na ovoj stranici" +# Error pages +error_404_title: "Stranica nije pronađena" +error_404_body: "Žao nam je, ova stranica ne postoji. Pokušajte ponovo sa Početne stranice." +error_404_home: "Idi na Početnu stranicu" +# Version banner +version_banner_archived: "Verzija {{ .Version }} dokumentacije više se ne održava aktivno. Sajt koji trenutno pregledate je arhivirana kopija." +version_banner_latest: "Ažurna dokumentacija: {{ .Link }}." +version_banner_latest_link: "najnovija verzija" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "Za učitavanje komentara potreban je JavaScript." +comments_noscript_link: "Pogledajte diskusije na GitHub-u." +# LLM page actions +ui_open_in_prompt_label: "Pitajte o ovoj stranici" +ui_view_history: "Pogledajte istoriju izmena" +ui_table_scroll: "Tabela sa pomeranjem" +ui_filetree_divider: "Promeni širinu kolone za komentare pored stabla datoteka" +book_figure: "Slika" +book_table: "Tabela" +book_equation: "Jednačina" +book_example: "Primer" +book_toc: "Sadržaj knjige" +book_draft: "Nacrt" +book_draft_notice: "Ova glava je još u toku uređivanja." +contributors_count: "saradnika" +# Article series +ui_series_title: "Serija" +ui_series_part: "Deo {{ .Part }} od {{ .Total }}" +# Markdown output +markdown_llms_index: "LLMS indeks:" +markdown_section_pages: "Stranice sekcije:" +markdown_backlinks: "Povratne veze:" diff --git a/i18n/sv.yaml b/i18n/sv.yaml index 661e401..2d4c018 100644 --- a/i18n/sv.yaml +++ b/i18n/sv.yaml @@ -1,294 +1,207 @@ +# Alert labels +callout_caution: "Observera" +callout_important: "Viktigt" +callout_note: "Obs" +callout_tip: "Tips" +callout_warning: "Varning" +callout_success: "Lyckat" +callout_danger: "Farligt" +callout_question: "Fråga" +callout_example: "Exempel" +callout_quote: "Citat" +callout_details: "Detaljer" # UI strings. Buttons and similar. -ui_pager_prev: Tidigare -ui_pager_next: Nästa -ui_search: Sök denna sida… - +ui_pager_prev: "Föregående" +ui_pager_next: "Nästa" +ui_search: "Sök…" +ui_search_empty: "Inga resultat hittades" +ui_search_loading: "Laddar sökindex…" +ui_search_results: "{count} resultat hittades" +ui_search_nav: "Navigera" +ui_search_open: "Öppna" +ui_search_close: "Stäng" +ui_palette_actions: "Handlingar" +ui_palette_page_actions: "Sidhandlingar" +ui_palette_preferences: "Inställningar" +ui_palette_commands: "Kommandon" +ui_palette_quick_links: "Snabblänkar" +ui_palette_no_commands: "Inga kommandon matchar" +ui_palette_choose: "Välj ett alternativ" +ui_palette_action_failed: "Handlingen kunde inte slutföras" +ui_palette_pages: "Sidor" +ui_palette_index_unavailable: "Sidindex inte tillgängligt; handlingar fungerar fortfarande" +ui_sidebar_nav: "Avsnittsnavigering" +ui_heading_self_link: "Länk till denna rubrik" +ui_field_self_link: "Länk till detta fält" +ui_preview_source: "Markdown" +ui_preview_rendered: "Renderad" +ui_main_nav: "Huvudnavigering" +ui_home: "Hem" +ui_sidebar_expand: "Expandera sidofältet" +ui_sidebar_collapse: "Fäll ihop sidofältet" +ui_drawer_open: "Öppna navigering" +ui_drawer_close: "Stäng navigering" +ui_root_menu_label: "Välj avsnitt" +ui_tags_title: "Taggar" +ui_tag_title: "Tagg" +ui_categories_title: "Kategorier" +ui_category_title: "Kategori" +ui_modules_title: "Moduler" +ui_module_title: "Modul" +ui_authors_title: "Författare" +ui_author_title: "Författare" +ui_theme_toggle: "Växla färgtema" +ui_theme_auto: "System" +ui_theme_light: "Ljust" +ui_theme_dark: "Mörkt" +ui_toc_hide: "Dölj innehållsförteckning" +ui_toc_show: "Visa innehållsförteckning" +ui_language_select: "Välj språk" +ui_language_switch: "Byt språk" +ui_skip_to_content: "Hoppa till innehåll" +ui_page_actions: "Handlingar" +ui_open_in_chatgpt: "Öppna i ChatGPT" +ui_open_in_claude: "Öppna i Claude" +ui_open_in_prompt: "Läs från %s så jag kan ställa frågor om det." +ui_copy_markdown: "Kopiera Markdown" +ui_copy_success: "Markdown kopierat" +ui_copy_error: "Kunde inte kopiera Markdown" +ui_share: "Dela" +ui_share_email: "E-post" +ui_copy_link: "Kopiera länk" +ui_copy_link_success: "Länk kopierad" +ui_copy_link_error: "Kunde inte kopiera länken" +ui_code_copy_label: "Kopiera kod" +ui_code_copied: "Kopierat" +ui_code_copy_error: "Kopiering misslyckades" +ui_code_show_all: "Visa alla {{ .Count }} rader" +ui_code_collapse: "Dölj kod" +ui_tabs_label: "Flikar" +ui_pricing_featured: "Rekommenderat" +ui_pricing_included: "Inkluderat" +ui_pricing_excluded: "Inte inkluderat" +ui_marquee_pause: "Pausa rörelse" +ui_kbd_with: "med" +ui_keyboard_shortcuts: "Tangentbordsgenvägar" +ui_shortcut_tree_move: "Flytta genom sidofältet" +ui_shortcut_tree_toggle: "Växla mellan utvidgat och komprimerat avsnitt" +ui_shortcut_tree_open: "Öppna sidan som har fokus" +ui_shortcut_heading_move: "Föregående eller nästa rubrik" +ui_shortcut_page_move: "Föregående eller nästa sida" +ui_shortcut_search: "Sök" +ui_shortcut_commands: "Kommandopalett" +ui_shortcut_reading_mode: "Läsläge" +ui_shortcut_language: "Byt språk" +ui_shortcut_theme: "Byt tema" +ui_shortcut_route: "Växla mellan huvudsidor" +ui_page_annotation: "Sidinformation" +ui_backlinks: "Återlänkar" +ui_backlinks_more: "Visa {{ . }} till" +ui_field_required: "obligatoriskt" +ui_action_unavailable: "ej tillgängligt" +ui_image_zoom_dialog: "Bildförhandsgranskning" +ui_image_zoom_open: "Öppna bildförhandsgranskning" +ui_image_zoom_close: "Stäng bildförhandsgranskning" +ui_diagram_expand: "Förstora diagram" +ui_diagram_zoom_dialog: "Diagramförhandsgranskning" +ui_diagram_zoom_close: "Stäng diagramförhandsgranskning" +ui_diagram_zoom_in: "Zooma in" +ui_diagram_zoom_out: "Zooma ut" +ui_diagram_zoom_reset: "Återställ vy" +ui_diagram_error: "Diagrammet kunde inte renderas" +ui_print_page: "Skriv ut denna sida" +ui_sidebar_expand_section: "Expandera avsnitt" +ui_sidebar_collapse_section: "Dölj avsnitt" +ui_asciinema_timer: "Återgivningstid" +ui_openapi_spec: "OpenAPI-specifikation" +ui_release_view: "Visa utgåva" +ui_release_source: "Källa" +ui_release_released: "Släppt" +ui_assets_file: "Fil" +ui_assets_checksum: "Kontrollsumma" +ui_assets_copy: "Kopiera kontrollsumma" +ui_assets_copied: "Kopierat" +ui_assets_copy_all: "Kopiera alla kontrollsummor" +ui_assets_download: "Ladda ner fil" +ui_download_channels: "Nedladdningskanaler" +ui_download_unpublished: "Väntande släpp" # Used in sentences such as "All Tags" -ui_all: alla - +ui_all: "alla" +ui_list_separator: ", " +ui_blog_index_toggle: "Byt layout" # Footer text -footer_all_rights_reserved: Alla rättigheter förbehållna - +footer_all_rights_reserved: "Alla rättigheter förbehållna" +ui_footer_collapse: "Dölj sidfotslänkar" +ui_footer_expand: "Visa sidfotslänkar" # Post (blog, article, etc.) -post_last_mod: Senast ändrad -post_edit_this: Redigera sida -post_view_markdown: Visa Markdown -post_create_child_page: Skapa barnsida -post_create_issue: Skapa dokumentationsfråga -post_create_project_issue: Skapa projektfråga -post_reading_time: minuter läst -post_less_than_a_minute_read: mindre än en minut - +post_last_mod: "Senast ändrad" +post_upstream: "{{ .work }}, {{ .copyright }}, licensierat under {{ .license }}. Se {{ .notice }}." +post_upstream_adapted: "Anpassat från {{ .work }}, {{ .copyright }}, licensierat under {{ .license }}. Se {{ .notice }} och {{ .history }}." +post_upstream_adapted_plain: "Anpassat från {{ .work }}, {{ .copyright }}, licensierat under {{ .license }}. Se {{ .notice }}." +post_upstream_notice: "källangivelse" +post_upstream_history: "ändringshistorik" +post_translated: "Den här sidan är en översättning; {{ .original }} gäller." +post_translated_original: "originalet" +post_edit_this: "Redigera sida" +post_view_markdown: "Visa Markdown" +post_create_child_page: "Skapa undersida" +post_create_issue: "Skapa dokumentationsärende" +post_create_project_issue: "Skapa projektärende" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "Av {{ .Authors }} · I {{ .Section }}" +post_meta_in: "I {{ .Section }}" +post_reading_time: "min lästid" +post_less_than_a_minute_read: "mindre än en minut" +post_word_count: "{{ .Count }} ord" +post_reading_minutes: "{{ .Minutes }} min" +post_read_original: "Läs mer" # Print support -print_printable_section: >- - Detta är den flersidiga utskrivbara vyn av detta avsnitt. -print_click_to_print: Klicka här för att skriva ut -print_show_regular: Återgå till den vanliga vyn på denna sida -print_entire_section: Skriv ut hela avsnittet - -# Replace these values with reviewed translations when available. -callout_caution: Caution -callout_important: Important -callout_note: Note -callout_tip: Tip -callout_warning: Warning - -# UI strings. Buttons and similar. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -feedback_question: Was this page helpful? -feedback_positive: Yes -feedback_negative: No - +print_printable_section: "Detta är den flersidiga utskrivbara versionen av detta avsnitt." +print_click_to_print: "Klicka här för att skriva ut" +print_show_regular: "Återgå till den vanliga vyn på denna sida" +print_entire_section: "Skriv ut hela avsnittet" +# Feedback +feedback_question: "Var den här sidan till hjälp?" +feedback_positive: "Ja" +feedback_negative: "Nej" +feedback_thanks: "Tack—din återkoppling hjälper oss att förbättra den här sidan." +feedback_reason_prompt: "Vad störde dig? (valfritt)" +feedback_reason_missing: "Saknar information" +feedback_reason_outdated: "Felaktig eller föråldrad" +feedback_reason_failed: "Stegen gick inte" +feedback_reason_unclear: "Svårt att förstå" +feedback_details: "Lägg till detaljer i kommentarerna" +feedback_change: "Ändra svar" # Table of contents -toc_on_this_page: Content - +toc_on_this_page: "Innehåll" # Error pages -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +error_404_title: "Sidan hittades inte" +error_404_body: "Tyvärr finns inte denna sida. Försök igen från startsidan." +error_404_home: "Gå till startsidan" +# Version banner +version_banner_archived: "Version {{ .Version }} av dokumentationen underhålls inte längre aktivt. Webbplatsen du ser nu är en arkiverad kopia." +version_banner_latest: "För uppdaterad dokumentation, se {{ .Link }}." +version_banner_latest_link: "senaste versionen" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "JavaScript krävs för att ladda kommentarer." +comments_noscript_link: "Visa diskussioner på GitHub." +# LLM page actions +ui_open_in_prompt_label: "Ställ en fråga om denna sida" +ui_view_history: "Visa redigeringshistorik" +ui_table_scroll: "Rullningsbar tabell" +ui_filetree_divider: "Ändra bredden på kommentarskolumnen bredvid filträdet" +book_figure: "Figur" +book_table: "Tabell" +book_equation: "Ekvation" +book_example: "Exempel" +book_toc: "Bokens innehållsförteckning" +book_draft: "Utkast" +book_draft_notice: "Detta kapitel är fortfarande under revidering." +contributors_count: "bidragsgivare" +# Article series +ui_series_title: "Serie" +ui_series_part: "Del {{ .Part }} av {{ .Total }}" +# Markdown output +markdown_llms_index: "LLMS-index:" +markdown_section_pages: "Avsnittssidor:" +markdown_backlinks: "Återlänkar:" diff --git a/i18n/tr.yaml b/i18n/tr.yaml index 1603b40..877fb0c 100644 --- a/i18n/tr.yaml +++ b/i18n/tr.yaml @@ -1,293 +1,207 @@ +# Alert labels +callout_caution: "Dikkat" +callout_important: "Önemli" +callout_note: "Not" +callout_tip: "İpucu" +callout_warning: "Uyarı" +callout_success: "Başarı" +callout_danger: "Tehlike" +callout_question: "Soru" +callout_example: "Örnek" +callout_quote: "Alıntı" +callout_details: "Ayrıntılar" # UI strings. Buttons and similar. -ui_pager_prev: Önceki -ui_pager_next: Sonraki -ui_search: Bu sitede arayın… - +ui_pager_prev: "Önceki" +ui_pager_next: "Sonraki" +ui_search: "Ara…" +ui_search_empty: "Sonuç bulunamadı" +ui_search_loading: "Arama dizini yükleniyor…" +ui_search_results: "{count} sonuç bulundu" +ui_search_nav: "Gezin" +ui_search_open: "Aç" +ui_search_close: "Kapat" +ui_palette_actions: "Eylemler" +ui_palette_page_actions: "Sayfa eylemleri" +ui_palette_preferences: "Tercihler" +ui_palette_commands: "Komutlar" +ui_palette_quick_links: "Hızlı bağlantılar" +ui_palette_no_commands: "Uyumlu komut bulunamadı" +ui_palette_choose: "Bir seçenek seçin" +ui_palette_action_failed: "Eylem tamamlanamadı" +ui_palette_pages: "Sayfalar" +ui_palette_index_unavailable: "Sayfa dizini kullanılamıyor; eylemler hâlâ çalışır" +ui_sidebar_nav: "Bölüm gezinmesi" +ui_heading_self_link: "Bu başlığa bağlantı" +ui_field_self_link: "Bu alana bağlantı" +ui_preview_source: "Markdown" +ui_preview_rendered: "Görüntülenen" +ui_main_nav: "Ana gezinme" +ui_home: "Ana sayfa" +ui_sidebar_expand: "Kenar çubuğunu genişlet" +ui_sidebar_collapse: "Kenar çubuğunu daralt" +ui_drawer_open: "Gezinmeyi aç" +ui_drawer_close: "Gezinmeyi kapat" +ui_root_menu_label: "Bölüm seçin" +ui_tags_title: "Etiketler" +ui_tag_title: "Etiket" +ui_categories_title: "Kategoriler" +ui_category_title: "Kategori" +ui_modules_title: "Modüller" +ui_module_title: "Modül" +ui_authors_title: "Yazarlar" +ui_author_title: "Yazar" +ui_theme_toggle: "Renk temasını değiştir" +ui_theme_auto: "Sistem" +ui_theme_light: "Açık" +ui_theme_dark: "Koyu" +ui_toc_hide: "İçindekileri gizle" +ui_toc_show: "İçindekileri göster" +ui_language_select: "Dil seçin" +ui_language_switch: "Dili değiştir" +ui_skip_to_content: "İçeriğe geç" +ui_page_actions: "Eylemler" +ui_open_in_chatgpt: "ChatGPT'de aç" +ui_open_in_claude: "Claude'de aç" +ui_open_in_prompt: "%s'den oku ki bu konu hakkında sorular sorabileyim." +ui_copy_markdown: "Markdown kopyala" +ui_copy_success: "Markdown kopyalandı" +ui_copy_error: "Markdown kopyalanamadı" +ui_share: "Paylaş" +ui_share_email: "E-posta" +ui_copy_link: "Bağlantıyı kopyala" +ui_copy_link_success: "Bağlantı kopyalandı" +ui_copy_link_error: "Bağlantı kopyalanamadı" +ui_code_copy_label: "Kodu kopyala" +ui_code_copied: "Kopyalandı" +ui_code_copy_error: "Kopyalama başarısız oldu" +ui_code_show_all: "{{ .Count }} satırı göster" +ui_code_collapse: "Kodu daralt" +ui_tabs_label: "Sekmeler" +ui_pricing_featured: "Tavsiye edilen" +ui_pricing_included: "Dahil" +ui_pricing_excluded: "Dahil değil" +ui_marquee_pause: "Hareketi duraklat" +ui_kbd_with: "ile" +ui_keyboard_shortcuts: "Klavye kısayolları" +ui_shortcut_tree_move: "Kenar çubuğunda gezin" +ui_shortcut_tree_toggle: "Bölümü daralt veya genişlet" +ui_shortcut_tree_open: "Odaktaki sayfayı aç" +ui_shortcut_heading_move: "Önceki veya sonraki başlık" +ui_shortcut_page_move: "Önceki veya sonraki sayfa" +ui_shortcut_search: "Ara" +ui_shortcut_commands: "Komut paleti" +ui_shortcut_reading_mode: "Okuma modu" +ui_shortcut_language: "Dili değiştir" +ui_shortcut_theme: "Temayı değiştir" +ui_shortcut_route: "Üst düzey sayfalar arasında geçiş yap" +ui_page_annotation: "Sayfa bilgisi" +ui_backlinks: "Geri bağlantılar" +ui_backlinks_more: "{{ . }} daha göster" +ui_field_required: "gerekli" +ui_action_unavailable: "kullanılamaz" +ui_image_zoom_dialog: "Resim önizlemesi" +ui_image_zoom_open: "Resim önizlemesini aç" +ui_image_zoom_close: "Resim önizlemesini kapat" +ui_diagram_expand: "Şemayı büyüt" +ui_diagram_zoom_dialog: "Şema önizlemesi" +ui_diagram_zoom_close: "Şema önizlemesini kapat" +ui_diagram_zoom_in: "Yakınlaştır" +ui_diagram_zoom_out: "Uzaklaştır" +ui_diagram_zoom_reset: "Görünümü sıfırla" +ui_diagram_error: "Şema görüntülenemedi" +ui_print_page: "Bu sayfayı yazdır" +ui_sidebar_expand_section: "Bölümü aç" +ui_sidebar_collapse_section: "Bölümü kapat" +ui_asciinema_timer: "Oynatma süresi" +ui_openapi_spec: "OpenAPI belirtimi" +ui_release_view: "Sürümü görüntüle" +ui_release_source: "Kaynak" +ui_release_released: "Yayınlandı" +ui_assets_file: "Dosya" +ui_assets_checksum: "Kontrol toplamı" +ui_assets_copy: "Kontrol toplamını kopyala" +ui_assets_copied: "Kopyalandı" +ui_assets_copy_all: "Tüm kontrol toplamlarını kopyala" +ui_assets_download: "Dosyayı indir" +ui_download_channels: "İndirme kanalları" +ui_download_unpublished: "Yayın bekleniyor" # Used in sentences such as "All Tags" -ui_all: tüm - +ui_all: "tüm" +ui_list_separator: ", " +ui_blog_index_toggle: "Düzeni değiştir" # Footer text -footer_all_rights_reserved: Tüm Hakları Saklıdır - +footer_all_rights_reserved: "Tüm Hakları Saklıdır" +ui_footer_collapse: "Alt bilgi bağlantılarını gizle" +ui_footer_expand: "Alt bilgi bağlantılarını göster" # Post (blog, article, etc.) -post_last_mod: Son düzenleme -post_edit_this: Bu sayfayı düzenle -post_view_markdown: Markdown'ı Görüntüle -post_create_child_page: Çocuk sayfası oluştur -post_create_issue: Belge konusu oluştur -post_create_project_issue: Proje konusu oluştur -post_reading_time: minute read -post_less_than_a_minute_read: 1 dakikadan az - +post_last_mod: "Son düzenleme" +post_upstream: "{{ .work }}, {{ .copyright }}, {{ .license }} lisansı altında. {{ .notice }} belgesine bakın." +post_upstream_adapted: "{{ .work }} eserinden uyarlanmıştır, {{ .copyright }}, {{ .license }} lisansı altında. {{ .notice }} ve {{ .history }} belgelerine bakın." +post_upstream_adapted_plain: "{{ .work }} eserinden uyarlanmıştır, {{ .copyright }}, {{ .license }} lisansı altında. {{ .notice }} belgesine bakın." +post_upstream_notice: "kaynak gösterimi" +post_upstream_history: "değişiklik geçmişi" +post_translated: "Bu sayfa bir çeviridir; {{ .original }} esas alınır." +post_translated_original: "orijinal" +post_edit_this: "Bu sayfayı düzenle" +post_view_markdown: "Markdown'ı Görüntüle" +post_create_child_page: "Alt sayfa oluştur" +post_create_issue: "Belgelendirme sorunu oluştur" +post_create_project_issue: "Proje sorunu oluştur" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "{{ .Authors }} tarafından · {{ .Section }} bölümünde" +post_meta_in: "{{ .Section }} içinde" +post_reading_time: "dakikalık okuma" +post_less_than_a_minute_read: "1 dakikadan az okuma" +post_word_count: "{{ .Count }} kelime" +post_reading_minutes: "{{ .Minutes }} dakika" +post_read_original: "Daha fazla oku" # Print support -print_printable_section: Bu bölümün görüntüsü yazdırılabilir. -print_click_to_print: Yazdırmak için tıklayın -print_show_regular: Bu sayfanın normal görüntüsüne dönün -print_entire_section: Bütün bölümü yazıdırın - +print_printable_section: "Bu, bölümün çok sayfalı yazdırma görünümüdür." +print_click_to_print: "Yazdırmak için tıklayın" +print_show_regular: "Bu sayfanın normal görüntüsüne dönün" +print_entire_section: "Bölümün tamamını yazdır" # Feedback -feedback_question: Bu sayfa yararlı oldu mu? -feedback_positive: Evet -feedback_negative: Hayır - -# Replace these values with reviewed translations when available. -callout_caution: Caution -callout_important: Important -callout_note: Note -callout_tip: Tip -callout_warning: Warning - -# UI strings. Buttons and similar. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -toc_on_this_page: Content - +feedback_question: "Bu sayfa yararlı oldu mu?" +feedback_positive: "Evet" +feedback_negative: "Hayır" +feedback_thanks: "Teşekkürler—geri bildiriminiz bu sayfayı iyileştirmemize yardımcı olur." +feedback_reason_prompt: "Ne engelledi? (isteğe bağlı)" +feedback_reason_missing: "Eksik bilgi" +feedback_reason_outdated: "Yanlış veya güncelliğini yitirmiş" +feedback_reason_failed: "Adımlar çalışmadı" +feedback_reason_unclear: "Anlaşılmaz" +feedback_details: "Açıklamalarda detay ekleyin" +feedback_change: "Cevabı değiştir" +# Table of contents +toc_on_this_page: "İçerik" # Error pages -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +error_404_title: "Sayfa bulunamadı" +error_404_body: "Üzgünüz, bu sayfa mevcut değil. Ana sayfadan yeniden başlamayı deneyin." +error_404_home: "Ana sayfaya git" +# Version banner +version_banner_archived: "Belgelerin {{ .Version }} sürümü artık etkin olarak bakım görmüyor. Şu anda görüntülediğiniz site arşivlenmiş bir kopyadır." +version_banner_latest: "Güncel belgeler için {{ .Link }}'e bakın." +version_banner_latest_link: "en son sürüm" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "Yorumları yüklemek için JavaScript gerekir." +comments_noscript_link: "GitHub'da tartışmalara bakın." +# LLM page actions +ui_open_in_prompt_label: "Bu sayfa hakkında soru sor" +ui_view_history: "Düzenleme geçmişi görüntüle" +ui_table_scroll: "Kaydırılabilir tablo" +ui_filetree_divider: "Dosya ağacı yorum sütununu yeniden boyutlandır" +book_figure: "Şekil" +book_table: "Tablo" +book_equation: "Denklem" +book_example: "Örnek" +book_toc: "Kitap içeriği" +book_draft: "Taslak" +book_draft_notice: "Bu bölüm hâlâ güncelleniyor." +contributors_count: "katkıda bulunan" +# Article series +ui_series_title: "Seri" +ui_series_part: "{{ .Total }} içinde {{ .Part }}. kısım" +# Markdown output +markdown_llms_index: "LLMS dizini:" +markdown_section_pages: "Bölüm sayfaları:" +markdown_backlinks: "Geri bağlantılar:" diff --git a/i18n/uk.yaml b/i18n/uk.yaml index 9d41aa5..e95d7b2 100644 --- a/i18n/uk.yaml +++ b/i18n/uk.yaml @@ -1,293 +1,207 @@ +# Alert labels +callout_caution: "Увага" +callout_important: "Важливо" +callout_note: "Примітка" +callout_tip: "Порада" +callout_warning: "Попередження" +callout_success: "Успіх" +callout_danger: "Небезпека" +callout_question: "Питання" +callout_example: "Приклад" +callout_quote: "Цитата" +callout_details: "Деталі" # UI strings. Buttons and similar. -ui_pager_prev: Попередня -ui_pager_next: Наступна -ui_search: Пошук по сайту… - +ui_pager_prev: "Попередня" +ui_pager_next: "Наступна" +ui_search: "Пошук…" +ui_search_empty: "Результатів не знайдено" +ui_search_loading: "Завантаження індексу пошуку…" +ui_search_results: "{count} результатів знайдено" +ui_search_nav: "Перейти" +ui_search_open: "Відкрити" +ui_search_close: "Закрити" +ui_palette_actions: "Дії" +ui_palette_page_actions: "Дії сторінки" +ui_palette_preferences: "Налаштування" +ui_palette_commands: "Команди" +ui_palette_quick_links: "Швидкі посилання" +ui_palette_no_commands: "Не знайдено відповідних команд" +ui_palette_choose: "Виберіть опцію" +ui_palette_action_failed: "Дію не вдалося виконати" +ui_palette_pages: "Сторінки" +ui_palette_index_unavailable: "Індекс сторінок недоступний; дії працюють" +ui_sidebar_nav: "Навігація по розділу" +ui_heading_self_link: "Посилання на цей заголовок" +ui_field_self_link: "Посилання на це поле" +ui_preview_source: "Markdown" +ui_preview_rendered: "Відображення" +ui_main_nav: "Головна навігація" +ui_home: "Головна" +ui_sidebar_expand: "Розгорнути бічну панель" +ui_sidebar_collapse: "Згорнути бічну панель" +ui_drawer_open: "Відкрити навігацію" +ui_drawer_close: "Закрити навігацію" +ui_root_menu_label: "Виберіть розділ" +ui_tags_title: "Теги" +ui_tag_title: "Тег" +ui_categories_title: "Категорії" +ui_category_title: "Категорія" +ui_modules_title: "Модулі" +ui_module_title: "Модуль" +ui_authors_title: "Автори" +ui_author_title: "Автор" +ui_theme_toggle: "Перемкнути колірну тему" +ui_theme_auto: "Системна" +ui_theme_light: "Світла" +ui_theme_dark: "Темна" +ui_toc_hide: "Сховати зміст" +ui_toc_show: "Показати зміст" +ui_language_select: "Виберіть мову" +ui_language_switch: "Перемикнути мову" +ui_skip_to_content: "Перейти до контенту" +ui_page_actions: "Дії" +ui_open_in_chatgpt: "Відкрити в ChatGPT" +ui_open_in_claude: "Відкрити в Claude" +ui_open_in_prompt: "Прочитати %s, щоб я міг ставити запитання про це." +ui_copy_markdown: "Копіювати Markdown" +ui_copy_success: "Markdown скопійовано" +ui_copy_error: "Не вдалося скопіювати Markdown" +ui_share: "Поділитися" +ui_share_email: "Електронна пошта" +ui_copy_link: "Копіювати посилання" +ui_copy_link_success: "Посилання скопійовано" +ui_copy_link_error: "Не вдалося скопіювати посилання" +ui_code_copy_label: "Копіювати код" +ui_code_copied: "Скопійовано" +ui_code_copy_error: "Копіювання не вдалося" +ui_code_show_all: "Показати всі {{ .Count }} рядків" +ui_code_collapse: "Згорнути код" +ui_tabs_label: "Вкладки" +ui_pricing_featured: "Рекомендовано" +ui_pricing_included: "Включено" +ui_pricing_excluded: "Не включено" +ui_marquee_pause: "Пауза руху" +ui_kbd_with: "з" +ui_keyboard_shortcuts: "Гарячі клавіші" +ui_shortcut_tree_move: "Переміщення по бічній панелі" +ui_shortcut_tree_toggle: "Згорнути або розгорнути розділ" +ui_shortcut_tree_open: "Відкрити сторінку, що має фокус" +ui_shortcut_heading_move: "Попередній або наступний заголовок" +ui_shortcut_page_move: "Попередня або наступна сторінка" +ui_shortcut_search: "Пошук" +ui_shortcut_commands: "Палітра команд" +ui_shortcut_reading_mode: "Режим читання" +ui_shortcut_language: "Перемикнути мову" +ui_shortcut_theme: "Перемикнути тему" +ui_shortcut_route: "Перемикатися між сторінками верхнього рівня" +ui_page_annotation: "Інформація про сторінку" +ui_backlinks: "Зворотні посилання" +ui_backlinks_more: "Показати ще {{ . }}" +ui_field_required: "обов’язково" +ui_action_unavailable: "недоступно" +ui_image_zoom_dialog: "Попередній перегляд зображення" +ui_image_zoom_open: "Відкрити попередній перегляд зображення" +ui_image_zoom_close: "Закрити попередній перегляд зображення" +ui_diagram_expand: "Збільшити діаграму" +ui_diagram_zoom_dialog: "Попередній перегляд діаграми" +ui_diagram_zoom_close: "Закрити попередній перегляд діаграми" +ui_diagram_zoom_in: "Збільшити" +ui_diagram_zoom_out: "Зменшити" +ui_diagram_zoom_reset: "Скинути перегляд" +ui_diagram_error: "Діаграму не вдалося відобразити" +ui_print_page: "Друкувати цю сторінку" +ui_sidebar_expand_section: "Розгорнути розділ" +ui_sidebar_collapse_section: "Згорнути розділ" +ui_asciinema_timer: "Час відтворення" +ui_openapi_spec: "Специфікація OpenAPI" +ui_release_view: "Переглянути випуск" +ui_release_source: "Джерело" +ui_release_released: "Опубліковано" +ui_assets_file: "Файл" +ui_assets_checksum: "Контрольна сума" +ui_assets_copy: "Копіювати контрольну суму" +ui_assets_copied: "Скопійовано" +ui_assets_copy_all: "Копіювати всі контрольні суми" +ui_assets_download: "Завантажити файл" +ui_download_channels: "Канали завантаження" +ui_download_unpublished: "Очікує публікації" # Used in sentences such as "All Tags" -ui_all: всі - +ui_all: "всі" +ui_list_separator: ", " +ui_blog_index_toggle: "Перемикнути макет" # Footer text -footer_all_rights_reserved: Усі права захищено - +footer_all_rights_reserved: "Всі права застережено" +ui_footer_collapse: "Сховати посилання в підвалі" +ui_footer_expand: "Показати посилання в підвалі" # Post (blog, article, etc.) -post_last_mod: Востаннє змінено -post_edit_this: Редагувати цю сторінку -post_view_markdown: Переглянути Markdown -post_create_child_page: Створити дочірню сторінку -post_create_issue: Створити запит щодо документації -post_create_project_issue: Створити запит щодо проєкту -post_reading_time: хв. читання -post_less_than_a_minute_read: менше хвилини - +post_last_mod: "Востаннє змінено" +post_upstream: "{{ .work }}, {{ .copyright }}, під ліцензією {{ .license }}. Дивіться {{ .notice }}." +post_upstream_adapted: "Адаптовано з {{ .work }}, {{ .copyright }}, під ліцензією {{ .license }}. Дивіться {{ .notice }} та {{ .history }}." +post_upstream_adapted_plain: "Адаптовано з {{ .work }}, {{ .copyright }}, під ліцензією {{ .license }}. Дивіться {{ .notice }}." +post_upstream_notice: "вказівка авторства" +post_upstream_history: "історія змін" +post_translated: "Ця сторінка — переклад; {{ .original }} має перевагу." +post_translated_original: "оригінал" +post_edit_this: "Редагувати цю сторінку" +post_view_markdown: "Переглянути Markdown" +post_create_child_page: "Створити дочірню сторінку" +post_create_issue: "Створити запит щодо документації" +post_create_project_issue: "Створити запит щодо проєкту" +# One sentence per language rather than fragments joined in a template. +post_meta_by_in: "Автор: {{ .Authors }} · Розділ: {{ .Section }}" +post_meta_in: "У {{ .Section }}" +post_reading_time: "хв. читання" +post_less_than_a_minute_read: "менше хвилини" +post_word_count: "{{ .Count }} слів" +post_reading_minutes: "{{ .Minutes }} хв" +post_read_original: "Докладніше" # Print support -print_printable_section: Це багатосторінкова версія цього розділу для друку. -print_click_to_print: Натисніть тут, щоб надрукувати -print_show_regular: Повернутися до звичайного перегляду сторінки -print_entire_section: Надрукувати весь розділ - +print_printable_section: "Це багатосторінковий друкований варіант цього розділу." +print_click_to_print: "Натисніть тут, щоб надрукувати" +print_show_regular: "Повернутися до звичайного перегляду сторінки" +print_entire_section: "Надрукувати весь розділ" # Feedback -feedback_question: Чи була ця сторінка корисною? -feedback_positive: Так -feedback_negative: Ні - -# Replace these values with reviewed translations when available. -callout_caution: Caution -callout_important: Important -callout_note: Note -callout_tip: Tip -callout_warning: Warning - -# UI strings. Buttons and similar. -ui_search_empty: No results found -ui_search_loading: Loading search index… -ui_search_results: '{count} results found' -ui_search_nav: Navigate -ui_search_open: Open -ui_search_close: Close -ui_palette_pages: Pages -ui_palette_index_unavailable: Page index unavailable; actions still work -ui_palette_action_failed: Action could not be completed -ui_palette_choose: Choose an option -ui_palette_no_commands: No matching commands -ui_palette_quick_links: Quick links -ui_palette_actions: Actions -ui_palette_commands: Commands -ui_palette_preferences: Preferences -ui_palette_page_actions: Page actions -ui_sidebar_nav: Section navigation -ui_heading_self_link: Link to this heading -ui_main_nav: Main navigation -ui_home: Home -ui_sidebar_expand: Expand sidebar -ui_sidebar_collapse: Collapse sidebar -ui_drawer_open: Open navigation -ui_drawer_close: Close navigation -ui_root_menu_label: Choose section -ui_tags_title: Tags -ui_tag_title: Tag -ui_categories_title: Categories -ui_category_title: Category -ui_theme_toggle: Toggle color theme -ui_theme_auto: Follow system -ui_theme_light: Light -ui_theme_dark: Dark -ui_toc_hide: Hide table of contents -ui_toc_show: Show table of contents -ui_language_select: Choose language -ui_language_switch: Switch language -ui_skip_to_content: Skip to content -ui_page_actions: Actions -ui_copy_markdown: Copy Markdown -ui_copy_success: Markdown copied -ui_copy_error: Could not copy Markdown -ui_print_page: Print this page -ui_sidebar_expand_section: Expand section -ui_sidebar_collapse_section: Collapse section -ui_asciinema_timer: Playback time - -# Used in sentences such as "Posted in News" -toc_on_this_page: Content - +feedback_question: "Чи була ця сторінка корисною?" +feedback_positive: "Так" +feedback_negative: "Ні" +feedback_thanks: "Дякуємо — ваш відгук допомагає покращити цю сторінку." +feedback_reason_prompt: "Що заважало? (не обов’язково)" +feedback_reason_missing: "Відсутня інформація" +feedback_reason_outdated: "Неправильна або застаріла" +feedback_reason_failed: "Кроки не працюють" +feedback_reason_unclear: "Складно зрозуміти" +feedback_details: "Додайте деталі в коментарях" +feedback_change: "Змінити відповідь" +# Table of contents +toc_on_this_page: "Зміст" # Error pages -error_404_title: Page not found -error_404_body: >- - Sorry, this page does not exist. Try starting again from the home page. -error_404_home: Go to the home page - -# Replace these values with reviewed translations when available. -ui_code_copy_label: Copy code -ui_code_copied: Copied -ui_code_copy_error: Copy failed -ui_code_show_all: Show all {{ .Count }} lines -ui_code_collapse: Collapse code -ui_kbd_with: with -ui_field_required: required -ui_action_unavailable: unavailable - -# Replace these values with reviewed translations when available. -ui_open_in_chatgpt: Open in ChatGPT -ui_open_in_claude: Open in Claude -ui_open_in_prompt: Read from %s so I can ask questions about it. - -# Replace these values with reviewed translations when available. -ui_image_zoom_dialog: Image preview -ui_image_zoom_open: Open image preview -ui_image_zoom_close: Close image preview - -# Replace these values with reviewed translations when available. -version_banner_archived: >- - Version {{ .Version }} of the documentation is no longer actively maintained. - The site that you are currently viewing is an archived snapshot. -version_banner_latest: For up-to-date documentation, see the {{ .Link }}. -version_banner_latest_link: latest version - +error_404_title: "Сторінку не знайдено" +error_404_body: "На жаль, цієї сторінки не існує. Спробуйте почати з головної сторінки." +error_404_home: "Перейти на головну сторінку" +# Version banner +version_banner_archived: "Версія {{ .Version }} документації більше не підтримується. Сайт, який ви бачите, є архівною копією." +version_banner_latest: "Актуальна документація: {{ .Link }}." +version_banner_latest_link: "остання версія" # Comments -comments_noscript: JavaScript is required to load comments. -comments_noscript_link: View discussions on GitHub. - -# Replace these values with reviewed translations when available. -ui_open_in_prompt_label: Ask about this page -ui_view_history: View edit history - -# Replace these values with reviewed translations when available. -ui_footer_collapse: Hide footer links -ui_footer_expand: Show footer links - -# Replace these values with reviewed translations when available. -ui_release_view: View release -ui_release_source: Source -ui_release_released: Released - -# Replace these values with reviewed translations when available. -ui_assets_file: File -ui_assets_checksum: Checksum -ui_assets_copy: Copy checksum -ui_assets_copied: Copied -ui_assets_copy_all: Copy all checksums -ui_assets_download: Download asset - -# Replace these values with reviewed translations when available. -ui_download_channels: Download channels -ui_download_unpublished: Pending release - -# Replace these values with reviewed translations when available. -ui_pricing_featured: Recommended -ui_pricing_included: Included -ui_pricing_excluded: Not included - -# Replace these values with reviewed translations when available. -ui_table_scroll: "Scrollable table" - -# Replace these values with reviewed translations when available. -book_figure: Figure -book_table: Table -book_equation: Equation -book_toc: Book contents -book_draft: Draft -book_draft_notice: This chapter is still being revised. - -# Replace these values with reviewed translations when available. -ui_marquee_pause: Pause motion - -# Replace these values with reviewed translations when available. -book_example: Example -contributors_count: contributors - -# Replace these values with reviewed translations when available. -ui_modules_title: Modules -ui_module_title: Module - -# Replace these values with reviewed translations when available. -feedback_thanks: Thanks for your feedback. - -# Replace these values with reviewed translations when available. -ui_keyboard_shortcuts: Keyboard shortcuts -ui_shortcut_tree_move: Move through sidebar -ui_shortcut_tree_toggle: Collapse or expand section -ui_shortcut_tree_open: Open focused page -ui_shortcut_heading_move: Previous or next heading -ui_shortcut_page_move: Previous or next page -ui_shortcut_search: Search -ui_shortcut_commands: Command palette -ui_shortcut_reading_mode: Reading mode -ui_shortcut_language: Switch language -ui_shortcut_theme: Switch theme -ui_shortcut_route: Cycle top-level pages - -# Replace these values with reviewed translations when available. -feedback_reason_prompt: What got in the way? (optional) -feedback_reason_missing: Missing information -feedback_reason_outdated: Incorrect or outdated -feedback_reason_failed: Steps did not work -feedback_reason_unclear: Hard to understand -feedback_details: Add details in the comments -feedback_change: Change response - -# Replace these values with reviewed translations when available. -ui_page_annotation: Page information - -# Replace these values with reviewed translations when available. -callout_success: Success -callout_danger: Danger -callout_question: Question -callout_example: Example -callout_quote: Quote -callout_details: Details - -# Replace these values with reviewed translations when available. -ui_tabs_label: Tabs - -# Replace these values with reviewed translations when available. -ui_filetree_divider: "Resize the file tree comment column" - -# Replace these values with reviewed translations when available. -ui_field_self_link: Link to this field - -# Replace these values with reviewed translations when available. -ui_preview_source: Markdown -ui_preview_rendered: Rendered - -# Replace these values with reviewed translations when available. -post_upstream: "{{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}." -post_upstream_adapted: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }} and {{ .history }}. -post_upstream_adapted_plain: Adapted from {{ .work }}, {{ .copyright }}, under {{ .license }}. See {{ .notice }}. -post_upstream_notice: attribution -post_upstream_history: change history -post_translated: This page is a translation; the {{ .original }} governs. -post_translated_original: original - -# Replace these values with reviewed translations when available. -ui_authors_title: Authors -ui_author_title: Author -ui_series_title: Series -ui_series_part: Part {{ .Part }} of {{ .Total }} -ui_share: Share -ui_share_email: Email -ui_copy_link: Copy link -ui_copy_link_success: Link copied -ui_copy_link_error: Could not copy the link - -# Replace these values with reviewed translations when available. -ui_list_separator: ", " - -# Footer text -post_meta_by_in: "By {{ .Authors }} · In {{ .Section }}" -post_meta_in: "In {{ .Section }}" - -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: Switch layout - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -post_word_count: '{{ .Count }} words' -post_reading_minutes: '{{ .Minutes }} min' -post_read_original: Read More - -# Print support - -# Markdown output (explicit English fallbacks) -markdown_llms_index: "LLMS index:" -markdown_section_pages: "Section pages:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_diagram_expand: Enlarge diagram -ui_diagram_zoom_dialog: Diagram preview -ui_diagram_zoom_close: Close diagram preview -ui_diagram_zoom_in: Zoom in -ui_diagram_zoom_out: Zoom out -ui_diagram_zoom_reset: Reset view -ui_diagram_error: The diagram could not be rendered - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_openapi_spec: OpenAPI specification - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks: Backlinks -markdown_backlinks: "Backlinks:" - -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. -ui_backlinks_more: "Show {{ . }} more" +comments_noscript: "Для завантаження коментарів потрібен JavaScript." +comments_noscript_link: "Переглянути обговорення на GitHub." +# LLM page actions +ui_open_in_prompt_label: "Запитати про цю сторінку" +ui_view_history: "Переглянути історію змін" +ui_table_scroll: "Прокручувана таблиця" +ui_filetree_divider: "Змінити розмір стовпчика коментарів дерева файлів" +book_figure: "Рисунок" +book_table: "Таблиця" +book_equation: "Рівняння" +book_example: "Приклад" +book_toc: "Зміст книги" +book_draft: "Чернетка" +book_draft_notice: "Цей розділ досі доопрацьовується." +contributors_count: "учасників" +# Article series +ui_series_title: "Серія" +ui_series_part: "Частина {{ .Part }} з {{ .Total }}" +# Markdown output +markdown_llms_index: "Індекс LLMS:" +markdown_section_pages: "Сторінки розділу:" +markdown_backlinks: "Зворотні посилання:" diff --git a/i18n/zh-cn.yaml b/i18n/zh-cn.yaml index 0226ee5..7a69095 100644 --- a/i18n/zh-cn.yaml +++ b/i18n/zh-cn.yaml @@ -205,14 +205,12 @@ contributors_count: 位贡献者 ui_series_title: 系列 ui_series_part: 第 {{ .Part }} / 共 {{ .Total }} 篇 -# Replace these values with reviewed translations when available. ui_list_separator: 、 # Footer text post_meta_by_in: "{{ .Authors }} 发布于 {{ .Section }}" post_meta_in: "发布于 {{ .Section }}" -# Replace these values with reviewed translations when available. ui_blog_index_toggle: 切换布局 # Markdown output @@ -220,8 +218,6 @@ markdown_llms_index: "LLMS 索引:" markdown_backlinks: "反链:" markdown_section_pages: "本节页面:" -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. ui_diagram_expand: 放大图表 ui_diagram_zoom_dialog: 图表预览 ui_diagram_zoom_close: 关闭图表预览 diff --git a/i18n/zh-tw.yaml b/i18n/zh-tw.yaml index a126909..1fa273f 100644 --- a/i18n/zh-tw.yaml +++ b/i18n/zh-tw.yaml @@ -207,23 +207,19 @@ contributors_count: 位貢獻者 ui_series_title: 系列 ui_series_part: 第 {{ .Part }} / 共 {{ .Total }} 篇 -# Replace these values with reviewed translations when available. ui_list_separator: 、 # Footer text post_meta_by_in: "{{ .Authors }} 發佈於 {{ .Section }}" post_meta_in: "發佈於 {{ .Section }}" -# Replace these values with reviewed translations when available. -ui_blog_index_toggle: 切换布局 +ui_blog_index_toggle: 切換版面配置 # Markdown output markdown_llms_index: "LLMS 索引:" markdown_backlinks: "反向連結:" markdown_section_pages: "本節頁面:" -# Explicit English fallbacks for untranslated OINK UI strings. -# Replace these values with reviewed translations when available. ui_diagram_expand: 放大圖表 ui_diagram_zoom_dialog: 圖表預覽 ui_diagram_zoom_close: 關閉圖表預覽