From 6a05a53978c8521838f1e3c3973ec403f661bc5c Mon Sep 17 00:00:00 2001 From: rich2014 Date: Fri, 25 Oct 2024 23:23:20 +0800 Subject: [PATCH] IDE: i18n for Modern Form Style Tool Bar --- ide/cocoaideformconfig.inc | 42 +++++++++++++++++------------------ ide/lazarusidestrconsts.pas | 4 ++++ languages/lazaruside.af_ZA.po | 8 +++++++ languages/lazaruside.ar.po | 8 +++++++ languages/lazaruside.ca.po | 8 +++++++ languages/lazaruside.cs.po | 8 +++++++ languages/lazaruside.de.po | 8 +++++++ languages/lazaruside.es.po | 8 +++++++ languages/lazaruside.fi.po | 8 +++++++ languages/lazaruside.fr.po | 8 +++++++ languages/lazaruside.he.po | 8 +++++++ languages/lazaruside.hu.po | 8 +++++++ languages/lazaruside.id.po | 8 +++++++ languages/lazaruside.it.po | 8 +++++++ languages/lazaruside.ja.po | 8 +++++++ languages/lazaruside.lt.po | 8 +++++++ languages/lazaruside.nl.po | 8 +++++++ languages/lazaruside.pl.po | 8 +++++++ languages/lazaruside.pot | 8 +++++++ languages/lazaruside.pt_BR.po | 8 +++++++ languages/lazaruside.ru.po | 8 +++++++ languages/lazaruside.sk.po | 8 +++++++ languages/lazaruside.tr.po | 8 +++++++ languages/lazaruside.uk.po | 8 +++++++ languages/lazaruside.zh_CN.po | 8 +++++++ 25 files changed, 209 insertions(+), 21 deletions(-) diff --git a/ide/cocoaideformconfig.inc b/ide/cocoaideformconfig.inc index 74818cca86..2f0ab2a699 100644 --- a/ide/cocoaideformconfig.inc +++ b/ide/cocoaideformconfig.inc @@ -6,7 +6,7 @@ interface uses Classes, SysUtils, Forms, Menus, - SourceEditor, SynEditTypes, + LazarusIDEStrConsts, SourceEditor, SynEditTypes, CocoaAll, CocoaConfig, CocoaToolBar, Cocoa_Extra; implementation @@ -75,7 +75,7 @@ var function createSearchMenuItem: TMenuItem; begin Result:= TMenuItem.Create( menu ); - Result.Caption:= 'Search Instantly'; + Result.Caption:= cocoaMFSTBISearch; Result.OnClick:= @IDEMainFormHandler.doFocusSearchField; Result.ShortCut:= ShortCut( Word('F'), [ssCtrl, ssMeta] ); end; @@ -93,8 +93,8 @@ const priority: NSToolbarItemVisibilityPriorityHigh; navigational: True; iconName: 'arrow.left'; - title: 'Back'; - tips: 'Jump Back'; + title: lisMenuJumpBack; + tips: lisMenuJumpBack; bordered: True; onAction: @jumpBackAction; ); @@ -104,31 +104,18 @@ const priority: NSToolbarItemVisibilityPriorityHigh; navigational: True; iconName: 'arrow.right'; - title: 'Forward'; - tips: 'Jump Forward'; + title: lisMenuJumpForward; + tips: lisMenuJumpForward; bordered: True; onAction: @jumpForwardAction; ); - commandItemConfig: TCocoaConfigToolBarItemMenu = ( - identifier: 'MainIDE.Command'; - iconName: 'ellipsis.circle'; - title: 'Command'; - tips: ''; - bordered: True; - onAction: nil; - - showsIndicator: False; - menu: nil; - onGetMenu: @onGetCommandMenu; - ); - searchItemConfig: TCocoaConfigToolBarItemSearch = ( identifier: 'MainIDE.Search'; priority: NSToolbarItemVisibilityPriorityLow; iconName: ''; - title: 'Search'; - tips: 'Search Instantly'; + title: cocoaMFSTBISearch; + tips: cocoaMFSTBISearch; bordered: True; onAction: @searchAction; @@ -138,6 +125,19 @@ const preferredWidth: 200; ); + commandItemConfig: TCocoaConfigToolBarItemMenu = ( + identifier: 'MainIDE.Command'; + iconName: 'ellipsis.circle'; + title: cocoaMFSTBICommand; + tips: ''; + bordered: True; + onAction: nil; + + showsIndicator: False; + menu: nil; + onGetMenu: @onGetCommandMenu; + ); + // 1. for docked IDE, integrate with MainIDEBar // 2. for undocked IDE, integrate with MainIDEBar and SourceNotebook mainIDEFormConfig: TCocoaConfigForm = ( diff --git a/ide/lazarusidestrconsts.pas b/ide/lazarusidestrconsts.pas index 7d2e88907d..4ee49ad7a4 100644 --- a/ide/lazarusidestrconsts.pas +++ b/ide/lazarusidestrconsts.pas @@ -5231,6 +5231,10 @@ resourcestring lisIncludeRecursive = 'Include, recursive'; lisExclude = 'Exclude'; + // cocoa Modern Form Style ToolBar Item Config + cocoaMFSTBISearch = 'Search Instantly'; + cocoaMFSTBICommand = 'Command'; + // version info tab VersionInfoTitle = 'Version Info'; diff --git a/languages/lazaruside.af_ZA.po b/languages/lazaruside.af_ZA.po index a34290ba49..b8d1cc7b01 100644 --- a/languages/lazaruside.af_ZA.po +++ b/languages/lazaruside.af_ZA.po @@ -11,6 +11,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: \n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.ar.po b/languages/lazaruside.ar.po index f69fb7b263..8499a88596 100644 --- a/languages/lazaruside.ar.po +++ b/languages/lazaruside.ar.po @@ -13,6 +13,14 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0\n" "X-Generator: Easy Po 0.9.2\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.ca.po b/languages/lazaruside.ca.po index 956b44458e..0740c574de 100644 --- a/languages/lazaruside.ca.po +++ b/languages/lazaruside.ca.po @@ -9,6 +9,14 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.cs.po b/languages/lazaruside.cs.po index 6be1971b80..c0ec309d65 100644 --- a/languages/lazaruside.cs.po +++ b/languages/lazaruside.cs.po @@ -13,6 +13,14 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Language: cs\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.de.po b/languages/lazaruside.de.po index c38a4e1392..9ac6195516 100644 --- a/languages/lazaruside.de.po +++ b/languages/lazaruside.de.po @@ -12,6 +12,14 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "X-Generator: Poedit 3.2\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.es.po b/languages/lazaruside.es.po index ef98ae3b33..c3afbbd8e3 100644 --- a/languages/lazaruside.es.po +++ b/languages/lazaruside.es.po @@ -11,6 +11,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.3.1\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.fi.po b/languages/lazaruside.fi.po index 15d6f80810..3ef660380e 100644 --- a/languages/lazaruside.fi.po +++ b/languages/lazaruside.fi.po @@ -9,6 +9,14 @@ msgstr "" "Last-Translator: x \n" "Language-Team: \n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.fr.po b/languages/lazaruside.fr.po index 13c5946dc7..ebb73baae5 100644 --- a/languages/lazaruside.fr.po +++ b/languages/lazaruside.fr.po @@ -13,6 +13,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Poedit 3.5\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "Ligne cible du lien" diff --git a/languages/lazaruside.he.po b/languages/lazaruside.he.po index f87f73c02a..050e0e69b9 100644 --- a/languages/lazaruside.he.po +++ b/languages/lazaruside.he.po @@ -12,6 +12,14 @@ msgstr "" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.hu.po b/languages/lazaruside.hu.po index e343b62464..7831717bd0 100644 --- a/languages/lazaruside.hu.po +++ b/languages/lazaruside.hu.po @@ -11,6 +11,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.0.6\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.id.po b/languages/lazaruside.id.po index d9b09da175..8e1247dcdb 100644 --- a/languages/lazaruside.id.po +++ b/languages/lazaruside.id.po @@ -9,6 +9,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.it.po b/languages/lazaruside.it.po index 7da01fbddf..8faef13687 100644 --- a/languages/lazaruside.it.po +++ b/languages/lazaruside.it.po @@ -17,6 +17,14 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Bookmarks: 2233,2232,-1,-1,-1,-1,-1,-1,-1,-1\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.ja.po b/languages/lazaruside.ja.po index 14506b57f3..7546eda7da 100644 --- a/languages/lazaruside.ja.po +++ b/languages/lazaruside.ja.po @@ -9,6 +9,14 @@ msgstr "" "Language-Team: Japanese Lazarus ML\n" "Language: ja\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.lt.po b/languages/lazaruside.lt.po index a5df3bd3bd..344b70378f 100644 --- a/languages/lazaruside.lt.po +++ b/languages/lazaruside.lt.po @@ -13,6 +13,14 @@ msgstr "" "POT-Creation-Date: \n" "Language: lt\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.nl.po b/languages/lazaruside.nl.po index 0386330a04..66a7d0464d 100644 --- a/languages/lazaruside.nl.po +++ b/languages/lazaruside.nl.po @@ -9,6 +9,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.pl.po b/languages/lazaruside.pl.po index 08d326e07a..8814f2eb69 100644 --- a/languages/lazaruside.pl.po +++ b/languages/lazaruside.pl.po @@ -12,6 +12,14 @@ msgstr "" "Language: pl_PL\n" "X-Generator: Poedit 2.3.1\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.pot b/languages/lazaruside.pot index e719f5b49a..550c1b67f4 100644 --- a/languages/lazaruside.pot +++ b/languages/lazaruside.pot @@ -4,6 +4,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.pt_BR.po b/languages/lazaruside.pt_BR.po index 3d908737aa..5e47f0715c 100644 --- a/languages/lazaruside.pt_BR.po +++ b/languages/lazaruside.pt_BR.po @@ -11,6 +11,14 @@ msgstr "" "Language: pt_BR\n" "X-Generator: Poedit 1.8.13\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.ru.po b/languages/lazaruside.ru.po index 9165dabe79..aabb323429 100644 --- a/languages/lazaruside.ru.po +++ b/languages/lazaruside.ru.po @@ -12,6 +12,14 @@ msgstr "" "Language: ru\n" "X-Generator: Poedit 2.3.1\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "Целевая строка ссылки" diff --git a/languages/lazaruside.sk.po b/languages/lazaruside.sk.po index c7c70c3f33..003759669c 100644 --- a/languages/lazaruside.sk.po +++ b/languages/lazaruside.sk.po @@ -13,6 +13,14 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Language: sk\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.tr.po b/languages/lazaruside.tr.po index 0491d82ef3..86c80b136b 100644 --- a/languages/lazaruside.tr.po +++ b/languages/lazaruside.tr.po @@ -17,6 +17,14 @@ msgstr "" "X-Poedit-Flags-xgettext: --add-comments=\"TRANSLATORS: Onur ERÇELEN \"\n" "X-Loco-Parser: loco_parse_po" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "Bağlantı hedef hattı" diff --git a/languages/lazaruside.uk.po b/languages/lazaruside.uk.po index 55d6253e42..5474875202 100644 --- a/languages/lazaruside.uk.po +++ b/languages/lazaruside.uk.po @@ -14,6 +14,14 @@ msgstr "" "X-Generator: Lokalize 21.12.3\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr "" diff --git a/languages/lazaruside.zh_CN.po b/languages/lazaruside.zh_CN.po index c62499cf2e..5ddcda99f6 100644 --- a/languages/lazaruside.zh_CN.po +++ b/languages/lazaruside.zh_CN.po @@ -12,6 +12,14 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.3.2\n" +#: lazarusidestrconsts.cocoamfstbicommand +msgid "Command" +msgstr "" + +#: lazarusidestrconsts.cocoamfstbisearch +msgid "Search Instantly" +msgstr "" + #: lazarusidestrconsts.dbgasmwindowlinktarget msgid "Link target line" msgstr ""