annotate runtime/vim.desktop @ 33581:403d57b06231 v9.0.2035

patch 9.0.2035: [security] use-after-free with wildmenu Commit: https://github.com/vim/vim/commit/8f4fb007e4d472b09ff6bed9ffa485e0c3093699 Author: Yee Cheng Chin <ychin.git@gmail.com> Date: Tue Oct 17 10:06:56 2023 +0200 patch 9.0.2035: [security] use-after-free with wildmenu Problem: [security] use-after-free with wildmenu Solution: properly clean up the wildmenu when exiting Fix wildchar/wildmenu/pum memory corruption with special wildchar's Currently, using `wildchar=<Esc>` or `wildchar=<C-\>` can lead to a memory corruption if using wildmenu+pum, or wrong states if only using wildmenu. This is due to the code only using one single place inside the cmdline process loop to perform wild menu clean up (by checking `end_wildmenu`) but there are other odd situations where the loop could have exited and we need a post-loop clean up just to be sure. If the clean up was not done you would have a stale popup menu referring to invalid memory, or if not using popup menu, incorrect status line (if `laststatus=0`). For example, if you hit `<Esc>` two times when it's wildchar, there's a hard-coded behavior to exit command-line as a failsafe for user, and if you hit `<C-\><C-\><C-N>` it will also exit command-line, but the clean up code would not have hit because of specialized `<C-\>` handling. Fix Ctrl-E / Ctrl-Y to not cancel/accept wildmenu if they are also used for 'wildchar'/'wildcharm'. Currently they don't behave properly, and also have potentially memory unsafe behavior as the logic is currently not accounting for this situation and try to do both. (Previous patch that addressed this: #11677) Also, correctly document Escape key behavior (double-hit it to escape) in wildchar docs as it's previously undocumented. In addition, block known invalid chars to be set in `wildchar` option, such as Ctrl-C and `<CR>`. This is just to make it clear to the user they shouldn't be set, and is not required for this bug fix. closes: #13361 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
author Christian Brabandt <cb@256bit.org>
date Tue, 17 Oct 2023 10:15:08 +0200
parents 729a7c00fabc
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16285
e71261a88630 patch 8.1.1147: desktop file translations are requiring manual updates
Bram Moolenaar <Bram@vim.org>
parents: 16208
diff changeset
1 # The vim.desktop file is generated by src/po/Makefile, do NOT edit.
e71261a88630 patch 8.1.1147: desktop file translations are requiring manual updates
Bram Moolenaar <Bram@vim.org>
parents: 16208
diff changeset
2 # Edit the src/po/vim.desktop.in file instead.
7193
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3 [Desktop Entry]
16285
e71261a88630 patch 8.1.1147: desktop file translations are requiring manual updates
Bram Moolenaar <Bram@vim.org>
parents: 16208
diff changeset
4 # Translators: This is the Application Name used in the Vim desktop file
28141
dce918af0c00 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27537
diff changeset
5 Name[ca]=Vim
16380
5ad204d8a2f2 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16285
diff changeset
6 Name[de]=Vim
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
7 Name[eo]=Vim
28933
57c9377b9c62 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 28777
diff changeset
8 Name[es]=Vim
27321
3649b5a6b1b6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25619
diff changeset
9 Name[fi]=Vim
18831
6848b809a26e Runtime file updates.
Bram Moolenaar <Bram@vim.org>
parents: 18664
diff changeset
10 Name[fr]=Vim
27537
063952f68595 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 27321
diff changeset
11 Name[ga]=Vim
25056
43593a5d873f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24911
diff changeset
12 Name[it]=Vim
18615
c4cdc715cb68 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 18456
diff changeset
13 Name[ru]=Vim
18664
daa71bf6b546 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 18616
diff changeset
14 Name[sr]=Vim
18456
6d11fc4aa683 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 18053
diff changeset
15 Name[tr]=Vim
28777
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28141
diff changeset
16 Name[uk]=Vim
29285
729a7c00fabc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28933
diff changeset
17 Name[zh_CN]=Vim
7193
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
18 Name=Vim
16285
e71261a88630 patch 8.1.1147: desktop file translations are requiring manual updates
Bram Moolenaar <Bram@vim.org>
parents: 16208
diff changeset
19 # Translators: This is the Generic Application Name used in the Vim desktop file
28141
dce918af0c00 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27537
diff changeset
20 GenericName[ca]=Editor de text
16380
5ad204d8a2f2 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16285
diff changeset
21 GenericName[de]=Texteditor
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
22 GenericName[eo]=Tekstoredaktilo
28933
57c9377b9c62 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 28777
diff changeset
23 GenericName[es]=Editor de texto
27321
3649b5a6b1b6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25619
diff changeset
24 GenericName[fi]=Tekstinmuokkain
18831
6848b809a26e Runtime file updates.
Bram Moolenaar <Bram@vim.org>
parents: 18664
diff changeset
25 GenericName[fr]=Éditeur de texte
27537
063952f68595 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 27321
diff changeset
26 GenericName[ga]=Eagarthóir Téacs
25056
43593a5d873f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24911
diff changeset
27 GenericName[it]=Editor di testi
16610
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16380
diff changeset
28 GenericName[ja]=テキストエディタ
18615
c4cdc715cb68 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 18456
diff changeset
29 GenericName[ru]=Текстовый редактор
23047
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 18831
diff changeset
30 GenericName[sr]=Едитор текст
18456
6d11fc4aa683 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 18053
diff changeset
31 GenericName[tr]=Metin Düzenleyici
28777
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28141
diff changeset
32 GenericName[uk]=Редактор Тексту
29285
729a7c00fabc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28933
diff changeset
33 GenericName[zh_CN]=文本编辑器
7193
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
34 GenericName=Text Editor
16285
e71261a88630 patch 8.1.1147: desktop file translations are requiring manual updates
Bram Moolenaar <Bram@vim.org>
parents: 16208
diff changeset
35 # Translators: This is the comment used in the Vim desktop file
28141
dce918af0c00 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27537
diff changeset
36 Comment[ca]=Edita fitxers de text
16380
5ad204d8a2f2 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16285
diff changeset
37 Comment[de]=Textdateien bearbeiten
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
38 Comment[eo]=Redakti tekstajn dosierojn
28933
57c9377b9c62 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 28777
diff changeset
39 Comment[es]=Editar archivos de texto
27321
3649b5a6b1b6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25619
diff changeset
40 Comment[fi]=Muokkaa tekstitiedostoja
18831
6848b809a26e Runtime file updates.
Bram Moolenaar <Bram@vim.org>
parents: 18664
diff changeset
41 Comment[fr]=Éditer des fichiers texte
27537
063952f68595 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 27321
diff changeset
42 Comment[ga]=Cuir comhaid téacs in eagar
25056
43593a5d873f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24911
diff changeset
43 Comment[it]=Edita file di testo
16610
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16380
diff changeset
44 Comment[ja]=テキストファイルを編集します
18615
c4cdc715cb68 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 18456
diff changeset
45 Comment[ru]=Редактирование текстовых файлов
23047
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 18831
diff changeset
46 Comment[sr]=Уређујте текст фајлове
18615
c4cdc715cb68 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 18456
diff changeset
47 Comment[tr]=Metin dosyaları düzenleyin
28777
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28141
diff changeset
48 Comment[uk]=Редагувати текстові файли
29285
729a7c00fabc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28933
diff changeset
49 Comment[zh_CN]=编辑文本文件
16285
e71261a88630 patch 8.1.1147: desktop file translations are requiring manual updates
Bram Moolenaar <Bram@vim.org>
parents: 16208
diff changeset
50 Comment=Edit text files
e71261a88630 patch 8.1.1147: desktop file translations are requiring manual updates
Bram Moolenaar <Bram@vim.org>
parents: 16208
diff changeset
51 # The translations should come from the po file. Leave them here for now, they will
e71261a88630 patch 8.1.1147: desktop file translations are requiring manual updates
Bram Moolenaar <Bram@vim.org>
parents: 16208
diff changeset
52 # be overwritten by the po file when generating the desktop.file.
14347
723487cd7876 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14249
diff changeset
53 GenericName[da]=Teksteditor
14249
4543777545a3 Updated runtime and language files.
Christian Brabandt <cb@256bit.org>
parents: 8876
diff changeset
54 GenericName[pl]=Edytor tekstu
16208
a23c883685cb Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14347
diff changeset
55 GenericName[is]=Ritvinnsluforrit
7193
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
56 Comment[af]=Redigeer tekslêers
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
57 Comment[am]=የጽሑፍ ፋይሎች ያስተካክሉ
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
58 Comment[ar]=حرّر ملفات نصية
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
59 Comment[az]=Mətn fayllarını redaktə edin
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
60 Comment[be]=Рэдагаваньне тэкставых файлаў
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
61 Comment[bg]=Редактиране на текстови файлове
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
62 Comment[bn]=টেক্স্ট ফাইল এডিট করুন
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
63 Comment[bs]=Izmijeni tekstualne datoteke
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
64 Comment[cs]=Úprava textových souborů
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
65 Comment[cy]=Golygu ffeiliau testun
14347
723487cd7876 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 14249
diff changeset
66 Comment[da]=Rediger tekstfiler
7193
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
67 Comment[el]=Επεξεργασία αρχείων κειμένου
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
68 Comment[en_CA]=Edit text files
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
69 Comment[en_GB]=Edit text files
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
70 Comment[et]=Redigeeri tekstifaile
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
71 Comment[eu]=Editatu testu-fitxategiak
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
72 Comment[fa]=ویرایش پرونده‌های متنی
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
73 Comment[gu]=લખાણ ફાઇલોમાં ફેરફાર કરો
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
74 Comment[he]=ערוך קבצי טקסט
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
75 Comment[hi]=पाठ फ़ाइलें संपादित करें
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
76 Comment[hr]=Uređivanje tekstualne datoteke
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
77 Comment[hu]=Szövegfájlok szerkesztése
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
78 Comment[id]=Edit file teks
16208
a23c883685cb Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14347
diff changeset
79 Comment[is]=Vinna með textaskrár
7193
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
80 Comment[kn]=ಪಠ್ಯ ಕಡತಗಳನ್ನು ಸಂಪಾದಿಸು
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
81 Comment[ko]=텍스트 파일을 편집합니다
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
82 Comment[lt]=Redaguoti tekstines bylas
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
83 Comment[lv]=Rediģēt teksta failus
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
84 Comment[mk]=Уреди текстуални фајлови
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
85 Comment[ml]=വാചക രചനകള് തിരുത്തുക
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
86 Comment[mn]=Текст файл боловсруулах
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
87 Comment[mr]=गद्य फाइल संपादित करा
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
88 Comment[ms]=Edit fail teks
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
89 Comment[nb]=Rediger tekstfiler
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
90 Comment[ne]=पाठ फाइललाई संशोधन गर्नुहोस्
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
91 Comment[nl]=Tekstbestanden bewerken
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
92 Comment[nn]=Rediger tekstfiler
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
93 Comment[no]=Rediger tekstfiler
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
94 Comment[or]=ପାଠ୍ଯ ଫାଇଲଗୁଡ଼ିକୁ ସମ୍ପାଦନ କରନ୍ତୁ
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
95 Comment[pa]=ਪਾਠ ਫਾਇਲਾਂ ਸੰਪਾਦਨ
14249
4543777545a3 Updated runtime and language files.
Christian Brabandt <cb@256bit.org>
parents: 8876
diff changeset
96 Comment[pl]=Edytuj pliki tekstowe
7193
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
97 Comment[pt]=Editar ficheiros de texto
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
98 Comment[pt_BR]=Edite arquivos de texto
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
99 Comment[ro]=Editare fişiere text
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
100 Comment[sk]=Úprava textových súborov
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
101 Comment[sl]=Urejanje datotek z besedili
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
102 Comment[sq]=Përpuno files teksti
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
103 Comment[sr@Latn]=Izmeni tekstualne datoteke
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
104 Comment[sv]=Redigera textfiler
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
105 Comment[ta]=உரை கோப்புகளை தொகுக்கவும்
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
106 Comment[th]=แก้ไขแฟ้มข้อความ
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
107 Comment[tk]=Metin faýllary editle
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
108 Comment[vi]=Soạn thảo tập tin văn bản
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
109 Comment[wa]=Asspougnî des fitchîs tecses
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
110 Comment[zh_TW]=編輯文字檔
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
111 TryExec=vim
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
112 Exec=vim %F
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
113 Terminal=true
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
114 Type=Application
16285
e71261a88630 patch 8.1.1147: desktop file translations are requiring manual updates
Bram Moolenaar <Bram@vim.org>
parents: 16208
diff changeset
115 # Translators: Search terms to find this application. Do NOT change the semicolons! The list MUST also end with a semicolon!
28141
dce918af0c00 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 27537
diff changeset
116 Keywords[ca]=Text;editor;
16380
5ad204d8a2f2 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16285
diff changeset
117 Keywords[de]=Text;Editor;
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
118 Keywords[eo]=Teksto;redaktilo;
28933
57c9377b9c62 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 28777
diff changeset
119 Keywords[es]=Texto;editor;
27321
3649b5a6b1b6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25619
diff changeset
120 Keywords[fi]=Teksti;muokkain;editori;
18831
6848b809a26e Runtime file updates.
Bram Moolenaar <Bram@vim.org>
parents: 18664
diff changeset
121 Keywords[fr]=Texte;éditeur;
27537
063952f68595 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 27321
diff changeset
122 Keywords[ga]=Téacs;eagarthóir;
25056
43593a5d873f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24911
diff changeset
123 Keywords[it]=Testo;editor;
16610
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16380
diff changeset
124 Keywords[ja]=テキスト;エディタ;
18616
8eeed64a6325 Fix vim.desktop generation.
Bram Moolenaar <Bram@vim.org>
parents: 18615
diff changeset
125 Keywords[ru]=текст;текстовый редактор;
18664
daa71bf6b546 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 18616
diff changeset
126 Keywords[sr]=Текст;едитор;
18456
6d11fc4aa683 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 18053
diff changeset
127 Keywords[tr]=Metin;düzenleyici;
28777
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28141
diff changeset
128 Keywords[uk]=текст;редактор;
29285
729a7c00fabc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28933
diff changeset
129 Keywords[zh_CN]=Text;editor;文本;编辑器;
8876
47f17f66da3d commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents: 7193
diff changeset
130 Keywords=Text;editor;
16285
e71261a88630 patch 8.1.1147: desktop file translations are requiring manual updates
Bram Moolenaar <Bram@vim.org>
parents: 16208
diff changeset
131 # Translators: This is the Icon file name. Do NOT translate
7193
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
132 Icon=gvim
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
133 Categories=Utility;TextEditor;
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
134 StartupNotify=false
556ead123953 commit https://github.com/vim/vim/commit/1d8d9c0bec84ac799a2f62a5ac81eade3eaf638a
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
135 MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;