summaryrefslogtreecommitdiff
path: root/data/vim/patches/8.1.1147
blob: 64cb9072b1d2fb680eff8b7d3152b50b58e4ce22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
To: vim_dev@googlegroups.com
Subject: Patch 8.1.1147
Fcc: outbox
From: Bram Moolenaar <Bram@moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
------------

Patch 8.1.1147
Problem:    Desktop file translations are requiring manual updates.
Solution:   Use the .po files for desktop file translations. (Christian
            Brabandt)
Files:	    src/po/Makefile, src/po/gvim.desktop.in, src/po/vim.desktop.in,
            CONTRIBUTING.md, Filelist, runtime/vim.desktop,
            runtime/gvim.desktop


*** ../vim-8.1.1146/src/po/Makefile	2018-06-24 18:04:45.440091103 +0200
--- src/po/Makefile	2019-04-11 12:54:31.087730189 +0200
***************
*** 25,30 ****
--- 25,33 ----
  .SUFFIXES: .po .mo .pot .ck
  .PHONY: all install uninstall prefixcheck converted check clean checkclean distclean update-po $(LANGUAGES)
  
+ LINGUAS:
+ 	@echo $(LANGUAGES) | tr " " "\n" |sed -e '/\./d' | sort > LINGUAS
+ 
  .po.mo:
  	$(MSGFMTCMD) -o $@ $<
  
***************
*** 32,38 ****
  	$(VIM) -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq $<
  	touch $@
  
! all: $(MOFILES) $(MOCONVERTED)
  
  check: $(CHECKFILES)
  
--- 35,41 ----
  	$(VIM) -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq $<
  	touch $@
  
! all: $(MOFILES) $(MOCONVERTED) gvim.desktop vim.desktop
  
  check: $(CHECKFILES)
  
***************
*** 157,168 ****
  checkclean:
  	rm -f *.ck
  
! $(PACKAGE).pot: ../*.c ../if_perl.xs ../GvimExt/gvimext.cpp ../globals.h ../if_py_both.h ../vim.h
  	cd ..; $(XGETTEXT) --default-domain=$(PACKAGE) \
  		--add-comments --keyword=_ --keyword=N_ --keyword=NGETTEXT:1,2 \
! 		*.c if_perl.xs GvimExt/gvimext.cpp globals.h if_py_both.h vim.h
  	mv -f ../$(PACKAGE).po $(PACKAGE).pot
  
  update-po: $(LANGUAGES)
  
  # Don't add a dependency here, we only want to update the .po files manually
--- 160,176 ----
  checkclean:
  	rm -f *.ck
  
! $(PACKAGE).pot: ../*.c ../if_perl.xs ../GvimExt/gvimext.cpp ../globals.h ../if_py_both.h ../vim.h gvim.desktop.in vim.desktop.in
  	cd ..; $(XGETTEXT) --default-domain=$(PACKAGE) \
  		--add-comments --keyword=_ --keyword=N_ --keyword=NGETTEXT:1,2 \
! 		*.c if_perl.xs GvimExt/gvimext.cpp globals.h if_py_both.h vim.h \
! 		po/gvim.desktop.in po/vim.desktop.in
  	mv -f ../$(PACKAGE).po $(PACKAGE).pot
  
+ %.desktop: %.desktop.in $(PACKAGE).pot LINGUAS
+ 	$(MSGFMT) --desktop -d . --template $< -o $@
+ 	cp -f $@ ../../runtime/$@
+ 
  update-po: $(LANGUAGES)
  
  # Don't add a dependency here, we only want to update the .po files manually
*** ../vim-8.1.1146/src/po/gvim.desktop.in	2019-04-11 13:00:36.009737119 +0200
--- src/po/gvim.desktop.in	2019-04-11 13:06:23.859853802 +0200
***************
*** 0 ****
--- 1,97 ----
+ # The gvim.desktop file is generated by src/po/Makefile, do NOT edit.
+ # Edit the src/po/gvim.desktop.in file instead.
+ [Desktop Entry]
+ # Translators: This is the Application Name used in the GVim desktop file
+ Name=GVim
+ # Translators: This is the Generic Application Name used in the Vim desktop file
+ GenericName=Text Editor
+ # Translators: This is the comment used in the Vim desktop file
+ Comment=Edit text files
+ # The translations should come from the po file. Leave them here for now, they will
+ # be overwritten by the po file when generating the desktop.file!
+ GenericName[da]=Teksteditor
+ GenericName[de]=Texteditor
+ GenericName[eo]=Tekstoredaktilo
+ GenericName[fr]=Éditeur de texte
+ GenericName[pl]=Edytor tekstu
+ GenericName[is]=Ritvinnsluforrit
+ Comment[af]=Redigeer tekslêers
+ Comment[am]=የጽሑፍ ፋይሎች ያስተካክሉ
+ Comment[ar]=حرّر ملفات نصية
+ Comment[az]=Mətn fayllarını redaktə edin
+ Comment[be]=Рэдагаваньне тэкставых файлаў
+ Comment[bg]=Редактиране на текстови файлове
+ Comment[bn]=টেক্স্ট ফাইল এডিট করুন
+ Comment[bs]=Izmijeni tekstualne datoteke
+ Comment[ca]=Edita fitxers de text
+ Comment[cs]=Úprava textových souborů
+ Comment[cy]=Golygu ffeiliau testun
+ Comment[da]=Rediger tekstfiler
+ Comment[de]=Textdateien bearbeiten
+ Comment[el]=Επεξεργασία αρχείων κειμένου
+ Comment[en_CA]=Edit text files
+ Comment[en_GB]=Edit text files
+ Comment[eo]=Redakti tekstajn dosierojn
+ Comment[es]=Edita archivos de texto
+ Comment[et]=Redigeeri tekstifaile
+ Comment[eu]=Editatu testu-fitxategiak
+ Comment[fa]=ویرایش پرونده‌های متنی
+ Comment[fi]=Muokkaa tekstitiedostoja
+ Comment[fr]=Éditer des fichiers textes
+ Comment[ga]=Eagar comhad Téacs
+ Comment[gu]=લખાણ ફાઇલોમાં ફેરફાર કરો
+ Comment[he]=ערוך קבצי טקסט
+ Comment[hi]=पाठ फ़ाइलें संपादित करें
+ Comment[hr]=Uređivanje tekstualne datoteke
+ Comment[hu]=Szövegfájlok szerkesztése
+ Comment[id]=Edit file teks
+ Comment[is]=Vinna með textaskrár
+ Comment[it]=Modifica file di testo
+ Comment[ja]=テキストファイルを編集します
+ Comment[kn]=ಪಠ್ಯ ಕಡತಗಳನ್ನು ಸಂಪಾದಿಸು
+ Comment[ko]=텍스트 파일을 편집합니다
+ Comment[lt]=Redaguoti tekstines bylas
+ Comment[lv]=Rediģēt teksta failus
+ Comment[mk]=Уреди текстуални фајлови
+ Comment[ml]=വാചക രചനകള് തിരുത്തുക
+ Comment[mn]=Текст файл боловсруулах
+ Comment[mr]=गद्य फाइल संपादित करा
+ Comment[ms]=Edit fail teks
+ Comment[nb]=Rediger tekstfiler
+ Comment[ne]=पाठ फाइललाई संशोधन गर्नुहोस्
+ Comment[nl]=Tekstbestanden bewerken
+ Comment[nn]=Rediger tekstfiler
+ Comment[no]=Rediger tekstfiler
+ Comment[or]=ପାଠ୍ଯ ଫାଇଲଗୁଡ଼ିକୁ ସମ୍ପାଦନ କରନ୍ତୁ
+ Comment[pa]=ਪਾਠ ਫਾਇਲਾਂ ਸੰਪਾਦਨ
+ Comment[pl]=Edytuj pliki tekstowe
+ Comment[pt]=Editar ficheiros de texto
+ Comment[pt_BR]=Edite arquivos de texto
+ Comment[ro]=Editare fişiere text
+ Comment[ru]=Редактор текстовых файлов
+ Comment[sk]=Úprava textových súborov
+ Comment[sl]=Urejanje datotek z besedili
+ Comment[sq]=Përpuno files teksti
+ Comment[sr]=Измени текстуалне датотеке
+ Comment[sr@Latn]=Izmeni tekstualne datoteke
+ Comment[sv]=Redigera textfiler
+ Comment[ta]=உரை கோப்புகளை தொகுக்கவும்
+ Comment[th]=แก้ไขแฟ้มข้อความ
+ Comment[tk]=Metin faýllary editle
+ Comment[tr]=Metin dosyalarını düzenle
+ Comment[uk]=Редактор текстових файлів
+ Comment[vi]=Soạn thảo tập tin văn bản
+ Comment[wa]=Asspougnî des fitchîs tecses
+ Comment[zh_CN]=编辑文本文件
+ Comment[zh_TW]=編輯文字檔
+ TryExec=gvim
+ Exec=gvim -f %F
+ Terminal=false
+ Type=Application
+ # Translators: Search terms to find this application. Do NOT change the semicolons! The list MUST also end with a semicolon!
+ Keywords=Text;editor;
+ # Translators: This is the Icon file name. Do NOT translate
+ Icon=gvim
+ Categories=Utility;TextEditor;
+ StartupNotify=true
+ 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++;
*** ../vim-8.1.1146/src/po/vim.desktop.in	2019-04-11 13:00:36.013737098 +0200
--- src/po/vim.desktop.in	2019-04-11 13:05:28.372153537 +0200
***************
*** 0 ****
--- 1,94 ----
+ # The vim.desktop file is generated by src/po/Makefile, do NOT edit.
+ # Edit the src/po/vim.desktop.in file instead.
+ [Desktop Entry]
+ # Translators: This is the Application Name used in the Vim desktop file
+ Name=Vim
+ # Translators: This is the Generic Application Name used in the Vim desktop file
+ GenericName=Text Editor
+ # Translators: This is the comment used in the Vim desktop file
+ Comment=Edit text files
+ # The translations should come from the po file. Leave them here for now, they will
+ # be overwritten by the po file when generating the desktop.file.
+ GenericName[da]=Teksteditor
+ GenericName[de]=Texteditor
+ GenericName[pl]=Edytor tekstu
+ GenericName[is]=Ritvinnsluforrit
+ Comment[af]=Redigeer tekslêers
+ Comment[am]=የጽሑፍ ፋይሎች ያስተካክሉ
+ Comment[ar]=حرّر ملفات نصية
+ Comment[az]=Mətn fayllarını redaktə edin
+ Comment[be]=Рэдагаваньне тэкставых файлаў
+ Comment[bg]=Редактиране на текстови файлове
+ Comment[bn]=টেক্স্ট ফাইল এডিট করুন
+ Comment[bs]=Izmijeni tekstualne datoteke
+ Comment[ca]=Edita fitxers de text
+ Comment[cs]=Úprava textových souborů
+ Comment[cy]=Golygu ffeiliau testun
+ Comment[da]=Rediger tekstfiler
+ Comment[de]=Textdateien bearbeiten
+ Comment[el]=Επεξεργασία αρχείων κειμένου
+ Comment[en_CA]=Edit text files
+ Comment[en_GB]=Edit text files
+ Comment[es]=Edita archivos de texto
+ Comment[et]=Redigeeri tekstifaile
+ Comment[eu]=Editatu testu-fitxategiak
+ Comment[fa]=ویرایش پرونده‌های متنی
+ Comment[fi]=Muokkaa tekstitiedostoja
+ Comment[fr]=Édite des fichiers texte
+ Comment[ga]=Eagar comhad Téacs
+ Comment[gu]=લખાણ ફાઇલોમાં ફેરફાર કરો
+ Comment[he]=ערוך קבצי טקסט
+ Comment[hi]=पाठ फ़ाइलें संपादित करें
+ Comment[hr]=Uređivanje tekstualne datoteke
+ Comment[hu]=Szövegfájlok szerkesztése
+ Comment[id]=Edit file teks
+ Comment[is]=Vinna með textaskrár
+ Comment[it]=Modifica file di testo
+ Comment[ja]=テキストファイルを編集します
+ Comment[kn]=ಪಠ್ಯ ಕಡತಗಳನ್ನು ಸಂಪಾದಿಸು
+ Comment[ko]=텍스트 파일을 편집합니다
+ Comment[lt]=Redaguoti tekstines bylas
+ Comment[lv]=Rediģēt teksta failus
+ Comment[mk]=Уреди текстуални фајлови
+ Comment[ml]=വാചക രചനകള് തിരുത്തുക
+ Comment[mn]=Текст файл боловсруулах
+ Comment[mr]=गद्य फाइल संपादित करा
+ Comment[ms]=Edit fail teks
+ Comment[nb]=Rediger tekstfiler
+ Comment[ne]=पाठ फाइललाई संशोधन गर्नुहोस्
+ Comment[nl]=Tekstbestanden bewerken
+ Comment[nn]=Rediger tekstfiler
+ Comment[no]=Rediger tekstfiler
+ Comment[or]=ପାଠ୍ଯ ଫାଇଲଗୁଡ଼ିକୁ ସମ୍ପାଦନ କରନ୍ତୁ
+ Comment[pa]=ਪਾਠ ਫਾਇਲਾਂ ਸੰਪਾਦਨ
+ Comment[pl]=Edytuj pliki tekstowe
+ Comment[pt]=Editar ficheiros de texto
+ Comment[pt_BR]=Edite arquivos de texto
+ Comment[ro]=Editare fişiere text
+ Comment[ru]=Редактор текстовых файлов
+ Comment[sk]=Úprava textových súborov
+ Comment[sl]=Urejanje datotek z besedili
+ Comment[sq]=Përpuno files teksti
+ Comment[sr]=Измени текстуалне датотеке
+ Comment[sr@Latn]=Izmeni tekstualne datoteke
+ Comment[sv]=Redigera textfiler
+ Comment[ta]=உரை கோப்புகளை தொகுக்கவும்
+ Comment[th]=แก้ไขแฟ้มข้อความ
+ Comment[tk]=Metin faýllary editle
+ Comment[tr]=Metin dosyalarını düzenle
+ Comment[uk]=Редактор текстових файлів
+ Comment[vi]=Soạn thảo tập tin văn bản
+ Comment[wa]=Asspougnî des fitchîs tecses
+ Comment[zh_CN]=编辑文本文件
+ Comment[zh_TW]=編輯文字檔
+ TryExec=vim
+ Exec=vim %F
+ Terminal=true
+ Type=Application
+ # Translators: Search terms to find this application. Do NOT change the semicolons! The list MUST also end with a semicolon!
+ Keywords=Text;editor;
+ # Translators: This is the Icon file name. Do NOT translate
+ Icon=gvim
+ Categories=Utility;TextEditor;
+ StartupNotify=false
+ 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++;
*** ../vim-8.1.1146/CONTRIBUTING.md	2015-09-01 21:22:38.000000000 +0200
--- CONTRIBUTING.md	2019-04-11 12:59:52.093975793 +0200
***************
*** 21,29 ****
  
  Please use the GitHub issues only for actual issues. If you are not 100% sure
  that your problem is a Vim issue, please first discuss this on the Vim user
! maillist.  Try reproducing the problem without any plugins or settings:
  
!     vim -N -u NONE
  
  If you report an issue, please describe exactly how to reproduce it.
  For example, don't say "insert some text" but say what you did exactly:
--- 21,29 ----
  
  Please use the GitHub issues only for actual issues. If you are not 100% sure
  that your problem is a Vim issue, please first discuss this on the Vim user
! maillist.  Try reproducing the problem without any of your plugins or settings:
  
!     vim --clean
  
  If you report an issue, please describe exactly how to reproduce it.
  For example, don't say "insert some text" but say what you did exactly:
***************
*** 51,54 ****
  The maintainer will take care of issues and send updates to Bram for 
  distribution with Vim.
  
! If the maintainer does not react, contact the vim-dev maillist.
--- 51,75 ----
  The maintainer will take care of issues and send updates to Bram for 
  distribution with Vim.
  
! If the maintainer does not respond, contact the vim-dev maillist.
! 
! 
! # Translations
! 
! Translating messages and runtime files is very much appreciated!  These things
! can be translated:
! *   Messages in Vim, see [src/po/README.txt][1]
!     Also used for the desktop icons.
! *   Menus, see [runtime/lang/README.txt][2]
! *   Vim tutor, see [runtime/tutor/README.txt][3]
! *   Manual pages, see [runtime/doc/\*.1][4] for examples
! *   Installer, see [nsis/lang/\*.nsi][5] for examples
! 
! The help files can be translated and made available separately.
! See https://www.vim.org/translations.php for examples.
! 
! [1]: https://github.com/vim/vim/blob/master/src/po/README.txt
! [2]: https://github.com/vim/vim/blob/master/runtime/lang/README.txt
! [3]: https://github.com/vim/vim/blob/master/runtime/tutor/README.txt
! [4]: https://github.com/vim/vim/blob/master/runtime/doc/vim.1
! [5]: https://github.com/vim/vim/blob/master/nsis/lang/english.nsi
*** ../vim-8.1.1146/Filelist	2019-04-04 20:31:59.094873282 +0200
--- Filelist	2019-04-11 12:57:06.906876135 +0200
***************
*** 937,942 ****
--- 937,944 ----
  		src/po/Make_cyg.mak \
  		src/po/Make_ming.mak \
  		src/po/Make_mvc.mak \
+ 		src/po/vim.desktop.in \
+ 		src/po/gvim.desktop.in \
  		src/po/sjiscorr.c \
  		src/po/*.po \
  
*** ../vim-8.1.1146/runtime/vim.desktop	2016-04-02 15:20:04.000000000 +0200
--- runtime/vim.desktop	2019-04-11 13:06:39.535769159 +0200
***************
*** 1,8 ****
  [Desktop Entry]
  Name=Vim
  GenericName=Text Editor
! GenericName[de]=Texteditor
  Comment=Edit text files
  Comment[af]=Redigeer tekslêers
  Comment[am]=የጽሑፍ ፋይሎች ያስተካክሉ
  Comment[ar]=حرّر ملفات نصية
--- 1,18 ----
+ # The vim.desktop file is generated by src/po/Makefile, do NOT edit.
+ # Edit the src/po/vim.desktop.in file instead.
  [Desktop Entry]
+ # Translators: This is the Application Name used in the Vim desktop file
  Name=Vim
+ # Translators: This is the Generic Application Name used in the Vim desktop file
  GenericName=Text Editor
! # Translators: This is the comment used in the Vim desktop file
  Comment=Edit text files
+ # The translations should come from the po file. Leave them here for now, they will
+ # be overwritten by the po file when generating the desktop.file.
+ GenericName[da]=Teksteditor
+ GenericName[de]=Texteditor
+ GenericName[pl]=Edytor tekstu
+ GenericName[is]=Ritvinnsluforrit
  Comment[af]=Redigeer tekslêers
  Comment[am]=የጽሑፍ ፋይሎች ያስተካክሉ
  Comment[ar]=حرّر ملفات نصية
***************
*** 14,20 ****
  Comment[ca]=Edita fitxers de text
  Comment[cs]=Úprava textových souborů
  Comment[cy]=Golygu ffeiliau testun
! Comment[da]=Redigér tekstfiler
  Comment[de]=Textdateien bearbeiten
  Comment[el]=Επεξεργασία αρχείων κειμένου
  Comment[en_CA]=Edit text files
--- 24,30 ----
  Comment[ca]=Edita fitxers de text
  Comment[cs]=Úprava textových souborů
  Comment[cy]=Golygu ffeiliau testun
! Comment[da]=Rediger tekstfiler
  Comment[de]=Textdateien bearbeiten
  Comment[el]=Επεξεργασία αρχείων κειμένου
  Comment[en_CA]=Edit text files
***************
*** 32,37 ****
--- 42,48 ----
  Comment[hr]=Uređivanje tekstualne datoteke
  Comment[hu]=Szövegfájlok szerkesztése
  Comment[id]=Edit file teks
+ Comment[is]=Vinna með textaskrár
  Comment[it]=Modifica file di testo
  Comment[ja]=テキストファイルを編集します
  Comment[kn]=ಪಠ್ಯ ಕಡತಗಳನ್ನು ಸಂಪಾದಿಸು
***************
*** 50,56 ****
  Comment[no]=Rediger tekstfiler
  Comment[or]=ପାଠ୍ଯ ଫାଇଲଗୁଡ଼ିକୁ ସମ୍ପାଦନ କରନ୍ତୁ
  Comment[pa]=ਪਾਠ ਫਾਇਲਾਂ ਸੰਪਾਦਨ
! Comment[pl]=Edytor plików tekstowych
  Comment[pt]=Editar ficheiros de texto
  Comment[pt_BR]=Edite arquivos de texto
  Comment[ro]=Editare fişiere text
--- 61,67 ----
  Comment[no]=Rediger tekstfiler
  Comment[or]=ପାଠ୍ଯ ଫାଇଲଗୁଡ଼ିକୁ ସମ୍ପାଦନ କରନ୍ତୁ
  Comment[pa]=ਪਾਠ ਫਾਇਲਾਂ ਸੰਪਾਦਨ
! Comment[pl]=Edytuj pliki tekstowe
  Comment[pt]=Editar ficheiros de texto
  Comment[pt_BR]=Edite arquivos de texto
  Comment[ro]=Editare fişiere text
***************
*** 74,80 ****
--- 85,93 ----
  Exec=vim %F
  Terminal=true
  Type=Application
+ # Translators: Search terms to find this application. Do NOT change the semicolons! The list MUST also end with a semicolon!
  Keywords=Text;editor;
+ # Translators: This is the Icon file name. Do NOT translate
  Icon=gvim
  Categories=Utility;TextEditor;
  StartupNotify=false
*** ../vim-8.1.1146/runtime/gvim.desktop	2016-04-02 15:17:25.000000000 +0200
--- runtime/gvim.desktop	2019-04-11 13:06:39.223770846 +0200
***************
*** 1,8 ****
  [Desktop Entry]
  Name=GVim
  GenericName=Text Editor
! GenericName[de]=Texteditor
  Comment=Edit text files
  Comment[af]=Redigeer tekslêers
  Comment[am]=የጽሑፍ ፋይሎች ያስተካክሉ
  Comment[ar]=حرّر ملفات نصية
--- 1,20 ----
+ # The gvim.desktop file is generated by src/po/Makefile, do NOT edit.
+ # Edit the src/po/gvim.desktop.in file instead.
  [Desktop Entry]
+ # Translators: This is the Application Name used in the GVim desktop file
  Name=GVim
+ # Translators: This is the Generic Application Name used in the Vim desktop file
  GenericName=Text Editor
! # Translators: This is the comment used in the Vim desktop file
  Comment=Edit text files
+ # The translations should come from the po file. Leave them here for now, they will
+ # be overwritten by the po file when generating the desktop.file!
+ GenericName[da]=Teksteditor
+ GenericName[de]=Texteditor
+ GenericName[eo]=Tekstoredaktilo
+ GenericName[fr]=Éditeur de texte
+ GenericName[pl]=Edytor tekstu
+ GenericName[is]=Ritvinnsluforrit
  Comment[af]=Redigeer tekslêers
  Comment[am]=የጽሑፍ ፋይሎች ያስተካክሉ
  Comment[ar]=حرّر ملفات نصية
***************
*** 14,30 ****
  Comment[ca]=Edita fitxers de text
  Comment[cs]=Úprava textových souborů
  Comment[cy]=Golygu ffeiliau testun
! Comment[da]=Redigér tekstfiler
  Comment[de]=Textdateien bearbeiten
  Comment[el]=Επεξεργασία αρχείων κειμένου
  Comment[en_CA]=Edit text files
  Comment[en_GB]=Edit text files
  Comment[es]=Edita archivos de texto
  Comment[et]=Redigeeri tekstifaile
  Comment[eu]=Editatu testu-fitxategiak
  Comment[fa]=ویرایش پرونده‌های متنی
  Comment[fi]=Muokkaa tekstitiedostoja
! Comment[fr]=Édite des fichiers texte
  Comment[ga]=Eagar comhad Téacs
  Comment[gu]=લખાણ ફાઇલોમાં ફેરફાર કરો
  Comment[he]=ערוך קבצי טקסט
--- 26,43 ----
  Comment[ca]=Edita fitxers de text
  Comment[cs]=Úprava textových souborů
  Comment[cy]=Golygu ffeiliau testun
! Comment[da]=Rediger tekstfiler
  Comment[de]=Textdateien bearbeiten
  Comment[el]=Επεξεργασία αρχείων κειμένου
  Comment[en_CA]=Edit text files
  Comment[en_GB]=Edit text files
+ Comment[eo]=Redakti tekstajn dosierojn
  Comment[es]=Edita archivos de texto
  Comment[et]=Redigeeri tekstifaile
  Comment[eu]=Editatu testu-fitxategiak
  Comment[fa]=ویرایش پرونده‌های متنی
  Comment[fi]=Muokkaa tekstitiedostoja
! Comment[fr]=Éditer des fichiers textes
  Comment[ga]=Eagar comhad Téacs
  Comment[gu]=લખાણ ફાઇલોમાં ફેરફાર કરો
  Comment[he]=ערוך קבצי טקסט
***************
*** 32,37 ****
--- 45,51 ----
  Comment[hr]=Uređivanje tekstualne datoteke
  Comment[hu]=Szövegfájlok szerkesztése
  Comment[id]=Edit file teks
+ Comment[is]=Vinna með textaskrár
  Comment[it]=Modifica file di testo
  Comment[ja]=テキストファイルを編集します
  Comment[kn]=ಪಠ್ಯ ಕಡತಗಳನ್ನು ಸಂಪಾದಿಸು
***************
*** 50,56 ****
  Comment[no]=Rediger tekstfiler
  Comment[or]=ପାଠ୍ଯ ଫାଇଲଗୁଡ଼ିକୁ ସମ୍ପାଦନ କରନ୍ତୁ
  Comment[pa]=ਪਾਠ ਫਾਇਲਾਂ ਸੰਪਾਦਨ
! Comment[pl]=Edytor plików tekstowych
  Comment[pt]=Editar ficheiros de texto
  Comment[pt_BR]=Edite arquivos de texto
  Comment[ro]=Editare fişiere text
--- 64,70 ----
  Comment[no]=Rediger tekstfiler
  Comment[or]=ପାଠ୍ଯ ଫାଇଲଗୁଡ଼ିକୁ ସମ୍ପାଦନ କରନ୍ତୁ
  Comment[pa]=ਪਾਠ ਫਾਇਲਾਂ ਸੰਪਾਦਨ
! Comment[pl]=Edytuj pliki tekstowe
  Comment[pt]=Editar ficheiros de texto
  Comment[pt_BR]=Edite arquivos de texto
  Comment[ro]=Editare fişiere text
***************
*** 74,80 ****
--- 88,96 ----
  Exec=gvim -f %F
  Terminal=false
  Type=Application
+ # Translators: Search terms to find this application. Do NOT change the semicolons! The list MUST also end with a semicolon!
  Keywords=Text;editor;
+ # Translators: This is the Icon file name. Do NOT translate
  Icon=gvim
  Categories=Utility;TextEditor;
  StartupNotify=true
*** ../vim-8.1.1146/src/version.c	2019-04-11 11:40:08.023371343 +0200
--- src/version.c	2019-04-11 13:00:09.337882044 +0200
***************
*** 773,774 ****
--- 773,776 ----
  {   /* Add new patch number below this line */
+ /**/
+     1147,
  /**/

-- 
Eagles may soar, but weasels don't get sucked into jet engines.

 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///