annotate nsis/lang/greek.nsi @ 36176:88b53a11b505 default tip

runtime(dist): do not output a message if executable is not found Commit: https://github.com/vim/vim/commit/e6b01cfe01a2722ec55a011ae04c4c404e88f924 Author: Christian Brabandt <cb@256bit.org> Date: Fri Sep 20 22:26:56 2024 +0200 runtime(dist): do not output a message if executable is not found closes: https://github.com/vim/vim/issues/15705 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Fri, 20 Sep 2024 22:30:07 +0200
parents 879a61a9aa07
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
34492
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 # vi:set ts=8 sts=4 sw=4 et fdm=marker:
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2 #
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3 # greek.nsi: Greek language strings for gvim NSIS installer.
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
4 #
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
5 # Locale ID : 1032
34670
879a61a9aa07 NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents: 34492
diff changeset
6 # Locale Name : el
34492
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
7 # fileencoding : UTF-8
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
8 # Author : Christos Longros
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
9
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
10 !insertmacro MUI_LANGUAGE "Greek"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
11
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
12
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
13 # Overwrite the default translation.
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
14 # These strings should be always English. Otherwise dosinst.c fails.
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
15 LangString ^SetupCaption ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
16 "$(^Name) Setup"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
17 LangString ^UninstallCaption ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
18 "$(^Name) Uninstall"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
19
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
20 ##############################################################################
34670
879a61a9aa07 NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents: 34492
diff changeset
21 # Translated license file for the license page {{{1
879a61a9aa07 NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents: 34492
diff changeset
22 ##############################################################################
879a61a9aa07 NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents: 34492
diff changeset
23
879a61a9aa07 NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents: 34492
diff changeset
24 LicenseLangString page_lic_file 0 "${VIMRT}\doc\uganda.nsis.txt"
879a61a9aa07 NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents: 34492
diff changeset
25 #LicenseLangString page_lic_file ${LANG_GREEK} "${VIMRT}\doc\uganda.nsis.elx"
879a61a9aa07 NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents: 34492
diff changeset
26
879a61a9aa07 NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents: 34492
diff changeset
27 ##############################################################################
879a61a9aa07 NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents: 34492
diff changeset
28 # Translated README.txt file, which is opened after installation {{{1
879a61a9aa07 NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents: 34492
diff changeset
29 ##############################################################################
879a61a9aa07 NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents: 34492
diff changeset
30
879a61a9aa07 NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents: 34492
diff changeset
31 LangString vim_readme_file 0 "README.txt"
879a61a9aa07 NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents: 34492
diff changeset
32 #LangString vim_readme_file ${LANG_GREEK} "README.elx.txt"
879a61a9aa07 NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents: 34492
diff changeset
33
879a61a9aa07 NSIS: Possibility to include translated license and README.txt files (#14311)
Christian Brabandt <cb@256bit.org>
parents: 34492
diff changeset
34 ##############################################################################
34492
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
35 # MUI Configuration Strings {{{1
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
36 ##############################################################################
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
37
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
38 #LangString str_dest_folder ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
39 # "Φάκελος προορισμός (Πρέπει να τελειώνει σε $\"vim$\")"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
40
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
41 LangString str_show_readme ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
42 "Εμφάνιση README μετά την ολοκλήρωση της εγκατάστασης"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
43
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
44 # Install types:
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
45 LangString str_type_typical ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
46 "Typical"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
47
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
48 LangString str_type_minimal ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
49 "Minimal"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
50
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
51 LangString str_type_full ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
52 "Full"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
53
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
54
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
55 ##############################################################################
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
56 # Section Titles & Description {{{1
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
57 ##############################################################################
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
58
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
59 LangString str_section_old_ver ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
60 "Απεγκατάσταση υπάρχουσων εκδόσεων"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
61 LangString str_desc_old_ver ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
62 "Απεγκατάσταση υπάρχουσων εκδόσεων Vim από το σύστημά σας."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
63
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
64 LangString str_section_exe ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
65 "Vim GUI and runtime files"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
66 LangString str_desc_exe ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
67 "Vim GUI executables and runtime files. This component is required."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
68
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
69 LangString str_section_console ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
70 "Vim console program"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
71 LangString str_desc_console ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
72 "Console version of Vim (vim.exe)."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
73
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
74 LangString str_section_batch ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
75 "Δημιουργία αρχείων .bat"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
76 LangString str_desc_batch ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
77 "Δημιουργία αρχείων .bat από παράγωγα Vim στον κατάλογο των Windows για \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
78 χρήση γραμμής εντολών."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
79
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
80 LangString str_group_icons ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
81 "Δημιουργία εικονιδίων Vim"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
82 LangString str_desc_icons ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
83 "Δημιουργία εικονιδίων για τον Vim σε διάφορες τοποθεσίες για την διευκόλυνση της προσβασιμότητας."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
84
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
85 LangString str_section_desktop ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
86 "Στην επιφάνεια εργασίας"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
87 LangString str_desc_desktop ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
88 "Δημιουργία εικονιδίων για gVim εκτελέσιμα στην επιφάνεια εργασίας."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
89
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
90 LangString str_section_start_menu ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
91 "In the Start Menu Programs Folder"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
92 LangString str_desc_start_menu ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
93 "Προσθήκη του Vim στον φάκελο προγραμμάτων του μενού εκκίνησης."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
94
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
95 #LangString str_section_quick_launch ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
96 # "In the Quick Launch Bar"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
97 #LangString str_desc_quick_launch ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
98 # "Add Vim shortcut in the quick launch bar."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
99
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
100 LangString str_section_edit_with ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
101 "Add Vim Context Menu"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
102 LangString str_desc_edit_with ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
103 "Add Vim to the $\"Open With...$\" context menu list."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
104
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
105 #LangString str_section_edit_with32 ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
106 # "32-bit Version"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
107 #LangString str_desc_edit_with32 ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
108 # "Add Vim to the $\"Open With...$\" context menu list \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
109 # for 32-bit applications."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
110
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
111 #LangString str_section_edit_with64 ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
112 # "64-bit Version"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
113 #LangString str_desc_edit_with64 ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
114 # "Add Vim to the $\"Open With...$\" context menu list \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
115 # for 64-bit applications."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
116
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
117 LangString str_section_vim_rc ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
118 "Δημιουργία προεπιλεγμένων ρυθμίσεων"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
119 LangString str_desc_vim_rc ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
120 "Δημιουργία προεπιλεγμένου αρχείου ρυθμίσεων (_vimrc) αν δεν υπάρχει ήδη."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
121
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
122 LangString str_group_plugin ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
123 "Δημιουργία καταλόγων Plugin"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
124 LangString str_desc_plugin ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
125 "Δημιουργία καταλόγων plugin. Οι κατάλογοι Plugin επιτρέπουν την επέκταση του Vim \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
126 με την μεταφορά ενός αρχείου σε έναν κατάλογο."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
127
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
128 LangString str_section_plugin_home ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
129 "Private"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
130 LangString str_desc_plugin_home ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
131 "Δημιουργία καταλόγων plugin στον κατάλογο HOME."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
132
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
133 LangString str_section_plugin_vim ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
134 "Shared"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
135 LangString str_desc_plugin_vim ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
136 "Δημιουργία καταλόγων plugin στον κατάλογο εγκατάστασης του Vim, χρησιμοποιείται από \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
137 όλους στο σύστημα."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
138
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
139 LangString str_section_nls ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
140 "Native Language Support"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
141 LangString str_desc_nls ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
142 "Install files for native language support."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
143
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
144 LangString str_unsection_register ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
145 "Unregister Vim"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
146 LangString str_desc_unregister ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
147 "Unregister Vim from the system."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
148
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
149 LangString str_unsection_exe ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
150 "Remove Vim Executables/Runtime Files"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
151 LangString str_desc_rm_exe ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
152 "Remove all Vim executables and runtime files."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
153
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
154 LangString str_ungroup_plugin ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
155 "Remove plugin directories"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
156 LangString str_desc_rm_plugin ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
157 "Remove the plugin directories if they are empty."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
158
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
159 LangString str_unsection_plugin_home ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
160 "Private"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
161 LangString str_desc_rm_plugin_home ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
162 "Remove the plugin directories from HOME directory."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
163
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
164 LangString str_unsection_plugin_vim ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
165 "Shared"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
166 LangString str_desc_rm_plugin_vim ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
167 "Remove the plugin directories from Vim install directory."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
168
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
169 LangString str_unsection_rootdir ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
170 "Remove the Vim root directory"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
171 LangString str_desc_rm_rootdir ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
172 "Remove the Vim root directory. It contains your Vim configuration files!"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
173
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
174
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
175 ##############################################################################
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
176 # Messages {{{1
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
177 ##############################################################################
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
178
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
179 #LangString str_msg_too_many_ver ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
180 # "Found $vim_old_ver_count Vim versions on your system.$\r$\n\
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
181 # This installer can only handle ${VIM_MAX_OLD_VER} versions \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
182 # at most.$\r$\n\
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
183 # Please remove some versions and start again."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
184
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
185 #LangString str_msg_invalid_root ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
186 # "Invalid install path: $vim_install_root!$\r$\n\
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
187 # It should end with $\"vim$\"."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
188
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
189 #LangString str_msg_bin_mismatch ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
190 # "Binary path mismatch!$\r$\n$\r$\n\
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
191 # Expect the binary path to be $\"$vim_bin_path$\",$\r$\n\
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
192 # but system indicates the binary path is $\"$INSTDIR$\"."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
193
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
194 #LangString str_msg_vim_running ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
195 # "Vim is still running on your system.$\r$\n\
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
196 # Please close all instances of Vim before you continue."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
197
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
198 #LangString str_msg_register_ole ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
199 # "Attempting to register Vim with OLE. \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
200 # There is no message indicates whether this works or not."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
201
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
202 #LangString str_msg_unreg_ole ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
203 # "Attempting to unregister Vim with OLE. \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
204 # There is no message indicates whether this works or not."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
205
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
206 #LangString str_msg_rm_start ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
207 # "Uninstalling the following version:"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
208
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
209 #LangString str_msg_rm_fail ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
210 # "Fail to uninstall the following version:"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
211
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
212 #LangString str_msg_no_rm_key ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
213 # "Cannot find uninstaller registry key."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
214
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
215 #LangString str_msg_no_rm_reg ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
216 # "Cannot find uninstaller from registry."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
217
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
218 #LangString str_msg_no_rm_exe ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
219 # "Cannot access uninstaller."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
220
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
221 #LangString str_msg_rm_copy_fail ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
222 # "Fail to copy uninstaller to temporary directory."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
223
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
224 #LangString str_msg_rm_run_fail ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
225 # "Αποτυχία εκτέλεσης της λειτουργίας απεγκατάστασης."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
226
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
227 #LangString str_msg_abort_install ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
228 # "Installer will abort."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
229
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
230 LangString str_msg_install_fail ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
231 "Η εγκατάσταση απέτυχε. Better luck next time."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
232
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
233 LangString str_msg_rm_exe_fail ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
234 "Μερικά αρχεία στο $0 δεν έχουν διαγραφεί!$\r$\n\
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
235 Πρέπει να το κάνετε χειροκίνητα."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
236
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
237 #LangString str_msg_rm_root_fail ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
238 # "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Αδύνατη η αφαίρεση $\"$vim_install_root$\", δεν είναι κενό!"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
239
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
240 LangString str_msg_uninstalling ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
241 "Απεγκατάσταση παλιάς έκδοσης the old version..."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
242
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
243 LangString str_msg_registering ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
244 "Καταχώρηση..."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
245
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
246 LangString str_msg_unregistering ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
247 "Unregistering..."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
248
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
249
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
250 ##############################################################################
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
251 # Dialog Box {{{1
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
252 ##############################################################################
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
253
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
254 LangString str_vimrc_page_title ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
255 "Επιλογή ρυθμίσεων _vimrc"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
256 LangString str_vimrc_page_subtitle ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
257 "Choose the settings for enhancement, keyboard and mouse."
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
258
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
259 LangString str_msg_compat_title ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
260 " Συμπεριφορά Vi / Vim "
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
261 LangString str_msg_compat_desc ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
262 "&Compatibility and enhancements"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
263 LangString str_msg_compat_vi ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
264 "Vi compatible"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
265 LangString str_msg_compat_vim ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
266 "Vim original"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
267 LangString str_msg_compat_defaults ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
268 "Vim with some enhancements (load defaults.vim)"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
269 LangString str_msg_compat_all ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
270 "Vim with all enhancements (load vimrc_example.vim) (Default)"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
271
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
272 LangString str_msg_keymap_title ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
273 " Mappings "
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
274 LangString str_msg_keymap_desc ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
275 "&Remap a few keys for Windows (Ctrl-V, Ctrl-C, Ctrl-A, Ctrl-S, Ctrl-F, etc)"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
276 LangString str_msg_keymap_default ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
277 "Do not remap keys (Default)"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
278 LangString str_msg_keymap_windows ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
279 "Remap a few keys"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
280
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
281 LangString str_msg_mouse_title ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
282 " Ποντίκι "
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
283 LangString str_msg_mouse_desc ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
284 "&Behavior of right and left buttons"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
285 LangString str_msg_mouse_default ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
286 "Right: popup menu, Left: visual mode (Default)"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
287 LangString str_msg_mouse_windows ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
288 "Right: popup menu, Left: select mode (Windows)"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
289 LangString str_msg_mouse_unix ${LANG_GREEK} \
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
290 "Right: extends selection, Left: visual mode (Unix)"
2dc69bbbf9ac translation(gr): add translation of the installer (#14148)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
291