diff --git a/runtime/doc/gui_mac.txt b/runtime/doc/gui_mac.txt index bcd42d9a0e..6098bce2cd 100644 --- a/runtime/doc/gui_mac.txt +++ b/runtime/doc/gui_mac.txt @@ -93,8 +93,7 @@ desired. *macvim-default-menu* The default menu in MacVim has been changed to conform better with the Apple -Human Interface Guidelines (HIG). At the moment this breaks the localized -menus, so only English menus are supported. +Human Interface Guidelines (HIG). Note: The menus are a work in progress. If you know something about the HIG and want to contribute to MacVim you could do so by making the menus better. @@ -758,7 +757,7 @@ As another example, here is how to switch buffers by swiping left/right: > See the section on |key-mapping| for more help on how to map keys. ============================================================================== -14. International *macvim-international* +14. International *macvim-international* *macvim-multilang* Typing text ~ @@ -782,10 +781,11 @@ to use in normal mode and type ":set imd" followed by ":set noimd". Translations ~ -MacVim uses localized Vim messages (see |multilang-messages|), but there are -MacVim-specific messages that are not currently localized. Please file an -issue if you would like to see certain messages localized. Menus -(|multilang-menus|) are currently not localized in MacVim. +MacVim uses localized Vim messages (see |multilang-messages|) and menus (see +|multilang-menus|). However, some of the user interface in MacVim (e.g. +Preference pane) are not yet localized. There are also some MacVim-specific +messages/menus in Vim that are not currently localized. Please file an issue +if you would like to see certain messages localized. ============================================================================== 15. Known bugs/missing features *macvim-todo* @@ -800,9 +800,8 @@ prominent bugs/missing features. - |modifyOtherKeys| support. This feature allows for more granular key mapping (e.g. differentiating and ) and isn't supported by the MacVim GUI yet. -- Localized menus are not supported. Choosing anything but "English" in the - "International" pane of "System Prefences" may break the menus (and - toolbar). +- Some parts of MacVim GUI and MacVim-specific messages in Vim are not + localized yet. - Sometimes multibyte characters look "too wide", i.e. they overlap the following character. It might help to change 'ambiwidth', or override the automatic font substitution by setting 'guifontwide' manually. @@ -863,11 +862,6 @@ You do not want MacVim to set up any key mappings. Solution: ~ See |cmd-movement|. -Scenario: ~ -Enabling localized menus breaks the toolbar and the menus as well. -Solution: ~ -This is a known problem, see |macvim-todo|. - Scenario: ~ When you click the (green) full screen button you want the window to maximize instead of going full screen. You would also like it to maximize both diff --git a/runtime/doc/tags b/runtime/doc/tags index 7dc605b5b4..8334cbd8c3 100644 --- a/runtime/doc/tags +++ b/runtime/doc/tags @@ -7798,6 +7798,7 @@ macvim-hints gui_mac.txt /*macvim-hints* macvim-international gui_mac.txt /*macvim-international* macvim-login-shell gui_mac.txt /*macvim-login-shell* macvim-menus gui_mac.txt /*macvim-menus* +macvim-multilang gui_mac.txt /*macvim-multilang* macvim-options gui_mac.txt /*macvim-options* macvim-preferences gui_mac.txt /*macvim-preferences* macvim-prefs gui_mac.txt /*macvim-prefs* diff --git a/runtime/lang/macvim_menu/README.md b/runtime/lang/macvim_menu/README.md new file mode 100644 index 0000000000..393790cef9 --- /dev/null +++ b/runtime/lang/macvim_menu/README.md @@ -0,0 +1,6 @@ +This folder contains MacVim-specific menu translations. While Vim already has menu translations, MacVim has some unique menu items and some Vim menu items are renamed to fit Apple's HIG better. As such, they need to be translated as well. Note that not 100% of the menu items in all locales are all translated right now, but the majority of them should be covered. + +Each locale has up to two translation files that will be sourced into the main menu translation file for that locale: + +* .apple.vim: This contains official Apple translations for common menu items such as "New Window" and "Font". They were auto-generated by using a script (`src/MacVim/scripts/extract-specific-localised-strings.swift`) to extracts official translations from Apple Developer's glossaries (https://developer.apple.com/download/more/?=glossaries). +* .custom.vim: This contains custom translations that don't have easy official translations to look up and have to be manually translated. diff --git a/runtime/lang/macvim_menu/menu_ca_es.latin1.apple.vim b/runtime/lang/macvim_menu/menu_ca_es.latin1.apple.vim new file mode 100644 index 0000000000..9e4e6a085f --- /dev/null +++ b/runtime/lang/macvim_menu/menu_ca_es.latin1.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Catalan). +" Do not modify this file directly! + +menutrans New\ Window Nova\ finestra +menutrans New\ Tab Nova\ pestanya +menutrans Open… Obrir… +menutrans Open\ Recent Obrir\ recents +menutrans Close\ Window:qa Tancar\ finestra +menutrans Close:q Tancar +menutrans Save\ As…:sav Desar\ com\ a… +menutrans Save\ All Desar-ho\ tot +menutrans Find Buscar +menutrans Find… Buscar… +menutrans Find\ Next Buscar\ el\ següent +menutrans Find\ Previous Buscar\ l’anterior +menutrans Use\ Selection\ for\ Find Utilitzar\ la\ selecció\ per\ buscar +menutrans Font Tipus\ de\ lletra +menutrans Show\ Fonts Mostrar\ els\ tipus\ de\ lletra +menutrans Bigger Més\ gran +menutrans Smaller Més\ petita +menutrans Minimize Minimitzar +menutrans Minimize\ All Minimitzar-ho\ tot +menutrans Zoom Zoom +menutrans Zoom\ All Fer\ zoom\ a\ tot +menutrans Show\ Next\ Tab Mostrar\ la\ pestanya\ següent +menutrans Show\ Previous\ Tab Mostrar\ la\ pestanya\ anterior +menutrans Bring\ All\ to\ Front Portar-ho\ tot\ a\ primer\ pla diff --git a/runtime/lang/macvim_menu/menu_ca_es.latin1.custom.vim b/runtime/lang/macvim_menu/menu_ca_es.latin1.custom.vim new file mode 100644 index 0000000000..30d9f15b0b --- /dev/null +++ b/runtime/lang/macvim_menu/menu_ca_es.latin1.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help Ajuda\ MacVim +menutrans MacVim\ Website Lloc\ web\ de\ MacVim +menutrans Vim\ Tutor Tutor\ del\ Vim diff --git a/runtime/lang/macvim_menu/menu_cs_cz.utf-8.apple.vim b/runtime/lang/macvim_menu/menu_cs_cz.utf-8.apple.vim new file mode 100644 index 0000000000..5a2bbe93cb --- /dev/null +++ b/runtime/lang/macvim_menu/menu_cs_cz.utf-8.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Czech). +" Do not modify this file directly! + +menutrans New\ Window Nové\ okno +menutrans New\ Tab Nový\ panel +menutrans Open… Otevřít… +menutrans Open\ Recent Otevřít\ poslední\ položku +menutrans Close\ Window:qa Zavřít\ okno +menutrans Close:q Zavřít +menutrans Save\ As…:sav Uložit\ jako… +menutrans Save\ All Uložit\ vše +menutrans Find Hledání +menutrans Find… Hledat… +menutrans Find\ Next Hledat\ další +menutrans Find\ Previous Hledat\ předchozí +menutrans Use\ Selection\ for\ Find Hledat\ výběr +menutrans Font Písmo +menutrans Show\ Fonts Zobrazit\ písma +menutrans Bigger Zvětšit +menutrans Smaller Zmenšit +menutrans Minimize Minimalizovat +menutrans Minimize\ All Minimalizovat\ vše +menutrans Zoom Přepnout\ velikost +menutrans Zoom\ All Přepnout\ velikost\ všech +menutrans Show\ Next\ Tab Zobrazit\ další\ panel +menutrans Show\ Previous\ Tab Zobrazit\ předchozí\ panel +menutrans Bring\ All\ to\ Front Převést\ vše\ do\ popředí diff --git a/runtime/lang/macvim_menu/menu_cs_cz.utf-8.custom.vim b/runtime/lang/macvim_menu/menu_cs_cz.utf-8.custom.vim new file mode 100644 index 0000000000..e1c15e9226 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_cs_cz.utf-8.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help Nápověda\ pro\ MacVim +menutrans MacVim\ Website Webové\ stránky\ MacVim +menutrans Vim\ Tutor Vim\ Tutor diff --git a/runtime/lang/macvim_menu/menu_da.utf-8.apple.vim b/runtime/lang/macvim_menu/menu_da.utf-8.apple.vim new file mode 100644 index 0000000000..d0ef89df91 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_da.utf-8.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Danish). +" Do not modify this file directly! + +menutrans New\ Window Nyt\ vindue +menutrans New\ Tab Ny\ fane +menutrans Open… Åbn… +menutrans Open\ Recent Åbn\ seneste +menutrans Close\ Window:qa Luk\ vindue +menutrans Close:q Luk +menutrans Save\ As…:sav Gem\ som… +menutrans Save\ All Gem\ alle +menutrans Find Find +menutrans Find… Find… +menutrans Find\ Next Find\ næste +menutrans Find\ Previous Find\ forrige +menutrans Use\ Selection\ for\ Find Søg\ med\ det\ valgte +menutrans Font Skrift +menutrans Show\ Fonts Vis\ skrifter +menutrans Bigger Større +menutrans Smaller Mindre +menutrans Minimize Minimer +menutrans Minimize\ All Minimer\ alle +menutrans Zoom Zoom +menutrans Zoom\ All Zoom\ alle +menutrans Show\ Next\ Tab Vis\ næste\ fane +menutrans Show\ Previous\ Tab Vis\ forrige\ fane +menutrans Bring\ All\ to\ Front Anbring\ alle\ forrest diff --git a/runtime/lang/macvim_menu/menu_da.utf-8.custom.vim b/runtime/lang/macvim_menu/menu_da.utf-8.custom.vim new file mode 100644 index 0000000000..46289901db --- /dev/null +++ b/runtime/lang/macvim_menu/menu_da.utf-8.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help Hjælp\ til\ MacVim +menutrans MacVim\ Website MacVim-websted +menutrans Vim\ Tutor Vim-vejledningen diff --git a/runtime/lang/macvim_menu/menu_de_de.latin1.apple.vim b/runtime/lang/macvim_menu/menu_de_de.latin1.apple.vim new file mode 100644 index 0000000000..de0bcb11dd --- /dev/null +++ b/runtime/lang/macvim_menu/menu_de_de.latin1.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (German). +" Do not modify this file directly! + +menutrans New\ Window Neues\ Fenster +menutrans New\ Tab Neuer\ Tab +menutrans Open… Öffnen\ … +menutrans Open\ Recent Benutzte\ Dokumente +menutrans Close\ Window:qa Fenster\ schließen +menutrans Close:q Schließen +menutrans Save\ As…:sav Sichern\ unter\ … +menutrans Save\ All Alles\ sichern +menutrans Find Suchen +menutrans Find… Suchen\ … +menutrans Find\ Next Weitersuchen\ (vorwärts) +menutrans Find\ Previous Weitersuchen\ (rückwärts) +menutrans Use\ Selection\ for\ Find Auswahl\ für\ Suche\ übernehmen +menutrans Font Schrift +menutrans Show\ Fonts Schriften\ einblenden +menutrans Bigger Größer +menutrans Smaller Kleiner +menutrans Minimize Im\ Dock\ ablegen +menutrans Minimize\ All Alle\ im\ Dock\ ablegen +menutrans Zoom Zoomen +menutrans Zoom\ All Alle\ zoomen +menutrans Show\ Next\ Tab Nächsten\ Tab\ anzeigen +menutrans Show\ Previous\ Tab Vorherigen\ Tab\ anzeigen +menutrans Bring\ All\ to\ Front Alle\ nach\ vorne\ bringen diff --git a/runtime/lang/macvim_menu/menu_de_de.latin1.custom.vim b/runtime/lang/macvim_menu/menu_de_de.latin1.custom.vim new file mode 100644 index 0000000000..57860e11b9 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_de_de.latin1.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help MacVim-Hilfe +menutrans MacVim\ Website MacVim-Website +menutrans Vim\ Tutor Vim\ Tutor diff --git a/runtime/lang/macvim_menu/menu_es_es.latin1.apple.vim b/runtime/lang/macvim_menu/menu_es_es.latin1.apple.vim new file mode 100644 index 0000000000..4674246dc8 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_es_es.latin1.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Spanish). +" Do not modify this file directly! + +menutrans New\ Window Nueva\ ventana +menutrans New\ Tab Nueva\ pestaña +menutrans Open… Abrir… +menutrans Open\ Recent Abrir\ recientes +menutrans Close\ Window:qa Cerrar\ ventana +menutrans Close:q Cerrar +menutrans Save\ As…:sav Guardar\ como… +menutrans Save\ All Guardar\ todo +menutrans Find Buscar +menutrans Find… Buscar… +menutrans Find\ Next Buscar\ siguiente +menutrans Find\ Previous Buscar\ anterior +menutrans Use\ Selection\ for\ Find Usar\ selección\ para\ buscar +menutrans Font Tipo\ de\ letra +menutrans Show\ Fonts Mostrar\ tipos\ de\ letra +menutrans Bigger Más\ grande +menutrans Smaller Más\ pequeño +menutrans Minimize Minimizar +menutrans Minimize\ All Minimizar\ todo +menutrans Zoom Zoom +menutrans Zoom\ All Aplicar\ zoom\ a\ todas\ las\ ventanas +menutrans Show\ Next\ Tab Mostrar\ pestaña\ siguiente +menutrans Show\ Previous\ Tab Mostrar\ pestaña\ anterior +menutrans Bring\ All\ to\ Front Traer\ todo\ al\ frente diff --git a/runtime/lang/macvim_menu/menu_es_es.latin1.custom.vim b/runtime/lang/macvim_menu/menu_es_es.latin1.custom.vim new file mode 100644 index 0000000000..27af40e0be --- /dev/null +++ b/runtime/lang/macvim_menu/menu_es_es.latin1.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help Ayuda\ de\ MacVim +menutrans MacVim\ Website Sitio\ web\ del\ MacVim +menutrans Vim\ Tutor Tutor\ de\ Vim diff --git a/runtime/lang/macvim_menu/menu_fi_fi.latin1.apple.vim b/runtime/lang/macvim_menu/menu_fi_fi.latin1.apple.vim new file mode 100644 index 0000000000..de90b0b116 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_fi_fi.latin1.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Finnish). +" Do not modify this file directly! + +menutrans New\ Window Uusi\ ikkuna +menutrans New\ Tab Uusi\ välilehti +menutrans Open… Avaa… +menutrans Open\ Recent Avaa\ äskeinen +menutrans Close\ Window:qa Sulje\ ikkuna +menutrans Close:q Sulje +menutrans Save\ As…:sav Tallenna\ nimellä… +menutrans Save\ All Tallenna\ kaikki +menutrans Find Etsi +menutrans Find… Etsi… +menutrans Find\ Next Etsi\ seuraava +menutrans Find\ Previous Etsi\ edellinen +menutrans Use\ Selection\ for\ Find Käytä\ valintaa\ etsinnässä +menutrans Font Fontti +menutrans Show\ Fonts Näytä\ fontit +menutrans Bigger Suurenna +menutrans Smaller Pienennä +menutrans Minimize Pienennä +menutrans Minimize\ All Pienennä\ kaikki +menutrans Zoom Zoomaa +menutrans Zoom\ All Zoomaa\ kaikki +menutrans Show\ Next\ Tab Näytä\ seuraava\ välilehti +menutrans Show\ Previous\ Tab Näytä\ edellinen\ välilehti +menutrans Bring\ All\ to\ Front Tuo\ kaikki\ eteen diff --git a/runtime/lang/macvim_menu/menu_fi_fi.latin1.custom.vim b/runtime/lang/macvim_menu/menu_fi_fi.latin1.custom.vim new file mode 100644 index 0000000000..cd5cfd3e2f --- /dev/null +++ b/runtime/lang/macvim_menu/menu_fi_fi.latin1.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help MacVim-ohje +menutrans MacVim\ Website MacVim-verkkosivusto +menutrans Vim\ Tutor Vim\ Tutor diff --git a/runtime/lang/macvim_menu/menu_fr_fr.latin1.apple.vim b/runtime/lang/macvim_menu/menu_fr_fr.latin1.apple.vim new file mode 100644 index 0000000000..c5e0e212d8 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_fr_fr.latin1.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Universal French). +" Do not modify this file directly! + +menutrans New\ Window Nouvelle\ fenêtre +menutrans New\ Tab Nouvel\ onglet +menutrans Open… Ouvrir… +menutrans Open\ Recent Ouvrir\ l’élément\ récent +menutrans Close\ Window:qa Fermer\ la\ fenêtre +menutrans Close:q Fermer +menutrans Save\ As…:sav Enregistrer\ sous… +menutrans Save\ All Tout\ enregistrer +menutrans Find Rechercher +menutrans Find… Rechercher… +menutrans Find\ Next Rechercher\ le\ suivant +menutrans Find\ Previous Rechercher\ le\ précédent +menutrans Use\ Selection\ for\ Find Rechercher\ la\ sélection +menutrans Font Police +menutrans Show\ Fonts Afficher\ les\ polices +menutrans Bigger Plus\ grand +menutrans Smaller Plus\ petit +menutrans Minimize Placer\ dans\ le\ Dock +menutrans Minimize\ All Placer\ toutes\ les\ fenêtres\ dans\ le\ Dock +menutrans Zoom Réduire/agrandir +menutrans Zoom\ All Réduire/agrandir\ toutes\ les\ fenêtres +menutrans Show\ Next\ Tab Afficher\ l’onglet\ suivant +menutrans Show\ Previous\ Tab Afficher\ l’onglet\ précédent +menutrans Bring\ All\ to\ Front Tout\ ramener\ au\ premier\ plan diff --git a/runtime/lang/macvim_menu/menu_fr_fr.latin1.custom.vim b/runtime/lang/macvim_menu/menu_fr_fr.latin1.custom.vim new file mode 100644 index 0000000000..ed03d7df93 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_fr_fr.latin1.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help Aide\ MacVim +menutrans MacVim\ Website Site\ web\ du\ MacVim +menutrans Vim\ Tutor Tutoriel\ de\ Vim diff --git a/runtime/lang/macvim_menu/menu_hu_hu.utf-8.apple.vim b/runtime/lang/macvim_menu/menu_hu_hu.utf-8.apple.vim new file mode 100644 index 0000000000..982c5fd70e --- /dev/null +++ b/runtime/lang/macvim_menu/menu_hu_hu.utf-8.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Hungarian). +" Do not modify this file directly! + +menutrans New\ Window Új\ ablak +menutrans New\ Tab Új\ lap +menutrans Open… Megnyitás… +menutrans Open\ Recent Legutóbbi\ megnyitása +menutrans Close\ Window:qa Ablak\ bezárása +menutrans Close:q Bezárás +menutrans Save\ As…:sav Mentés\ másként… +menutrans Save\ All Összes\ mentése +menutrans Find Keresés +menutrans Find… Keresés… +menutrans Find\ Next Következő\ keresése +menutrans Find\ Previous Előző\ keresése +menutrans Use\ Selection\ for\ Find A\ kijelölés\ használata\ kereséshez +menutrans Font Betűtípus +menutrans Show\ Fonts Betűtípusok\ megjelenítése +menutrans Bigger Nagyobb +menutrans Smaller Kisebb +menutrans Minimize Kis\ méret +menutrans Minimize\ All Összes\ minimalizálása +menutrans Zoom Nagyítás +menutrans Zoom\ All Összes\ nagyítása +menutrans Show\ Next\ Tab Következő\ lap\ megjelenítése +menutrans Show\ Previous\ Tab Előző\ lap\ megjelenítése +menutrans Bring\ All\ to\ Front Összes\ előtérbe\ hozása diff --git a/runtime/lang/macvim_menu/menu_hu_hu.utf-8.custom.vim b/runtime/lang/macvim_menu/menu_hu_hu.utf-8.custom.vim new file mode 100644 index 0000000000..9d540f533e --- /dev/null +++ b/runtime/lang/macvim_menu/menu_hu_hu.utf-8.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help A\ MacVim\ súgója +menutrans MacVim\ Website MacVim\ webhely +menutrans Vim\ Tutor Vim\ -\ oktatóban diff --git a/runtime/lang/macvim_menu/menu_it_it.latin1.apple.vim b/runtime/lang/macvim_menu/menu_it_it.latin1.apple.vim new file mode 100644 index 0000000000..f841d2b1e9 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_it_it.latin1.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Italian). +" Do not modify this file directly! + +menutrans New\ Window Nuova\ finestra +menutrans New\ Tab Nuovo\ pannello +menutrans Open… Apri… +menutrans Open\ Recent Apri\ recenti +menutrans Close\ Window:qa Chiudi\ finestra +menutrans Close:q Chiudi +menutrans Save\ As…:sav Salva\ col\ nome… +menutrans Save\ All Salva\ tutto +menutrans Find Cerca +menutrans Find… Cerca… +menutrans Find\ Next Cerca\ successivo +menutrans Find\ Previous Cerca\ precedente +menutrans Use\ Selection\ for\ Find Usa\ selezione\ per\ cercare +menutrans Font Font +menutrans Show\ Fonts Mostra\ font +menutrans Bigger Più\ grande +menutrans Smaller Più\ piccolo +menutrans Minimize Contrai +menutrans Minimize\ All Contrai\ tutto +menutrans Zoom Ridimensiona +menutrans Zoom\ All Ridimensiona\ tutto +menutrans Show\ Next\ Tab Mostra\ pannello\ successivo +menutrans Show\ Previous\ Tab Mostra\ pannello\ precedente +menutrans Bring\ All\ to\ Front Porta\ tutto\ in\ primo\ piano diff --git a/runtime/lang/macvim_menu/menu_it_it.latin1.custom.vim b/runtime/lang/macvim_menu/menu_it_it.latin1.custom.vim new file mode 100644 index 0000000000..272d9e95bb --- /dev/null +++ b/runtime/lang/macvim_menu/menu_it_it.latin1.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help Aiuto\ MacVim +menutrans MacVim\ Website Sito\ web\ dello\ MacVim +menutrans Vim\ Tutor Guida\ all'Editor\ Vim diff --git a/runtime/lang/macvim_menu/menu_ja_jp.utf-8.apple.vim b/runtime/lang/macvim_menu/menu_ja_jp.utf-8.apple.vim new file mode 100644 index 0000000000..45559ce27d --- /dev/null +++ b/runtime/lang/macvim_menu/menu_ja_jp.utf-8.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Japanese). +" Do not modify this file directly! + +menutrans New\ Window 新規ウインドウ +menutrans New\ Tab 新規タブ +menutrans Open… 開く… +menutrans Open\ Recent 最近使った項目を開く +menutrans Close\ Window:qa ウインドウを閉じる +menutrans Close:q 閉じる +menutrans Save\ As…:sav 別名で保存… +menutrans Save\ All すべてを保存 +menutrans Find 検索 +menutrans Find… 検索… +menutrans Find\ Next 次を検索 +menutrans Find\ Previous 前を検索 +menutrans Use\ Selection\ for\ Find 選択部分を検索に使用 +menutrans Font フォント +menutrans Show\ Fonts フォントパネルを表示 +menutrans Bigger 大きく +menutrans Smaller 小さく +menutrans Minimize しまう +menutrans Minimize\ All すべてしまう +menutrans Zoom 拡大/縮小 +menutrans Zoom\ All すべてを拡大/縮小 +menutrans Show\ Next\ Tab 次のタブを表示 +menutrans Show\ Previous\ Tab 前のタブを表示 +menutrans Bring\ All\ to\ Front すべてを手前に移動 diff --git a/runtime/lang/macvim_menu/menu_ja_jp.utf-8.custom.vim b/runtime/lang/macvim_menu/menu_ja_jp.utf-8.custom.vim new file mode 100644 index 0000000000..49b9ed2cbe --- /dev/null +++ b/runtime/lang/macvim_menu/menu_ja_jp.utf-8.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help MacVim\ ヘルプ +menutrans MacVim\ Website MacVim\ Webサイト +menutrans Vim\ Tutor Vim\ 教本\ (チュートリアル) diff --git a/runtime/lang/macvim_menu/menu_ko_kr.utf-8.apple.vim b/runtime/lang/macvim_menu/menu_ko_kr.utf-8.apple.vim new file mode 100644 index 0000000000..0e8c5db3b7 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_ko_kr.utf-8.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Korean). +" Do not modify this file directly! + +menutrans New\ Window 새로운\ 윈도우 +menutrans New\ Tab 새로운\ 탭 +menutrans Open… 열기… +menutrans Open\ Recent 최근\ 사용\ 열기 +menutrans Close\ Window:qa 윈도우\ 닫기 +menutrans Close:q 닫기 +menutrans Save\ As…:sav 별도\ 저장... +menutrans Save\ All 모두\ 저장 +menutrans Find 찾기 +menutrans Find… 찾기… +menutrans Find\ Next 다음\ 찾기 +menutrans Find\ Previous 이전\ 찾기 +menutrans Use\ Selection\ for\ Find 선택\ 부분으로\ 찾기 +menutrans Font 서체 +menutrans Show\ Fonts 서체\ 보기 +menutrans Bigger 크게 +menutrans Smaller 작게 +menutrans Minimize 최소화 +menutrans Minimize\ All 모두\ 최소화 +menutrans Zoom 확대/축소 +menutrans Zoom\ All 모두\ 확대/축소 +menutrans Show\ Next\ Tab 다음\ 탭\ 보기 +menutrans Show\ Previous\ Tab 이전\ 탭\ 보기 +menutrans Bring\ All\ to\ Front 모두\ 앞으로\ 가져오기 diff --git a/runtime/lang/macvim_menu/menu_ko_kr.utf-8.custom.vim b/runtime/lang/macvim_menu/menu_ko_kr.utf-8.custom.vim new file mode 100644 index 0000000000..25133bbfa4 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_ko_kr.utf-8.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help MacVim\ 도움말 +menutrans MacVim\ Website MacVim\ 웹\ 사이트 +menutrans Vim\ Tutor 빔\ 길잡이\ (Vim\ Tutor) diff --git a/runtime/lang/macvim_menu/menu_nl_nl.latin1.apple.vim b/runtime/lang/macvim_menu/menu_nl_nl.latin1.apple.vim new file mode 100644 index 0000000000..dcd87e6a30 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_nl_nl.latin1.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Dutch). +" Do not modify this file directly! + +menutrans New\ Window Nieuw\ venster +menutrans New\ Tab Nieuw\ tabblad +menutrans Open… Open… +menutrans Open\ Recent Open\ recente\ bestanden +menutrans Close\ Window:qa Sluit\ venster +menutrans Close:q Sluit +menutrans Save\ As…:sav Bewaar\ als… +menutrans Save\ All Bewaar\ alles +menutrans Find Zoek +menutrans Find… Zoek… +menutrans Find\ Next Zoek\ volgende +menutrans Find\ Previous Zoek\ vorige +menutrans Use\ Selection\ for\ Find Gebruik\ selectie\ voor\ zoekactie +menutrans Font Lettertype +menutrans Show\ Fonts Toon\ lettertypen +menutrans Bigger Groter +menutrans Smaller Kleiner +menutrans Minimize Minimaliseer +menutrans Minimize\ All Minimaliseer\ alles +menutrans Zoom Zoom\ in\ of\ uit +menutrans Zoom\ All Vergroot/verklein\ alles +menutrans Show\ Next\ Tab Toon\ volgende\ tabblad +menutrans Show\ Previous\ Tab Toon\ vorige\ tabblad +menutrans Bring\ All\ to\ Front Alles\ op\ voorgrond diff --git a/runtime/lang/macvim_menu/menu_nl_nl.latin1.custom.vim b/runtime/lang/macvim_menu/menu_nl_nl.latin1.custom.vim new file mode 100644 index 0000000000..b90a248431 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_nl_nl.latin1.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help MacVim\ Help +menutrans MacVim\ Website MacVim-website +menutrans Vim\ Tutor Vim\ lessen diff --git a/runtime/lang/macvim_menu/menu_no_no.latin1.apple.vim b/runtime/lang/macvim_menu/menu_no_no.latin1.apple.vim new file mode 100644 index 0000000000..1b38e8d0b9 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_no_no.latin1.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Norwegian). +" Do not modify this file directly! + +menutrans New\ Window Nytt\ vindu +menutrans New\ Tab Ny\ fane +menutrans Open… Åpne… +menutrans Open\ Recent Åpne\ sist\ brukte +menutrans Close\ Window:qa Lukk\ vindu +menutrans Close:q Lukk +menutrans Save\ As…:sav Arkiver\ som… +menutrans Save\ All Arkiver\ alle +menutrans Find Finn +menutrans Find… Finn… +menutrans Find\ Next Finn\ neste +menutrans Find\ Previous Finn\ forrige +menutrans Use\ Selection\ for\ Find Bruk\ markering\ til\ søk +menutrans Font Font +menutrans Show\ Fonts Vis\ fonter +menutrans Bigger Større +menutrans Smaller Mindre +menutrans Minimize Minimer +menutrans Minimize\ All Minimer\ alle +menutrans Zoom Zoom +menutrans Zoom\ All Zoom\ alle +menutrans Show\ Next\ Tab Vis\ neste\ fane +menutrans Show\ Previous\ Tab Vis\ forrige\ fane +menutrans Bring\ All\ to\ Front Legg\ alle\ øverst diff --git a/runtime/lang/macvim_menu/menu_no_no.latin1.custom.vim b/runtime/lang/macvim_menu/menu_no_no.latin1.custom.vim new file mode 100644 index 0000000000..971c52f8d7 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_no_no.latin1.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help Hjelp\ for\ MacVim +menutrans MacVim\ Website MacVim\ webbplats +menutrans Vim\ Tutor Innføringen\ i\ Vim diff --git a/runtime/lang/macvim_menu/menu_pl_pl.utf-8.apple.vim b/runtime/lang/macvim_menu/menu_pl_pl.utf-8.apple.vim new file mode 100644 index 0000000000..65028aa473 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_pl_pl.utf-8.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Polish). +" Do not modify this file directly! + +menutrans New\ Window Nowe\ okno +menutrans New\ Tab Nowa\ karta +menutrans Open… Otwórz… +menutrans Open\ Recent Otwórz\ ostatnie +menutrans Close\ Window:qa Zamknij\ okno +menutrans Close:q Zamknij +menutrans Save\ As…:sav Zachowaj\ jako… +menutrans Save\ All Zachowaj\ wszystko +menutrans Find Znajdź +menutrans Find… Znajdź… +menutrans Find\ Next Znajdź\ następne +menutrans Find\ Previous Znajdź\ poprzednie +menutrans Use\ Selection\ for\ Find Szukaj\ zaznaczonego\ tekstu +menutrans Font Czcionka +menutrans Show\ Fonts Pokaż\ czcionki +menutrans Bigger Większa +menutrans Smaller Mniejsza +menutrans Minimize Minimalizuj\ okno +menutrans Minimize\ All Minimalizuj\ wszystkie\ okna +menutrans Zoom Zoom +menutrans Zoom\ All Zoom\ wszystkich +menutrans Show\ Next\ Tab Pokaż\ następną\ kartę +menutrans Show\ Previous\ Tab Pokaż\ poprzednią\ kartę +menutrans Bring\ All\ to\ Front Umieść\ wszystko\ na\ wierzchu diff --git a/runtime/lang/macvim_menu/menu_pl_pl.utf-8.custom.vim b/runtime/lang/macvim_menu/menu_pl_pl.utf-8.custom.vim new file mode 100644 index 0000000000..74e895257c --- /dev/null +++ b/runtime/lang/macvim_menu/menu_pl_pl.utf-8.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help Pomoc\ MacVim +menutrans MacVim\ Website Witryna\ MacVim +menutrans Vim\ Tutor Tutorialu\ Vim diff --git a/runtime/lang/macvim_menu/menu_pt_br.apple.vim b/runtime/lang/macvim_menu/menu_pt_br.apple.vim new file mode 100644 index 0000000000..85d58f6bf4 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_pt_br.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Brazilian). +" Do not modify this file directly! + +menutrans New\ Window Nova\ Janela +menutrans New\ Tab Nova\ Aba +menutrans Open… Abrir… +menutrans Open\ Recent Abrir\ Recente +menutrans Close\ Window:qa Fechar\ Janela +menutrans Close:q Fechar +menutrans Save\ As…:sav Salvar\ Como… +menutrans Save\ All Salvar\ Tudo +menutrans Find Buscar +menutrans Find… Buscar… +menutrans Find\ Next Buscar\ Seguinte +menutrans Find\ Previous Buscar\ Anterior +menutrans Use\ Selection\ for\ Find Usar\ Seleção\ para\ Buscar +menutrans Font Fonte +menutrans Show\ Fonts Mostrar\ Fontes +menutrans Bigger Maior +menutrans Smaller Menor +menutrans Minimize Minimizar +menutrans Minimize\ All Minimizar\ Todas +menutrans Zoom Zoom +menutrans Zoom\ All Zoom\ em\ Todas +menutrans Show\ Next\ Tab Mostrar\ Aba\ Seguinte +menutrans Show\ Previous\ Tab Mostrar\ Aba\ Anterior +menutrans Bring\ All\ to\ Front Trazer\ Todas\ para\ a\ Frente diff --git a/runtime/lang/macvim_menu/menu_pt_br.custom.vim b/runtime/lang/macvim_menu/menu_pt_br.custom.vim new file mode 100644 index 0000000000..f6b460fe9a --- /dev/null +++ b/runtime/lang/macvim_menu/menu_pt_br.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help Ajuda\ do\ MacVim +menutrans MacVim\ Website Site\ MacVim +menutrans Vim\ Tutor Tutorial\ do\ Vim diff --git a/runtime/lang/macvim_menu/menu_pt_pt.apple.vim b/runtime/lang/macvim_menu/menu_pt_pt.apple.vim new file mode 100644 index 0000000000..06a1365e4a --- /dev/null +++ b/runtime/lang/macvim_menu/menu_pt_pt.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Portuguese). +" Do not modify this file directly! + +menutrans New\ Window Nova\ janela +menutrans New\ Tab Novo\ separador +menutrans Open… Abrir… +menutrans Open\ Recent Abrir\ documento\ recente +menutrans Close\ Window:qa Fechar\ janela +menutrans Close:q Fechar +menutrans Save\ As…:sav Guardar\ como… +menutrans Save\ All Guardar\ tudo +menutrans Find Procurar +menutrans Find… Procurar… +menutrans Find\ Next Procurar\ seguinte +menutrans Find\ Previous Procurar\ anterior +menutrans Use\ Selection\ for\ Find Procurar\ seleção +menutrans Font Tipo\ de\ letra +menutrans Show\ Fonts Mostrar\ tipos\ de\ letra +menutrans Bigger Letra\ maior +menutrans Smaller Letra\ mais\ pequena +menutrans Minimize Minimizar +menutrans Minimize\ All Minimizar\ todas +menutrans Zoom Aumentar/reduzir\ janela +menutrans Zoom\ All Aumentar/reduzir\ todas\ as\ janelas +menutrans Show\ Next\ Tab Mostrar\ separador\ seguinte +menutrans Show\ Previous\ Tab Mostrar\ separador\ anterior +menutrans Bring\ All\ to\ Front Passar\ tudo\ para\ a\ frente diff --git a/runtime/lang/macvim_menu/menu_pt_pt.custom.vim b/runtime/lang/macvim_menu/menu_pt_pt.custom.vim new file mode 100644 index 0000000000..f6b460fe9a --- /dev/null +++ b/runtime/lang/macvim_menu/menu_pt_pt.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help Ajuda\ do\ MacVim +menutrans MacVim\ Website Site\ MacVim +menutrans Vim\ Tutor Tutorial\ do\ Vim diff --git a/runtime/lang/macvim_menu/menu_ru_ru.apple.vim b/runtime/lang/macvim_menu/menu_ru_ru.apple.vim new file mode 100644 index 0000000000..72d2cb3f04 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_ru_ru.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Russian). +" Do not modify this file directly! + +menutrans New\ Window Новое\ окно +menutrans New\ Tab Новая\ вкладка +menutrans Open… Открыть… +menutrans Open\ Recent Недавние +menutrans Close\ Window:qa Закрыть\ окно +menutrans Close:q Закрыть +menutrans Save\ As…:sav Сохранить\ как… +menutrans Save\ All Сохранить\ все +menutrans Find Найти +menutrans Find… Найти… +menutrans Find\ Next Найти\ далее +menutrans Find\ Previous Найти\ ранее +menutrans Use\ Selection\ for\ Find Найти\ выбранное +menutrans Font Шрифт +menutrans Show\ Fonts Панель\ шрифтов +menutrans Bigger Увеличить +menutrans Smaller Уменьшить +menutrans Minimize Свернуть +menutrans Minimize\ All Убрать\ все\ окна\ в\ Dock +menutrans Zoom Изменить\ масштаб +menutrans Zoom\ All Изменить\ масштаб\ всех\ окон +menutrans Show\ Next\ Tab Показать\ следующую\ вкладку +menutrans Show\ Previous\ Tab Показать\ предыдущую\ вкладку +menutrans Bring\ All\ to\ Front Все\ окна\ —\ на\ передний\ план diff --git a/runtime/lang/macvim_menu/menu_ru_ru.custom.vim b/runtime/lang/macvim_menu/menu_ru_ru.custom.vim new file mode 100644 index 0000000000..f42218e036 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_ru_ru.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help Справка\ MacVim +menutrans MacVim\ Website Сайт\ MacVim +menutrans Vim\ Tutor Учебник\ Vim diff --git a/runtime/lang/macvim_menu/menu_sv_se.latin1.apple.vim b/runtime/lang/macvim_menu/menu_sv_se.latin1.apple.vim new file mode 100644 index 0000000000..5f2f159904 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_sv_se.latin1.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Swedish). +" Do not modify this file directly! + +menutrans New\ Window Nytt\ fönster +menutrans New\ Tab Ny\ flik +menutrans Open… Öppna… +menutrans Open\ Recent Öppna\ senaste +menutrans Close\ Window:qa Stäng\ fönster +menutrans Close:q Stäng +menutrans Save\ As…:sav Spara\ som… +menutrans Save\ All Spara\ alla +menutrans Find Sök +menutrans Find… Sök… +menutrans Find\ Next Sök\ nästa +menutrans Find\ Previous Sök\ föregående +menutrans Use\ Selection\ for\ Find Använd\ markering\ för\ sökning +menutrans Font Typsnitt +menutrans Show\ Fonts Visa\ typsnitt +menutrans Bigger Större +menutrans Smaller Mindre +menutrans Minimize Minimera +menutrans Minimize\ All Minimera\ alla +menutrans Zoom Zooma +menutrans Zoom\ All Zooma\ alla +menutrans Show\ Next\ Tab Visa\ nästa\ flik +menutrans Show\ Previous\ Tab Visa\ föregående\ flik +menutrans Bring\ All\ to\ Front Lägg\ alla\ överst diff --git a/runtime/lang/macvim_menu/menu_sv_se.latin1.custom.vim b/runtime/lang/macvim_menu/menu_sv_se.latin1.custom.vim new file mode 100644 index 0000000000..36121034fd --- /dev/null +++ b/runtime/lang/macvim_menu/menu_sv_se.latin1.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help MacVim\ Hjälp +menutrans MacVim\ Website MacVim\ webbplats +menutrans Vim\ Tutor Handledningen\ i\ Vim diff --git a/runtime/lang/macvim_menu/menu_tr_tr.utf-8.apple.vim b/runtime/lang/macvim_menu/menu_tr_tr.utf-8.apple.vim new file mode 100644 index 0000000000..5e7a83a0ba --- /dev/null +++ b/runtime/lang/macvim_menu/menu_tr_tr.utf-8.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Turkish). +" Do not modify this file directly! + +menutrans New\ Window Yeni\ Pencere +menutrans New\ Tab Yeni\ Sekme +menutrans Open… Aç… +menutrans Open\ Recent Son\ Kullanılanı\ Aç +menutrans Close\ Window:qa Pencereyi\ Kapat +menutrans Close:q Kapat +menutrans Save\ As…:sav Farklı\ Kaydet… +menutrans Save\ All Tümünü\ Kaydet +menutrans Find Bul +menutrans Find… Bul… +menutrans Find\ Next Sonrakini\ Bul +menutrans Find\ Previous Öncekini\ Bul +menutrans Use\ Selection\ for\ Find Bul\ İçin\ Seçimi\ Kullan +menutrans Font Font +menutrans Show\ Fonts Fontları\ Göster +menutrans Bigger Daha\ Büyük +menutrans Smaller Daha\ Küçük +menutrans Minimize Simge\ Durumuna\ Küçült +menutrans Minimize\ All Tümünü\ Simge\ Durumuna\ Küçült +menutrans Zoom Büyüt/Küçült +menutrans Zoom\ All Tümünü\ Büyüt/Küçült +menutrans Show\ Next\ Tab Sonraki\ Sekmeyi\ Göster +menutrans Show\ Previous\ Tab Önceki\ Sekmeyi\ Göster +menutrans Bring\ All\ to\ Front Tümünü\ Öne\ Getir diff --git a/runtime/lang/macvim_menu/menu_tr_tr.utf-8.custom.vim b/runtime/lang/macvim_menu/menu_tr_tr.utf-8.custom.vim new file mode 100644 index 0000000000..af9477736b --- /dev/null +++ b/runtime/lang/macvim_menu/menu_tr_tr.utf-8.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help MacVim\ Yardım +menutrans MacVim\ Website MacVim\ web\ sitesi +menutrans Vim\ Tutor Vim\ Tutor diff --git a/runtime/lang/macvim_menu/menu_zh_cn.utf-8.apple.vim b/runtime/lang/macvim_menu/menu_zh_cn.utf-8.apple.vim new file mode 100644 index 0000000000..8d642f73df --- /dev/null +++ b/runtime/lang/macvim_menu/menu_zh_cn.utf-8.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Simplified Chinese). +" Do not modify this file directly! + +menutrans New\ Window 新建窗口 +menutrans New\ Tab 新建标签页 +menutrans Open… 打开… +menutrans Open\ Recent 打开最近使用 +menutrans Close\ Window:qa 关闭窗口 +menutrans Close:q 关闭 +menutrans Save\ As…:sav 存储为… +menutrans Save\ All 全部存储 +menutrans Find 查找 +menutrans Find… 查找… +menutrans Find\ Next 查找下一个 +menutrans Find\ Previous 查找上一个 +menutrans Use\ Selection\ for\ Find 查找所选内容 +menutrans Font 字体 +menutrans Show\ Fonts 显示字体 +menutrans Bigger 较大 +menutrans Smaller 较小 +menutrans Minimize 最小化 +menutrans Minimize\ All 全部最小化 +menutrans Zoom 缩放 +menutrans Zoom\ All 全部缩放 +menutrans Show\ Next\ Tab 显示下一个标签页 +menutrans Show\ Previous\ Tab 显示上一个标签页 +menutrans Bring\ All\ to\ Front 前置全部窗口 diff --git a/runtime/lang/macvim_menu/menu_zh_cn.utf-8.custom.vim b/runtime/lang/macvim_menu/menu_zh_cn.utf-8.custom.vim new file mode 100644 index 0000000000..dcca701a8f --- /dev/null +++ b/runtime/lang/macvim_menu/menu_zh_cn.utf-8.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help MacVim帮助 +menutrans MacVim\ Website MacVim网站 +menutrans Vim\ Tutor Vim教程 diff --git a/runtime/lang/macvim_menu/menu_zh_tw.utf-8.apple.vim b/runtime/lang/macvim_menu/menu_zh_tw.utf-8.apple.vim new file mode 100644 index 0000000000..d2ca013b22 --- /dev/null +++ b/runtime/lang/macvim_menu/menu_zh_tw.utf-8.apple.vim @@ -0,0 +1,27 @@ +" This file was generated from Apple localization glossaries (Traditional Chinese). +" Do not modify this file directly! + +menutrans New\ Window 新增視窗 +menutrans New\ Tab 新增標籤頁 +menutrans Open… 打開⋯ +menutrans Open\ Recent 打開最近使用過的檔案 +menutrans Close\ Window:qa 關閉視窗 +menutrans Close:q 關閉 +menutrans Save\ As…:sav 儲存為⋯ +menutrans Save\ All 全部儲存 +menutrans Find 尋找 +menutrans Find… 尋找⋯ +menutrans Find\ Next 尋找下一個 +menutrans Find\ Previous 尋找上一個 +menutrans Use\ Selection\ for\ Find 使用所選範圍尋找 +menutrans Font 字體 +menutrans Show\ Fonts 顯示字體 +menutrans Bigger 放大 +menutrans Smaller 縮小 +menutrans Minimize 縮到最小 +menutrans Minimize\ All 將全部縮到最小 +menutrans Zoom 縮放 +menutrans Zoom\ All 縮放全部 +menutrans Show\ Next\ Tab 顯示下一個標籤頁 +menutrans Show\ Previous\ Tab 顯示上一個標籤頁 +menutrans Bring\ All\ to\ Front 將此程式所有視窗移至最前 diff --git a/runtime/lang/macvim_menu/menu_zh_tw.utf-8.custom.vim b/runtime/lang/macvim_menu/menu_zh_tw.utf-8.custom.vim new file mode 100644 index 0000000000..3b10abd73b --- /dev/null +++ b/runtime/lang/macvim_menu/menu_zh_tw.utf-8.custom.vim @@ -0,0 +1,3 @@ +menutrans MacVim\ Help MacVim輔助說明 +menutrans MacVim\ Website MacVim網站 +menutrans Vim\ Tutor Vim教程 diff --git a/runtime/lang/menu_ca_es.latin1.vim b/runtime/lang/menu_ca_es.latin1.vim index 6e30eef9df..bc11803cc6 100644 --- a/runtime/lang/menu_ca_es.latin1.vim +++ b/runtime/lang/menu_ca_es.latin1.vim @@ -312,5 +312,8 @@ menutrans Config Configuraci menutrans Set\ '&syntax'\ only Noms\ el\ ressaltat\ de\ sintaxi menutrans Set\ '&filetype'\ too Carrega\ tamb\ els\ plugins +so $VIMRUNTIME/lang/macvim_menu/menu_ca_es.latin1.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_ca_es.latin1.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_cs_cz.utf-8.vim b/runtime/lang/menu_cs_cz.utf-8.vim index a7be2c8b39..8f07f44b64 100644 --- a/runtime/lang/menu_cs_cz.utf-8.vim +++ b/runtime/lang/menu_cs_cz.utf-8.vim @@ -300,6 +300,9 @@ let g:menutrans_textwidth_dialog = "Zadejte délku řádku (0 pro zakázání fo let g:menutrans_fileformat_dialog = "Vyberte typ konce řádků" " }}}" +so $VIMRUNTIME/lang/macvim_menu/menu_cs_cz.utf-8.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_cs_cz.utf-8.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_da.utf-8.vim b/runtime/lang/menu_da.utf-8.vim index a11213c05c..ed881a9ca4 100644 --- a/runtime/lang/menu_da.utf-8.vim +++ b/runtime/lang/menu_da.utf-8.vim @@ -457,6 +457,9 @@ menut History Historik menut Targets Mål +so $VIMRUNTIME/lang/macvim_menu/menu_da.utf-8.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_da.utf-8.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_de_de.latin1.vim b/runtime/lang/menu_de_de.latin1.vim index d836118ea1..1f2cd3547e 100644 --- a/runtime/lang/menu_de_de.latin1.vim +++ b/runtime/lang/menu_de_de.latin1.vim @@ -307,5 +307,8 @@ let g:menutrans_textwidth_dialog = "Geben Sie eine neue Text-Breite ein (oder 0, let g:menutrans_fileformat_dialog = "Whlen Sie ein Datei-Format aus" " }}} +so $VIMRUNTIME/lang/macvim_menu/menu_de_de.latin1.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_de_de.latin1.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_es_es.latin1.vim b/runtime/lang/menu_es_es.latin1.vim index 97f38a765d..c62599c169 100644 --- a/runtime/lang/menu_es_es.latin1.vim +++ b/runtime/lang/menu_es_es.latin1.vim @@ -319,5 +319,8 @@ menutrans &Convert\ to\ HTML &Convertir\ a\ HTML " Find Help dialog text let g:menutrans_help_dialog = "Introduzca un nombre de comando o palabra para obtener ayuda;\n\nAnteponga i_ para comandos de entrada (e.g.: i_CTRL-X)\nAnteponga c_ para comandos de la lnea de comandos (e.g.: c_)\nAnteponga ` para un nombre de opcin (e.g.: `shiftwidth`)" +so $VIMRUNTIME/lang/macvim_menu/menu_es_es.latin1.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_es_es.latin1.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_fi_fi.latin1.vim b/runtime/lang/menu_fi_fi.latin1.vim index c68f232eec..d87de1c58c 100644 --- a/runtime/lang/menu_fi_fi.latin1.vim +++ b/runtime/lang/menu_fi_fi.latin1.vim @@ -472,6 +472,9 @@ fun! Do_toolbar_tmenu() tmenu ToolBar.FindHelp Etsi ohjeesta endfun +so $VIMRUNTIME/lang/macvim_menu/menu_fi_fi.latin1.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_fi_fi.latin1.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_fr_fr.latin1.vim b/runtime/lang/menu_fr_fr.latin1.vim index 940bd96545..4f08f599a1 100644 --- a/runtime/lang/menu_fr_fr.latin1.vim +++ b/runtime/lang/menu_fr_fr.latin1.vim @@ -469,5 +469,8 @@ menutrans Co&lor\ test Tester\ les\ co&uleurs menutrans &Highlight\ test Tester\ les\ g&roupes\ de\ surbrillance menutrans &Convert\ to\ HTML Con&vertir\ en\ HTML +so $VIMRUNTIME/lang/macvim_menu/menu_fr_fr.latin1.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_fr_fr.latin1.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_hu_hu.utf-8.vim b/runtime/lang/menu_hu_hu.utf-8.vim index 092abc0857..87506d5a05 100644 --- a/runtime/lang/menu_hu_hu.utf-8.vim +++ b/runtime/lang/menu_hu_hu.utf-8.vim @@ -243,5 +243,8 @@ let g:menutrans_tags_dialog = "Írd be a tag fájl lehetséges elérési útjait let g:menutrans_textwidth_dialog = "Írd be a szöveg szélességét (0 = formázás kikapcsolva)" let g:menutrans_fileformat_dialog = "Válaszd ki a fájl formátumát" +so $VIMRUNTIME/lang/macvim_menu/menu_hu_hu.utf-8.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_hu_hu.utf-8.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_it_it.latin1.vim b/runtime/lang/menu_it_it.latin1.vim index 927c3c9e67..44f259be60 100644 --- a/runtime/lang/menu_it_it.latin1.vim +++ b/runtime/lang/menu_it_it.latin1.vim @@ -385,6 +385,9 @@ menut TagJump Vai\ a\ Tag menut Help Aiuto menut FindHelp Cerca\ in\ Aiuto +so $VIMRUNTIME/lang/macvim_menu/menu_it_it.latin1.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_it_it.latin1.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_ja_jp.utf-8.vim b/runtime/lang/menu_ja_jp.utf-8.vim index 5835868983..38e308bb83 100644 --- a/runtime/lang/menu_ja_jp.utf-8.vim +++ b/runtime/lang/menu_ja_jp.utf-8.vim @@ -307,6 +307,9 @@ menutrans Co&lor\ test カラーテスト(&L) menutrans &Highlight\ test ハイライトテスト(&H) menutrans &Convert\ to\ HTML HTMLへコンバート(&C) +so $VIMRUNTIME/lang/macvim_menu/menu_ja_jp.utf-8.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_ja_jp.utf-8.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_ko_kr.utf-8.vim b/runtime/lang/menu_ko_kr.utf-8.vim index d036853c51..b062716b7a 100644 --- a/runtime/lang/menu_ko_kr.utf-8.vim +++ b/runtime/lang/menu_ko_kr.utf-8.vim @@ -261,5 +261,8 @@ menutrans Co&lor\ test 색\ 시험(&l) menutrans &Highlight\ test Highlight\ 시험(&H) menutrans &Convert\ to\ HTML HTML로\ 변환(&C) +so $VIMRUNTIME/lang/macvim_menu/menu_ko_kr.utf-8.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_ko_kr.utf-8.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_nl_nl.latin1.vim b/runtime/lang/menu_nl_nl.latin1.vim index e1d4506c88..8df184268e 100644 --- a/runtime/lang/menu_nl_nl.latin1.vim +++ b/runtime/lang/menu_nl_nl.latin1.vim @@ -241,5 +241,8 @@ let g:menutrans_tags_dialog = "Typ namen van tag bestanden.\nGebruik commas tuss let g:menutrans_textwidth_dialog = "Typ de nieuwe tekst breedte (0 om formatteren uit the schakelen): " let g:menutrans_fileformat_dialog = "Selecteer formaat voor het schrijven van het bestand" +so $VIMRUNTIME/lang/macvim_menu/menu_nl_nl.latin1.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_nl_nl.latin1.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_no_no.latin1.vim b/runtime/lang/menu_no_no.latin1.vim index 1a5bb4011a..d06774436e 100644 --- a/runtime/lang/menu_no_no.latin1.vim +++ b/runtime/lang/menu_no_no.latin1.vim @@ -231,6 +231,9 @@ endif let g:menutrans_textwidth_dialog = "Velg ny tekstbredde (0 for forhindre formatering): " let g:menutrans_fileformat_dialog = "Velg filformat som filen skal lagres med" +so $VIMRUNTIME/lang/macvim_menu/menu_no_no.latin1.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_no_no.latin1.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_pl_pl.utf-8.vim b/runtime/lang/menu_pl_pl.utf-8.vim index 871b4fad92..5b312c6068 100644 --- a/runtime/lang/menu_pl_pl.utf-8.vim +++ b/runtime/lang/menu_pl_pl.utf-8.vim @@ -288,5 +288,8 @@ let g:menutrans_textwidth_dialog = "Wprowadź nową szerokość tekstu (0 wyłą let g:menutrans_fileformat_dialog = "Wybierz format w którym ten plik ma być zapisany" let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n&Anuluj" +so $VIMRUNTIME/lang/macvim_menu/menu_pl_pl.utf-8.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_pl_pl.utf-8.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_pt_br.vim b/runtime/lang/menu_pt_br.vim index 1e425008de..8730d28110 100644 --- a/runtime/lang/menu_pt_br.vim +++ b/runtime/lang/menu_pt_br.vim @@ -286,5 +286,8 @@ menutrans &Convert\ to\ HTML &Converter\ para\ HTML " Find Help dialog text let g:menutrans_help_dialog = "Digite um comando ou palavra para obter ajuda;\n\nAnteponha i_ para comandos de entrada (ex.: i_CTRL-X)\nAnteponha c_ para comandos da linha de comandos (ex.: c_)\nAnteponha ` para um nome de opo (ex.: `shiftwidth`)" +so $VIMRUNTIME/lang/macvim_menu/menu_pt_br.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_pt_br.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_pt_pt.vim b/runtime/lang/menu_pt_pt.vim index c3265c0064..9ab4868972 100644 --- a/runtime/lang/menu_pt_pt.vim +++ b/runtime/lang/menu_pt_pt.vim @@ -265,5 +265,8 @@ menutrans &Convert\ to\ HTML &Converter\ para\ HTML " Find Help dialog text let g:menutrans_help_dialog = "Digite um comando ou palavra para obter ajuda;\n\nAnteponha i_ para comandos de entrada (ex.: i_CTRL-X)\nAnteponha c_ para comandos da linha de comandos (ex.: c_)\nAnteponha ` para um nome de opo (ex.: `shiftwidth`)" +so $VIMRUNTIME/lang/macvim_menu/menu_pt_pt.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_pt_pt.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_ru_ru.vim b/runtime/lang/menu_ru_ru.vim index 22a1c1693a..e2eaa596b2 100644 --- a/runtime/lang/menu_ru_ru.vim +++ b/runtime/lang/menu_ru_ru.vim @@ -332,5 +332,8 @@ let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\nО&тмена" " let menutrans_no_file = "[Нет файла]" +so $VIMRUNTIME/lang/macvim_menu/menu_ru_ru.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_ru_ru.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_sv_se.latin1.vim b/runtime/lang/menu_sv_se.latin1.vim index 53e1f40790..6dc5734ff8 100644 --- a/runtime/lang/menu_sv_se.latin1.vim +++ b/runtime/lang/menu_sv_se.latin1.vim @@ -251,5 +251,8 @@ let g:menutrans_tags_dialog = "Skriv in namn p let g:menutrans_textwidth_dialog = "Vlj ny textbredd (0 fr att frhindra formatering): " let g:menutrans_fileformat_dialog = "Vlj filformat som filen ska sparas med" +so $VIMRUNTIME/lang/macvim_menu/menu_sv_se.latin1.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_sv_se.latin1.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_tr_tr.utf-8.vim b/runtime/lang/menu_tr_tr.utf-8.vim index 02a095643c..1f6ff3a6b0 100644 --- a/runtime/lang/menu_tr_tr.utf-8.vim +++ b/runtime/lang/menu_tr_tr.utf-8.vim @@ -304,5 +304,9 @@ let g:menutrans_textwidth_dialog = "Biçimlendirme için metin genişliğini bel let g:menutrans_fileformat_dialog = "Dosya biçimi seçin" let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\nİ&ptal" let menutrans_no_file = "[Dosya Yok]" + +so $VIMRUNTIME/lang/macvim_menu/menu_tr_tr.utf-8.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_tr_tr.utf-8.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_zh_cn.utf-8.vim b/runtime/lang/menu_zh_cn.utf-8.vim index f7b086d27d..4fc8a70a7f 100644 --- a/runtime/lang/menu_zh_cn.utf-8.vim +++ b/runtime/lang/menu_zh_cn.utf-8.vim @@ -446,6 +446,9 @@ menutrans Set\ '&filetype'\ Too 也设置\ 'filetype'(&F) " endif " }}} +so $VIMRUNTIME/lang/macvim_menu/menu_zh_cn.utf-8.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_zh_cn.utf-8.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/lang/menu_zh_tw.utf-8.vim b/runtime/lang/menu_zh_tw.utf-8.vim index 7bef83ce9a..f788144620 100644 --- a/runtime/lang/menu_zh_tw.utf-8.vim +++ b/runtime/lang/menu_zh_tw.utf-8.vim @@ -285,6 +285,9 @@ if has("toolbar") endif " }}} +so $VIMRUNTIME/lang/macvim_menu/menu_zh_tw.utf-8.apple.vim +so $VIMRUNTIME/lang/macvim_menu/menu_zh_tw.utf-8.custom.vim + let &cpo = s:keepcpo unlet s:keepcpo diff --git a/runtime/menu.vim b/runtime/menu.vim index 0e443b9320..b0595487ca 100644 --- a/runtime/menu.vim +++ b/runtime/menu.vim @@ -85,10 +85,10 @@ if has("gui_macvim") tln 9998.320 Window.Toggle\ Full\ Screen\ Mode :set invfullscreen an 9998.330 Window.-SEP1- " TODO! Grey out if no tabs are visible. - an 9998.340 Window.Select\ Next\ Tab :tabnext - tln 9998.340 Window.Select\ Next\ Tab :tabnext - an 9998.350 Window.Select\ Previous\ Tab :tabprevious - tln 9998.350 Window.Select\ Previous\ Tab :tabprevious + an 9998.340 Window.Show\ Next\ Tab :tabnext + tln 9998.340 Window.Show\ Next\ Tab :tabnext + an 9998.350 Window.Show\ Previous\ Tab :tabprevious + tln 9998.350 Window.Show\ Previous\ Tab :tabprevious an 9998.360 Window.-SEP2- an 9998.370 Window.Bring\ All\ To\ Front an 9998.380 Window.Stay\ in\ Front @@ -100,7 +100,7 @@ endif if has("gui_macvim") an 9999.1 &Help.MacVim\ Help :h gui_mac tln 9999.1 &Help.MacVim\ Help :h gui_mac - an 9999.2 Help.MacVim\ Website + an 9999.2 &Help.MacVim\ Website an 9999.3 &Help.-sep0- endif if has("gui_macvim") @@ -157,14 +157,14 @@ if has("gui_macvim") an 10.290 &File.New\ Window an 10.295 &File.New\ Tab :tabnew tln 10.295 &File.New\ Tab :tabnew - an 10.310 &File.Open\.\.\. + an 10.310 &File.Open… an 10.325 &File.Open\ Recent an 10.328 &File.-SEP0- an 10.330 &File.Close\ Window:qa :conf qa tln 10.330 &File.Close\ Window:qa :conf qa - an 10.332 &File.Close :conf q + an 10.332 &File.Close:q :conf q an 10.341 &File.Save\ All :browse conf wa - an 10.350 &File.Save\ As\.\.\.:sav :browse confirm saveas + an 10.350 &File.Save\ As…:sav :browse confirm saveas else endif if !has("gui_macvim") @@ -183,7 +183,9 @@ if !has("gui_macvim") endif an 10.335 &File.-SEP1- an 10.340 &File.&Save:w :if expand("%") == ""browse confirm welseconfirm wendif -an 10.350 &File.Save\ &As\.\.\.:sav :browse confirm saveas +if !has("gui_macvim") + an 10.350 &File.Save\ &As\.\.\.:sav :browse confirm saveas +endif if has("diff") an 10.400 &File.-SEP2- @@ -258,9 +260,9 @@ if has("win32") || has("gui_gtk") || has("gui_kde") || has("gui_motif") vunmenu &Edit.Find\ and\ Rep&lace\.\.\. vnoremenu &Edit.Find\ and\ Rep&lace\.\.\. y:promptrepl =FixFText() elseif has("gui_macvim") - an 20.410.10 &Edit.Find.Find\.\.\. :promptfind - vunmenu &Edit.Find.Find\.\.\. - vnoremenu &Edit.Find.Find\.\.\. y:promptfind =FixFText() + an 20.410.10 &Edit.Find.Find… :promptfind + vunmenu &Edit.Find.Find… + vnoremenu &Edit.Find.Find… y:promptfind =FixFText() an 20.410.20 &Edit.Find.Find\ Next an 20.410.30 &Edit.Find.Find\ Previous vnoremenu 20.410.35 &Edit.Find.Use\ Selection\ for\ Find @@ -497,7 +499,6 @@ elseif has("gui_macvim") an 20.475.20 &Edit.Font.-SEP5- an 20.475.30 &Edit.Font.Bigger an 20.475.40 &Edit.Font.Smaller - an 20.480 &Edit.Emoji\ &&\ Symbols endif " Programming menu @@ -1300,14 +1301,14 @@ if has("gui_macvim") " macm File.New\ Window key= action=newWindow: macm File.New\ Tab key= - macm File.Open\.\.\. key= action=fileOpen: + macm File.Open… key= action=fileOpen: macm File.Open\ Tab\.\.\.:tabnew key= macm File.Open\ Recent action=recentFilesDummy: macm File.Close\ Window:qa key= macm File.Close key= action=performClose: macm File.Save:w key= macm File.Save\ All key= alt=YES - macm File.Save\ As\.\.\.:sav key= + macm File.Save\ As…:sav key= macm File.Print key= macm Edit.Undou key= action=undo: @@ -1316,14 +1317,13 @@ if has("gui_macvim") macm Edit.Copy"+y key= action=copy: macm Edit.Paste"+gP key= action=paste: macm Edit.Select\ AllggVG key= action=selectAll: - macm Edit.Find.Find\.\.\. key= + macm Edit.Find.Find… key= macm Edit.Find.Find\ Next key= action=findNext: macm Edit.Find.Find\ Previous key= action=findPrevious: macm Edit.Find.Use\ Selection\ for\ Find key= action=useSelectionForFind: macm Edit.Font.Show\ Fonts action=orderFrontFontPanel: macm Edit.Font.Bigger key= action=fontSizeUp: macm Edit.Font.Smaller key= action=fontSizeDown: - macm Edit.Emoji\ &&\ Symbols key= action=orderFrontCharacterPalette: macm Tools.Spelling.To\ Next\ Error]s key= macm Tools.Spelling.Suggest\ Correctionsz= key= @@ -1339,8 +1339,8 @@ if has("gui_macvim") macm Window.Zoom key= action=performZoom: macm Window.Zoom\ All key= action=zoomAll: alt=YES macm Window.Toggle\ Full\ Screen\ Mode key= - macm Window.Select\ Next\ Tab key= - macm Window.Select\ Previous\ Tab key= + macm Window.Show\ Next\ Tab key= + macm Window.Show\ Previous\ Tab key= macm Window.Bring\ All\ To\ Front action=arrangeInFront: macm Window.Stay\ in\ Front action=stayInFront: macm Window.Stay\ in\ Back action=stayInBack: diff --git a/src/MacVim/Base.lproj/FindAndReplace.xib b/src/MacVim/Base.lproj/FindAndReplace.xib new file mode 100644 index 0000000000..e48015b4df --- /dev/null +++ b/src/MacVim/Base.lproj/FindAndReplace.xib @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/MacVim/English.lproj/MainMenu.nib/designable.nib b/src/MacVim/Base.lproj/MainMenu.xib similarity index 95% rename from src/MacVim/English.lproj/MainMenu.nib/designable.nib rename to src/MacVim/Base.lproj/MainMenu.xib index d863cec491..a6ef8ffd01 100644 --- a/src/MacVim/English.lproj/MainMenu.nib/designable.nib +++ b/src/MacVim/Base.lproj/MainMenu.xib @@ -1,8 +1,8 @@ - + - - + + @@ -86,7 +86,7 @@ - + @@ -139,11 +139,6 @@ - - - - - diff --git a/src/MacVim/English.lproj/Preferences.nib/designable.nib b/src/MacVim/Base.lproj/Preferences.xib similarity index 89% rename from src/MacVim/English.lproj/Preferences.nib/designable.nib rename to src/MacVim/Base.lproj/Preferences.xib index 3f402568fe..303551a42b 100644 --- a/src/MacVim/English.lproj/Preferences.nib/designable.nib +++ b/src/MacVim/Base.lproj/Preferences.xib @@ -1,9 +1,8 @@ - + - - - + + @@ -23,11 +22,11 @@ - + - + @@ -36,7 +35,7 @@ - + @@ -68,11 +67,11 @@ - + - + @@ -81,7 +80,7 @@ - + @@ -108,7 +107,7 @@ - + @@ -135,7 +134,7 @@ - + @@ -147,11 +146,11 @@ - + - + @@ -160,7 +159,7 @@ - + @@ -180,11 +179,11 @@ - + - - - + @@ -230,11 +229,11 @@ - + - + @@ -243,7 +242,7 @@ - + @@ -279,7 +278,7 @@ - + @@ -291,11 +290,11 @@ - + - - + @@ -319,7 +318,7 @@ - - + @@ -375,7 +374,7 @@ - - + @@ -397,7 +396,7 @@ - - + @@ -418,7 +417,7 @@ -