Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/locales/de-DE/script.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"cron_invalid_expr": "Ungültiger Cron-Ausdruck",
"background_script": "Hintergrundskript",
"scheduled_script": "Geplantes Skript",
"normal_script": "Benutzerskript",
"next_run": "Nächste Ausführung",
"background_script_tooltip": "Hintergrundskript. Läuft nach der Aktivierung im Hintergrund.",
"scheduled_script_tooltip": "Geplantes Skript. Läuft automatisch zur konfigurierten Zeit.",
Expand Down
15 changes: 15 additions & 0 deletions src/locales/de-DE/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,21 @@
"control_script_update_behavior": "Skript-Update-Verhalten kontrollieren",
"blacklist_pages_desc": "Verbietet Skripts auf bestimmten Seiten zu laufen, unterstützt Wildcards",
"development_tools": "Entwicklertools",
"script_templates": "Skriptvorlagen",
"script_templates_description": "Passe den Anfangscode an, der beim Erstellen eines neuen Skripts erzeugt wird. Betrifft nur danach erstellte Skripte.",
"script_template_saved": "Skriptvorlage gespeichert",
"script_template_reset": "Standard-Skriptvorlage wiederhergestellt",
"script_template_modified": "Geändert",
"script_template_variables": "Verfügbare Variablen",
"script_template_variables_hint": "Eine Variable ohne Wert entfernt die gesamte Zeile; unbekannte Platzhalter bleiben unverändert.",
"script_template_var_name": "Automatisch erzeugter Skriptname",
"script_template_var_match": "Adresse des aktuellen Tabs",
"script_template_var_icon": "Symbol der aktuellen Website",
"script_template_var_domain": "Domain des aktuellen Tabs",
"script_template_var_title": "Titel des aktuellen Tabs",
"script_template_var_date": "Aktuelles Datum; nach dem Doppelpunkt kann ein Format angegeben werden",
"script_template_error_normal_directive": "Eine Vorlage für Benutzerskripte darf @background oder @crontab nicht enthalten",
"script_template_error_missing_directive": "Diese Vorlage muss {{directive}} enthalten",
"check_script_code_quality": "Skriptcode-Qualität und Fehler prüfen",
"script_run_env": {
"title": "Laufzeitumgebung",
Expand Down
1 change: 1 addition & 0 deletions src/locales/en-US/script.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"cron_invalid_expr": "Invalid cron expression",
"background_script": "Background Script",
"scheduled_script": "Scheduled Script",
"normal_script": "User Script",
"next_run": "Next run",
"background_script_tooltip": "Background script. Runs in the background once enabled.",
"scheduled_script_tooltip": "Scheduled script. Runs automatically at the configured time.",
Expand Down
15 changes: 15 additions & 0 deletions src/locales/en-US/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,21 @@
"control_script_update_behavior": "Control script update behavior",
"blacklist_pages_desc": "Prevent scripts from running on specified pages, supports wildcards",
"development_tools": "Development Tools",
"script_templates": "Script Templates",
"script_templates_description": "Customize the initial code generated when creating a new script. Only scripts created afterwards are affected.",
"script_template_saved": "Script template saved",
"script_template_reset": "Default script template restored",
"script_template_modified": "Modified",
"script_template_variables": "Available variables",
"script_template_variables_hint": "A variable that resolves to an empty value removes its entire line; unrecognized placeholders are kept as is.",
"script_template_var_name": "Auto-generated script name",
"script_template_var_match": "URL of the current tab",
"script_template_var_icon": "Icon of the current site",
"script_template_var_domain": "Domain of the current tab",
"script_template_var_title": "Title of the current tab",
"script_template_var_date": "Current date; a format can be given after the colon",
"script_template_error_normal_directive": "A user script template cannot contain @background or @crontab",
"script_template_error_missing_directive": "This template must contain {{directive}}",
"check_script_code_quality": "Check script code quality and errors",
"script_run_env": {
"title": "Operating environment",
Expand Down
1 change: 1 addition & 0 deletions src/locales/ja-JP/script.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"cron_invalid_expr": "不正な cron 式です",
"background_script": "バックグラウンドスクリプト",
"scheduled_script": "スケジュールスクリプト",
"normal_script": "ユーザースクリプト",
"next_run": "次回実行",
"background_script_tooltip": "バックグラウンドスクリプト。有効にするとバックグラウンドで実行されます。",
"scheduled_script_tooltip": "スケジュールスクリプト。設定した時刻に自動的に実行されます。",
Expand Down
15 changes: 15 additions & 0 deletions src/locales/ja-JP/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,21 @@
"control_script_update_behavior": "スクリプト更新の動作を制御",
"blacklist_pages_desc": "指定されたページでスクリプトの実行を禁止、ワイルドカードをサポート",
"development_tools": "開発ツール",
"script_templates": "スクリプトテンプレート",
"script_templates_description": "新規スクリプト作成時に生成される初期コードをカスタマイズします。以降に作成するスクリプトにのみ適用されます。",
"script_template_saved": "スクリプトテンプレートを保存しました",
"script_template_reset": "デフォルトのスクリプトテンプレートに戻しました",
"script_template_modified": "変更済み",
"script_template_variables": "利用可能な変数",
"script_template_variables_hint": "値が空になる変数は行ごと削除されます。認識できないプレースホルダーはそのまま残ります。",
"script_template_var_name": "自動生成されるスクリプト名",
"script_template_var_match": "現在のタブの URL",
"script_template_var_icon": "現在のサイトのアイコン",
"script_template_var_domain": "現在のタブのドメイン",
"script_template_var_title": "現在のタブのタイトル",
"script_template_var_date": "現在の日付。コロンの後に書式を指定できます",
"script_template_error_normal_directive": "ユーザースクリプトのテンプレートには @background や @crontab を含められません",
"script_template_error_missing_directive": "このテンプレートには {{directive}} が必要です",
"check_script_code_quality": "スクリプトコードの品質とエラーをチェック",
"script_run_env": {
"title": "実行環境",
Expand Down
1 change: 1 addition & 0 deletions src/locales/ko-KR/script.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"cron_invalid_expr": "잘못된 cron 표현식입니다",
"background_script": "백그라운드 스크립트",
"scheduled_script": "예약 스크립트",
"normal_script": "일반 스크립트",
"next_run": "다음 실행",
"background_script_tooltip": "백그라운드 스크립트입니다. 활성화하면 백그라운드에서 실행됩니다.",
"scheduled_script_tooltip": "예약 스크립트입니다. 설정한 시간에 자동으로 실행됩니다.",
Expand Down
15 changes: 15 additions & 0 deletions src/locales/ko-KR/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,21 @@
"control_script_update_behavior": "스크립트 업데이트 동작 제어",
"blacklist_pages_desc": "지정한 페이지에서 스크립트 실행을 막습니다. 와일드카드를 지원합니다",
"development_tools": "개발 도구",
"script_templates": "스크립트 템플릿",
"script_templates_description": "새 스크립트를 만들 때 생성되는 초기 코드를 사용자 지정합니다. 이후에 만드는 스크립트에만 적용됩니다.",
"script_template_saved": "스크립트 템플릿을 저장했습니다",
"script_template_reset": "기본 스크립트 템플릿으로 되돌렸습니다",
"script_template_modified": "수정됨",
"script_template_variables": "사용 가능한 변수",
"script_template_variables_hint": "값이 비어 있는 변수는 해당 줄 전체가 삭제되며, 인식되지 않는 자리 표시자는 그대로 유지됩니다.",
"script_template_var_name": "자동 생성된 스크립트 이름",
"script_template_var_match": "현재 탭의 주소",
"script_template_var_icon": "현재 사이트의 아이콘",
"script_template_var_domain": "현재 탭의 도메인",
"script_template_var_title": "현재 탭의 제목",
"script_template_var_date": "현재 날짜, 콜론 뒤에 형식을 지정할 수 있습니다",
"script_template_error_normal_directive": "일반 스크립트 템플릿에는 @background 또는 @crontab을 포함할 수 없습니다",
"script_template_error_missing_directive": "이 템플릿에는 {{directive}}이(가) 있어야 합니다",
"check_script_code_quality": "스크립트 코드 품질과 오류를 검사",
"script_run_env": {
"title": "실행 환경",
Expand Down
1 change: 1 addition & 0 deletions src/locales/pt-BR/script.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"cron_invalid_expr": "Expressão cron inválida",
"background_script": "Script em segundo plano",
"scheduled_script": "Script agendado",
"normal_script": "Script de usuário",
"next_run": "Próxima execução",
"background_script_tooltip": "Script em segundo plano. É executado em segundo plano quando ativado.",
"scheduled_script_tooltip": "Script agendado. Executa automaticamente no horário configurado.",
Expand Down
15 changes: 15 additions & 0 deletions src/locales/pt-BR/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,21 @@
"control_script_update_behavior": "Controlar o comportamento de atualização de scripts",
"blacklist_pages_desc": "Impedir que scripts sejam executados nas páginas especificadas, com suporte a curingas",
"development_tools": "Ferramentas de desenvolvimento",
"script_templates": "Modelos de script",
"script_templates_description": "Personalize o código inicial gerado ao criar um novo script. Afeta apenas os scripts criados depois.",
"script_template_saved": "Modelo de script salvo",
"script_template_reset": "Modelo de script padrão restaurado",
"script_template_modified": "Modificado",
"script_template_variables": "Variáveis disponíveis",
"script_template_variables_hint": "Uma variável com valor vazio remove a linha inteira; marcadores não reconhecidos são mantidos como estão.",
"script_template_var_name": "Nome do script gerado automaticamente",
"script_template_var_match": "Endereço da aba atual",
"script_template_var_icon": "Ícone do site atual",
"script_template_var_domain": "Domínio da aba atual",
"script_template_var_title": "Título da aba atual",
"script_template_var_date": "Data atual; um formato pode ser indicado após os dois-pontos",
"script_template_error_normal_directive": "Um modelo de script de usuário não pode conter @background ou @crontab",
"script_template_error_missing_directive": "Este modelo deve conter {{directive}}",
"check_script_code_quality": "Verificar a qualidade e os erros do código do script",
"script_run_env": {
"title": "Ambiente de execução",
Expand Down
1 change: 1 addition & 0 deletions src/locales/ru-RU/script.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"cron_invalid_expr": "Неверное выражение cron",
"background_script": "Фоновый скрипт",
"scheduled_script": "Запланированный скрипт",
"normal_script": "Пользовательский скрипт",
"next_run": "Следующий запуск",
"background_script_tooltip": "Фоновый скрипт. После включения выполняется в фоне.",
"scheduled_script_tooltip": "Скрипт по расписанию. Запускается автоматически в заданное время.",
Expand Down
15 changes: 15 additions & 0 deletions src/locales/ru-RU/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,21 @@
"control_script_update_behavior": "Управление поведением обновления скриптов",
"blacklist_pages_desc": "Запретить запуск скриптов на указанных страницах, поддерживает подстановочные знаки",
"development_tools": "Инструменты разработки",
"script_templates": "Шаблоны скриптов",
"script_templates_description": "Настройте исходный код, который создаётся при создании нового скрипта. Влияет только на скрипты, созданные после изменения.",
"script_template_saved": "Шаблон скрипта сохранён",
"script_template_reset": "Стандартный шаблон скрипта восстановлен",
"script_template_modified": "Изменён",
"script_template_variables": "Доступные переменные",
"script_template_variables_hint": "Переменная с пустым значением удаляется вместе со всей строкой; нераспознанные подстановки остаются без изменений.",
"script_template_var_name": "Автоматически созданное имя скрипта",
"script_template_var_match": "Адрес текущей вкладки",
"script_template_var_icon": "Значок текущего сайта",
"script_template_var_domain": "Домен текущей вкладки",
"script_template_var_title": "Заголовок текущей вкладки",
"script_template_var_date": "Текущая дата; формат можно указать после двоеточия",
"script_template_error_normal_directive": "Шаблон пользовательского скрипта не может содержать @background или @crontab",
"script_template_error_missing_directive": "Этот шаблон должен содержать {{directive}}",
"check_script_code_quality": "Проверить качество кода скрипта и ошибки",
"script_run_env": {
"title": "Среда выполнения",
Expand Down
1 change: 1 addition & 0 deletions src/locales/tr-TR/script.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"cron_invalid_expr": "Geçersiz cron ifadesi",
"background_script": "Arka Plan Betiği",
"scheduled_script": "Zamanlanmış Betik",
"normal_script": "Kullanıcı Betiği",
"next_run": "Sonraki çalışma",
"background_script_tooltip": "Arka plan betiği. Etkinleştirildiğinde arka planda çalışır.",
"scheduled_script_tooltip": "Zamanlanmış betik. Yapılandırılan zamanda otomatik olarak çalışır.",
Expand Down
15 changes: 15 additions & 0 deletions src/locales/tr-TR/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,21 @@
"control_script_update_behavior": "Betik güncelleme davranışını kontrol et",
"blacklist_pages_desc": "Betiklerin belirtilen sayfalarda çalışmasını engeller, joker karakterleri destekler",
"development_tools": "Geliştirici Araçları",
"script_templates": "Betik Şablonları",
"script_templates_description": "Yeni betik oluşturulurken üretilen başlangıç kodunu özelleştirin. Yalnızca bundan sonra oluşturulan betikleri etkiler.",
"script_template_saved": "Betik şablonu kaydedildi",
"script_template_reset": "Varsayılan betik şablonu geri yüklendi",
"script_template_modified": "Değiştirildi",
"script_template_variables": "Kullanılabilir değişkenler",
"script_template_variables_hint": "Değeri boş olan bir değişken bulunduğu satırın tamamını siler; tanınmayan yer tutucular olduğu gibi kalır.",
"script_template_var_name": "Otomatik oluşturulan betik adı",
"script_template_var_match": "Geçerli sekmenin adresi",
"script_template_var_icon": "Geçerli sitenin simgesi",
"script_template_var_domain": "Geçerli sekmenin etki alanı",
"script_template_var_title": "Geçerli sekmenin başlığı",
"script_template_var_date": "Geçerli tarih; iki nokta üst üste işaretinden sonra biçim belirtilebilir",
"script_template_error_normal_directive": "Kullanıcı betiği şablonu @background veya @crontab içeremez",
"script_template_error_missing_directive": "Bu şablon {{directive}} içermelidir",
"check_script_code_quality": "Betik kod kalitesini ve hatalarını denetle",
"script_run_env": {
"title": "Çalışma Ortamı",
Expand Down
1 change: 1 addition & 0 deletions src/locales/vi-VN/script.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"cron_invalid_expr": "Biểu thức cron không hợp lệ",
"background_script": "Script nền",
"scheduled_script": "Script hẹn giờ",
"normal_script": "Script người dùng",
"next_run": "Lần chạy tiếp theo",
"background_script_tooltip": "Script nền. Chạy trong nền sau khi được bật.",
"scheduled_script_tooltip": "Script hẹn giờ. Tự động chạy vào thời điểm đã cấu hình.",
Expand Down
15 changes: 15 additions & 0 deletions src/locales/vi-VN/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,21 @@
"control_script_update_behavior": "Kiểm soát hành vi cập nhật script",
"blacklist_pages_desc": "Ngăn script chạy trên các trang được chỉ định, hỗ trợ ký tự đại diện",
"development_tools": "Công cụ phát triển",
"script_templates": "Mẫu script",
"script_templates_description": "Tùy chỉnh mã khởi tạo được sinh ra khi tạo script mới. Chỉ ảnh hưởng đến các script được tạo sau đó.",
"script_template_saved": "Đã lưu mẫu script",
"script_template_reset": "Đã khôi phục mẫu script mặc định",
"script_template_modified": "Đã sửa đổi",
"script_template_variables": "Biến khả dụng",
"script_template_variables_hint": "Biến có giá trị rỗng sẽ bị xóa cả dòng; các chỗ dành sẵn không nhận diện được vẫn giữ nguyên.",
"script_template_var_name": "Tên script được tạo tự động",
"script_template_var_match": "Địa chỉ của tab hiện tại",
"script_template_var_icon": "Biểu tượng của trang hiện tại",
"script_template_var_domain": "Miền của tab hiện tại",
"script_template_var_title": "Tiêu đề của tab hiện tại",
"script_template_var_date": "Ngày hiện tại; có thể chỉ định định dạng sau dấu hai chấm",
"script_template_error_normal_directive": "Mẫu script người dùng không được chứa @background hoặc @crontab",
"script_template_error_missing_directive": "Mẫu này phải chứa {{directive}}",
"check_script_code_quality": "Kiểm tra chất lượng mã và lỗi script",
"script_run_env": {
"title": "Môi trường chạy",
Expand Down
1 change: 1 addition & 0 deletions src/locales/zh-CN/script.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"cron_invalid_expr": "错误的定时表达式",
"background_script": "后台脚本",
"scheduled_script": "定时脚本",
"normal_script": "普通脚本",
"next_run": "下次运行",
"background_script_tooltip": "后台脚本,启用后将在后台运行",
"scheduled_script_tooltip": "定时脚本,将在设定的时间自动运行",
Expand Down
15 changes: 15 additions & 0 deletions src/locales/zh-CN/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,21 @@
"control_script_update_behavior": "控制脚本更新的行为",
"blacklist_pages_desc": "禁止脚本在指定页面运行,支持通配符",
"development_tools": "开发工具",
"script_templates": "脚本模板",
"script_templates_description": "自定义新建脚本时生成的初始代码,只影响之后新建的脚本。",
"script_template_saved": "脚本模板已保存",
"script_template_reset": "已恢复默认脚本模板",
"script_template_modified": "已修改",
"script_template_variables": "可用变量",
"script_template_variables_hint": "取值为空的变量会连同所在行一起删除;未识别的占位符原样保留。",
"script_template_var_name": "自动生成的脚本名",
"script_template_var_match": "当前标签页的地址",
"script_template_var_icon": "当前站点的图标",
"script_template_var_domain": "当前标签页的域名",
"script_template_var_title": "当前标签页的标题",
"script_template_var_date": "当前日期,冒号后可指定格式",
"script_template_error_normal_directive": "普通脚本模板不能包含 @background 或 @crontab",
"script_template_error_missing_directive": "此模板必须包含 {{directive}}",
"check_script_code_quality": "检查脚本代码质量和错误",
"script_run_env": {
"title": "运行环境",
Expand Down
1 change: 1 addition & 0 deletions src/locales/zh-TW/script.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"cron_invalid_expr": "錯誤的排程表達式",
"background_script": "背景腳本",
"scheduled_script": "排程腳本",
"normal_script": "普通腳本",
"next_run": "下次執行",
"background_script_tooltip": "背景腳本,啟用後將在背景執行",
"scheduled_script_tooltip": "排程腳本,將在設定的時間自動執行",
Expand Down
Loading
Loading