Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9ff6c507
Commit
9ff6c507
authored
Apr 28, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Apr 28, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
appwiz.cpl: Fix ellipsis usage in the button labels.
parent
8a2ea065
Hide whitespace changes
Inline
Side-by-side
Showing
47 changed files
with
154 additions
and
102 deletions
+154
-102
En.rc
dlls/appwiz.cpl/En.rc
+2
-2
appwiz.rc
dlls/appwiz.cpl/appwiz.rc
+2
-2
ar.po
po/ar.po
+2
-2
bg.po
po/bg.po
+4
-3
ca.po
po/ca.po
+2
-2
cs.po
po/cs.po
+2
-2
da.po
po/da.po
+4
-2
de.po
po/de.po
+4
-2
el.po
po/el.po
+2
-2
en.po
po/en.po
+4
-4
en_US.po
po/en_US.po
+4
-4
eo.po
po/eo.po
+4
-3
es.po
po/es.po
+4
-2
fa.po
po/fa.po
+2
-2
fi.po
po/fi.po
+4
-3
fr.po
po/fr.po
+4
-2
he.po
po/he.po
+4
-2
hi.po
po/hi.po
+2
-2
hu.po
po/hu.po
+4
-2
it.po
po/it.po
+4
-2
ja.po
po/ja.po
+4
-2
ko.po
po/ko.po
+4
-2
lt.po
po/lt.po
+4
-2
ml.po
po/ml.po
+2
-2
nb_NO.po
po/nb_NO.po
+4
-2
nl.po
po/nl.po
+4
-2
or.po
po/or.po
+2
-2
pa.po
po/pa.po
+2
-2
pl.po
po/pl.po
+4
-2
pt_BR.po
po/pt_BR.po
+4
-2
pt_PT.po
po/pt_PT.po
+4
-2
rm.po
po/rm.po
+2
-2
ro.po
po/ro.po
+4
-2
ru.po
po/ru.po
+4
-2
sk.po
po/sk.po
+4
-3
sl.po
po/sl.po
+4
-2
sr_RS@cyrillic.po
po/sr_RS@cyrillic.po
+4
-2
sr_RS@latin.po
po/sr_RS@latin.po
+4
-2
sv.po
po/sv.po
+4
-2
te.po
po/te.po
+2
-2
th.po
po/th.po
+2
-2
tr.po
po/tr.po
+2
-2
uk.po
po/uk.po
+4
-2
wa.po
po/wa.po
+2
-2
wine.pot
po/wine.pot
+2
-2
zh_CN.po
po/zh_CN.po
+4
-2
zh_TW.po
po/zh_TW.po
+4
-2
No files found.
dlls/appwiz.cpl/En.rc
View file @
9ff6c507
...
...
@@ -35,9 +35,9 @@ FONT 8, "MS Shell Dlg"
CONTROL 2, 1001, "STATIC", SS_ICON | WS_CHILD | WS_VISIBLE, 7, 7, 21, 20
CONTROL "The following software can be automatically removed. To remove a program or to modify its installed components, select it from the list and click Change/Remove.", 1002, "STATIC", SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 40, 57, 270, 30
CONTROL "", IDL_PROGRAMS, "SysListView32", LVS_REPORT | LVS_SINGLESEL | LVS_SORTASCENDING | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 7, 90, 303, 100
CONTROL "&Support Info
...
", IDC_SUPPORT_INFO, "button", BS_PUSHBUTTON | BS_CENTER | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 104, 198, 64, 14
CONTROL "&Support Info", IDC_SUPPORT_INFO, "button", BS_PUSHBUTTON | BS_CENTER | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 104, 198, 64, 14
CONTROL "&Modify...", IDC_MODIFY, "BUTTON", BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 172, 198, 68, 14
CONTROL "&Remove
...
", IDC_ADDREMOVE, "BUTTON", BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 244, 198, 68, 14
CONTROL "&Remove", IDC_ADDREMOVE, "BUTTON", BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 244, 198, 68, 14
CONTROL 3, 1003, "STATIC", SS_ICON | WS_CHILD | WS_VISIBLE, 7, 57, 21, 20
}
...
...
dlls/appwiz.cpl/appwiz.rc
View file @
9ff6c507
...
...
@@ -39,8 +39,8 @@ STRINGTABLE
IDS_FILTER_PROGRAMS, "Programs (*.exe)"
IDS_FILTER_ALL, "All files (*.*)"
IDS_REMOVE, "&Remove
...
"
IDS_MODIFY_REMOVE, "&Modify/Remove
...
"
IDS_REMOVE, "&Remove"
IDS_MODIFY_REMOVE, "&Modify/Remove"
}
STRINGTABLE
...
...
po/ar.po
View file @
9ff6c507
...
...
@@ -63,11 +63,11 @@ msgid "All files (*.*)"
msgstr "كل الملفات (*.*)"
#: appwiz.rc:42
msgid "&Remove
...
"
msgid "&Remove"
msgstr ""
#: appwiz.rc:43
msgid "&Modify/Remove
...
"
msgid "&Modify/Remove"
msgstr ""
#: appwiz.rc:48
...
...
po/bg.po
View file @
9ff6c507
...
...
@@ -68,12 +68,13 @@ msgstr "Всички файлове (*.*)"
#: appwiz.rc:42
#, fuzzy
msgid "&Remove
...
"
msgid "&Remove"
msgstr "&Анотирай..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
msgstr ""
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Промени"
#: appwiz.rc:48
msgid "Downloading..."
...
...
po/ca.po
View file @
9ff6c507
...
...
@@ -63,11 +63,11 @@ msgid "All files (*.*)"
msgstr ""
#: appwiz.rc:42
msgid "&Remove
...
"
msgid "&Remove"
msgstr ""
#: appwiz.rc:43
msgid "&Modify/Remove
...
"
msgid "&Modify/Remove"
msgstr ""
#: appwiz.rc:48
...
...
po/cs.po
View file @
9ff6c507
...
...
@@ -77,12 +77,12 @@ msgstr "Všechny soubory (*.*)"
#: appwiz.rc:42
#, fuzzy
msgid "&Remove
...
"
msgid "&Remove"
msgstr "&Odstranit sdílení..."
#: appwiz.rc:43
#, fuzzy
msgid "&Modify/Remove
...
"
msgid "&Modify/Remove"
msgstr "&Odstranit sdílení..."
#: appwiz.rc:48
...
...
po/da.po
View file @
9ff6c507
...
...
@@ -77,11 +77,13 @@ msgstr ""
"Alle Filer (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Fjern..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Rediger/Fjern..."
#: appwiz.rc:48
...
...
po/de.po
View file @
9ff6c507
...
...
@@ -65,11 +65,13 @@ msgid "All files (*.*)"
msgstr "Alle Dateien (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Entfernen..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "Än&dern/Entfernen..."
#: appwiz.rc:48
...
...
po/el.po
View file @
9ff6c507
...
...
@@ -64,11 +64,11 @@ msgid "All files (*.*)"
msgstr ""
#: appwiz.rc:42
msgid "&Remove
...
"
msgid "&Remove"
msgstr ""
#: appwiz.rc:43
msgid "&Modify/Remove
...
"
msgid "&Modify/Remove"
msgstr ""
#: appwiz.rc:48
...
...
po/en.po
View file @
9ff6c507
...
...
@@ -65,12 +65,12 @@ msgid "All files (*.*)"
msgstr ""
#: appwiz.rc:42
msgid "&Remove
...
"
msgstr "&Remove
...
"
msgid "&Remove"
msgstr "&Remove"
#: appwiz.rc:43
msgid "&Modify/Remove
...
"
msgstr ""
msgid "&Modify/Remove"
msgstr "
&Modify/Remove
"
#: appwiz.rc:48
msgid "Downloading..."
...
...
po/en_US.po
View file @
9ff6c507
...
...
@@ -67,12 +67,12 @@ msgid "All files (*.*)"
msgstr "All files (*.*)"
#: appwiz.rc:42
msgid "&Remove
...
"
msgstr "&Remove
...
"
msgid "&Remove"
msgstr "&Remove"
#: appwiz.rc:43
msgid "&Modify/Remove
...
"
msgstr "&Modify/Remove
...
"
msgid "&Modify/Remove"
msgstr "&Modify/Remove"
#: appwiz.rc:48
msgid "Downloading..."
...
...
po/eo.po
View file @
9ff6c507
...
...
@@ -68,12 +68,13 @@ msgstr "Tutaj dosieroj (*.*)"
#: appwiz.rc:42
#, fuzzy
msgid "&Remove
...
"
msgid "&Remove"
msgstr "&Notu..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
msgstr ""
#, fuzzy
msgid "&Modify/Remove"
msgstr "Modifita"
#: appwiz.rc:48
msgid "Downloading..."
...
...
po/es.po
View file @
9ff6c507
...
...
@@ -67,11 +67,13 @@ msgid "All files (*.*)"
msgstr "Todos los archivos (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Quitar..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Modificar/Quitar..."
#: appwiz.rc:48
...
...
po/fa.po
View file @
9ff6c507
...
...
@@ -63,11 +63,11 @@ msgid "All files (*.*)"
msgstr "همهی پروندهها (*.*)"
#: appwiz.rc:42
msgid "&Remove
...
"
msgid "&Remove"
msgstr ""
#: appwiz.rc:43
msgid "&Modify/Remove
...
"
msgid "&Modify/Remove"
msgstr ""
#: appwiz.rc:48
...
...
po/fi.po
View file @
9ff6c507
...
...
@@ -68,12 +68,13 @@ msgstr "Kaikki tiedostot (*.*)"
#: appwiz.rc:42
#, fuzzy
msgid "&Remove
...
"
msgid "&Remove"
msgstr "&Huomautus..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
msgstr ""
#, fuzzy
msgid "&Modify/Remove"
msgstr "Muokattu"
#: appwiz.rc:48
msgid "Downloading..."
...
...
po/fr.po
View file @
9ff6c507
...
...
@@ -67,11 +67,13 @@ msgid "All files (*.*)"
msgstr "Tous les fichiers (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Supprimer..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Modifier/Supprimer..."
#: appwiz.rc:48
...
...
po/he.po
View file @
9ff6c507
...
...
@@ -66,11 +66,13 @@ msgid "All files (*.*)"
msgstr "כל הקבצים (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "ה&סרה..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&שינוי/הסרה..."
#: appwiz.rc:48
...
...
po/hi.po
View file @
9ff6c507
...
...
@@ -63,11 +63,11 @@ msgid "All files (*.*)"
msgstr ""
#: appwiz.rc:42
msgid "&Remove
...
"
msgid "&Remove"
msgstr ""
#: appwiz.rc:43
msgid "&Modify/Remove
...
"
msgid "&Modify/Remove"
msgstr ""
#: appwiz.rc:48
...
...
po/hu.po
View file @
9ff6c507
...
...
@@ -73,11 +73,13 @@ msgstr ""
"Összes fájl (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Eltávolítás..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Módosítás/Eltávolítás..."
#: appwiz.rc:48
...
...
po/it.po
View file @
9ff6c507
...
...
@@ -67,11 +67,13 @@ msgid "All files (*.*)"
msgstr "Tutti i file (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Rimuovi..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Modifica/Rimuovi..."
#: appwiz.rc:48
...
...
po/ja.po
View file @
9ff6c507
...
...
@@ -67,11 +67,13 @@ msgid "All files (*.*)"
msgstr "すべてのファイル (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "削除(&R)..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "変更と削除(&M)..."
#: appwiz.rc:48
...
...
po/ko.po
View file @
9ff6c507
...
...
@@ -67,11 +67,13 @@ msgid "All files (*.*)"
msgstr "모든 파일 (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "제거(&R)..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "고치기(&M)/제거..."
#: appwiz.rc:48
...
...
po/lt.po
View file @
9ff6c507
...
...
@@ -70,11 +70,13 @@ msgid "All files (*.*)"
msgstr "Visi failai (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "Pa&šalinti..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "Pa&keisti/pašalinti..."
#: appwiz.rc:48
...
...
po/ml.po
View file @
9ff6c507
...
...
@@ -63,11 +63,11 @@ msgid "All files (*.*)"
msgstr ""
#: appwiz.rc:42
msgid "&Remove
...
"
msgid "&Remove"
msgstr ""
#: appwiz.rc:43
msgid "&Modify/Remove
...
"
msgid "&Modify/Remove"
msgstr ""
#: appwiz.rc:48
...
...
po/nb_NO.po
View file @
9ff6c507
...
...
@@ -65,11 +65,13 @@ msgid "All files (*.*)"
msgstr "Alle filer (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "Fje&rn..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Endre/Fjern..."
#: appwiz.rc:48
...
...
po/nl.po
View file @
9ff6c507
...
...
@@ -67,11 +67,13 @@ msgid "All files (*.*)"
msgstr "Alle bestanden (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Verwijderen..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Wijzigen/Verwijderen..."
#: appwiz.rc:48
...
...
po/or.po
View file @
9ff6c507
...
...
@@ -63,11 +63,11 @@ msgid "All files (*.*)"
msgstr ""
#: appwiz.rc:42
msgid "&Remove
...
"
msgid "&Remove"
msgstr ""
#: appwiz.rc:43
msgid "&Modify/Remove
...
"
msgid "&Modify/Remove"
msgstr ""
#: appwiz.rc:48
...
...
po/pa.po
View file @
9ff6c507
...
...
@@ -63,11 +63,11 @@ msgid "All files (*.*)"
msgstr ""
#: appwiz.rc:42
msgid "&Remove
...
"
msgid "&Remove"
msgstr ""
#: appwiz.rc:43
msgid "&Modify/Remove
...
"
msgid "&Modify/Remove"
msgstr ""
#: appwiz.rc:48
...
...
po/pl.po
View file @
9ff6c507
...
...
@@ -67,11 +67,13 @@ msgid "All files (*.*)"
msgstr "Wszystkie pliki (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Usuń..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Zmień/Usuń..."
#: appwiz.rc:48
...
...
po/pt_BR.po
View file @
9ff6c507
...
...
@@ -67,11 +67,13 @@ msgid "All files (*.*)"
msgstr "Todos os arquivos (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Remover..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Modificar/Remover..."
#: appwiz.rc:48
...
...
po/pt_PT.po
View file @
9ff6c507
...
...
@@ -72,11 +72,13 @@ msgstr ""
"Todos os ficheiros (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Remover..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Modificar/Remover..."
#: appwiz.rc:48
...
...
po/rm.po
View file @
9ff6c507
...
...
@@ -65,11 +65,11 @@ msgstr "Tuot las datotecas (*.*)"
#: appwiz.rc:42
#, fuzzy
msgid "&Remove
...
"
msgid "&Remove"
msgstr "&Annotaziun..."
#: appwiz.rc:43
msgid "&Modify/Remove
...
"
msgid "&Modify/Remove"
msgstr ""
#: appwiz.rc:48
...
...
po/ro.po
View file @
9ff6c507
...
...
@@ -66,11 +66,13 @@ msgid "All files (*.*)"
msgstr "Toate fișierele (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Sterge..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Modifică/Șterge..."
#: appwiz.rc:48
...
...
po/ru.po
View file @
9ff6c507
...
...
@@ -66,11 +66,13 @@ msgid "All files (*.*)"
msgstr "Все файлы (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Удалить..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Изменить/Удалить..."
#: appwiz.rc:48
...
...
po/sk.po
View file @
9ff6c507
...
...
@@ -65,12 +65,13 @@ msgstr "Všetky súbory (*.*)"
#: appwiz.rc:42
#, fuzzy
msgid "&Remove
...
"
msgid "&Remove"
msgstr "&Skomentovať..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
msgstr ""
#, fuzzy
msgid "&Modify/Remove"
msgstr "Modifikovaný"
#: appwiz.rc:48
msgid "Downloading..."
...
...
po/sl.po
View file @
9ff6c507
...
...
@@ -72,11 +72,13 @@ msgid "All files (*.*)"
msgstr "Vse datoteke (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Odstrani ..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Modify/Remove ..."
#: appwiz.rc:48
...
...
po/sr_RS@cyrillic.po
View file @
9ff6c507
...
...
@@ -70,11 +70,13 @@ msgid "All files (*.*)"
msgstr "Све датотеке (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Уклони..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Измени/уклони..."
#: appwiz.rc:48
...
...
po/sr_RS@latin.po
View file @
9ff6c507
...
...
@@ -80,11 +80,13 @@ msgstr ""
"Svi fajlovi (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Ukloni..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Izmeni/ukloni..."
#: appwiz.rc:48
...
...
po/sv.po
View file @
9ff6c507
...
...
@@ -67,11 +67,13 @@ msgid "All files (*.*)"
msgstr "Alla filer (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Ta bort..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Ändra/Ta bort..."
#: appwiz.rc:48
...
...
po/te.po
View file @
9ff6c507
...
...
@@ -63,11 +63,11 @@ msgid "All files (*.*)"
msgstr ""
#: appwiz.rc:42
msgid "&Remove
...
"
msgid "&Remove"
msgstr ""
#: appwiz.rc:43
msgid "&Modify/Remove
...
"
msgid "&Modify/Remove"
msgstr ""
#: appwiz.rc:48
...
...
po/th.po
View file @
9ff6c507
...
...
@@ -63,11 +63,11 @@ msgid "All files (*.*)"
msgstr "ทุกแฟ้ม (*.*)"
#: appwiz.rc:42
msgid "&Remove
...
"
msgid "&Remove"
msgstr ""
#: appwiz.rc:43
msgid "&Modify/Remove
...
"
msgid "&Modify/Remove"
msgstr ""
#: appwiz.rc:48
...
...
po/tr.po
View file @
9ff6c507
...
...
@@ -74,12 +74,12 @@ msgstr "Tüm dosyalar (*.*)"
#: appwiz.rc:42
#, fuzzy
msgid "&Remove
...
"
msgid "&Remove"
msgstr "Paylaşımı S&il..."
#: appwiz.rc:43
#, fuzzy
msgid "&Modify/Remove
...
"
msgid "&Modify/Remove"
msgstr "Paylaşımı S&il..."
#: appwiz.rc:48
...
...
po/uk.po
View file @
9ff6c507
...
...
@@ -65,11 +65,13 @@ msgid "All files (*.*)"
msgstr "Всі файли (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Видалити..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Змінити/Видалити..."
#: appwiz.rc:48
...
...
po/wa.po
View file @
9ff6c507
...
...
@@ -64,11 +64,11 @@ msgstr "Tos les fitchîs (*.*)"
#: appwiz.rc:42
#, fuzzy
msgid "&Remove
...
"
msgid "&Remove"
msgstr "&Sicrîre..."
#: appwiz.rc:43
msgid "&Modify/Remove
...
"
msgid "&Modify/Remove"
msgstr ""
#: appwiz.rc:48
...
...
po/wine.pot
View file @
9ff6c507
...
...
@@ -60,11 +60,11 @@ msgid "All files (*.*)"
msgstr ""
#: appwiz.rc:42
msgid "&Remove
...
"
msgid "&Remove"
msgstr ""
#: appwiz.rc:43
msgid "&Modify/Remove
...
"
msgid "&Modify/Remove"
msgstr ""
#: appwiz.rc:48
...
...
po/zh_CN.po
View file @
9ff6c507
...
...
@@ -63,11 +63,13 @@ msgid "All files (*.*)"
msgstr "所有文件 (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "删除 (&R)..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "修改或删除 (&M)..."
#: appwiz.rc:48
...
...
po/zh_TW.po
View file @
9ff6c507
...
...
@@ -68,11 +68,13 @@ msgid "All files (*.*)"
msgstr "所有檔案 (*.*)"
#: appwiz.rc:42
msgid "&Remove..."
#, fuzzy
msgid "&Remove"
msgstr "&Remove..."
#: appwiz.rc:43
msgid "&Modify/Remove..."
#, fuzzy
msgid "&Modify/Remove"
msgstr "&Modify/Remove..."
#: appwiz.rc:48
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment