[shell32]

Folder options:
- Load text from language file.
- Fill in the extension and description.
Patch by Edijs Kolesnikovics <terminedijs at yahoo dot com>
- Fix an Italian string.
See issue #6208 for more details.

svn path=/trunk/; revision=51586
This commit is contained in:
Gabriel Ilardi
2011-05-05 12:06:34 +00:00
parent ae63513829
commit c10792a4a1
31 changed files with 129 additions and 30 deletions
+11 -1
View File
@@ -399,7 +399,7 @@ FolderOptionsFileTypesDlg(
{
LPNMLISTVIEW lppl;
LVITEMW lvItem;
WCHAR Buffer[200], FormatBuffer[100];
WCHAR Buffer[200], FormatBuffer[100]; //FIXME
PFOLDER_FILE_TYPE_ENTRY pItem;
OPENASINFO Info;
@@ -451,6 +451,16 @@ FolderOptionsFileTypesDlg(
swprintf(Buffer, FormatBuffer, &pItem->FileExtension[1]);
/* update dialog */
SendDlgItemMessageW(hwndDlg, 14003, WM_SETTEXT, 0, (LPARAM)Buffer);
if (!LoadStringW(shell32_hInstance, IDS_FILE_DETAILSADV, FormatBuffer, sizeof(FormatBuffer) / sizeof(WCHAR)))
{
/* use default english format string */
wcscpy(FormatBuffer, L"Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced.");
}
/* format buffer */
swprintf(Buffer, FormatBuffer, &pItem->FileExtension[1], &pItem->FileDescription[0], &pItem->FileDescription[0]);
/* update dialog */
SendDlgItemMessageW(hwndDlg, 14007, WM_SETTEXT, 0, (LPARAM)Buffer);
}
}
break;
+4 -1
View File
@@ -423,7 +423,7 @@ LTEXT "
//ICON
LTEXT "Èìå íà ïðèëîæåíèå", 14005, 100, 140, 40, 10
PUSHBUTTON "Ïðî&ìÿíà...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Ôàéëîâåòå ñ ðàçøèðåíèå '%s' ñà îò âèäà '%s'.\nÇà äà ïðîìåíèòå íàñòðîéêèòå, çà âñè÷êè '%s'\nôàéëîâå, íàòèñíåòå „Ðàçøèðåíè”.", 14007, 12, 155, 160, 32
LTEXT "Ôàéëîâåòå ñ ðàçøèðåíèå '%s' ñà îò âèäà '%s'. Çà äà ïðîìåíèòå íàñòðîéêèòå, çà âñè÷êè '%s' ôàéëîâå, íàòèñíåòå „Ðàçøèðåíè”.", 14007, 12, 155, 160, 32
PUSHBUTTON "Ðàç&øèðåíè", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -759,6 +759,9 @@ BEGIN
IDS_COPY_OF "Ïðåçàïèñ íà"
IDS_SHLEXEC_NOASSOC "Íÿìà ïðèëîæåíèå çà Óèíäîóñ, íàñòðîåíî äà îòâàðÿ òîçè âèä ôàéëîâå."
IDS_FILE_DETAILS "Ïîäðîáíîñòè çà ðàçøèðåíèå '%s"
IDS_FILE_DETAILSADV "Ôàéëîâåòå ñ ðàçøèðåíèå '%s' ñà îò âèäà '%s'. Çà äà ïðîìåíèòå íàñòðîéêèòå, çà âñè÷êè '%s' ôàéëîâå, íàòèñíåòå „Ðàçøèðåíè”."
END
+4 -1
View File
@@ -424,7 +424,7 @@ LTEXT "Opens with:", -1, 12, 140, 40, 10
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
LTEXT "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -758,4 +758,7 @@ BEGIN
IDS_COPY_OF "Copy of"
IDS_SHLEXEC_NOASSOC "There is no Windows program configured to open this type of file."
IDS_FILE_DETAILS "Details for '%s' extension"
IDS_FILE_DETAILSADV "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced."
END
+4 -1
View File
@@ -412,7 +412,7 @@ LTEXT "Otev
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Zmìnit...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Soubory s pøíponou '%s' jsou typu '%s'. Kliknutím\nna tlaèítko Pokroèilé lze zmìnit nastavení pro všechny\nsoubory '%s'.", 14007, 12, 155, 160, 30
LTEXT "Soubory s pøíponou '%s' jsou typu '%s'. Kliknutím na tlaèítko Pokroèilé lze zmìnit nastavení pro všechny soubory '%s'.", 14007, 12, 155, 160, 30
PUSHBUTTON "&Pokroèilé", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -745,4 +745,7 @@ BEGIN
IDS_COPY_OF "Kopie "
IDS_SHLEXEC_NOASSOC "Pro otevøení tohoto souboru není nakonfigurován žádný program."
IDS_FILE_DETAILS "Podrobnosti pro typ souborù '%s'"
IDS_FILE_DETAILSADV "Soubory s pøíponou '%s' jsou typu '%s'. Kliknutím na tlaèítko Pokroèilé lze zmìnit nastavení pro všechny soubory '%s'."
END
+4 -1
View File
@@ -413,7 +413,7 @@ LTEXT "Opens with:", -1, 12, 140, 40, 10
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
LTEXT "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -747,4 +747,7 @@ BEGIN
IDS_COPY_OF "Copy of"
IDS_SHLEXEC_NOASSOC "There is no Windows program configured to open this type of file."
IDS_FILE_DETAILS "Details for '%s' extension"
IDS_FILE_DETAILSADV "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced."
END
+4 -1
View File
@@ -427,7 +427,7 @@ BEGIN
//ICON
LTEXT "Anwendungsname", 14005, 100, 140, 40, 10
PUSHBUTTON "Än&dern...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Um\ndie Einstellungen, die alle Dateien des Typs '%s' betreffen zu ändern, klicken Sie auf Erweitert.", 14007, 12, 155, 160, 30
LTEXT "Umdie Einstellungen, die alle Dateien des Typs '%s' betreffen zu ändern, klicken Sie auf Erweitert.", 14007, 12, 155, 160, 30
PUSHBUTTON "&Erweitert", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -762,4 +762,7 @@ BEGIN
IDS_COPY_OF "Kopie von"
IDS_SHLEXEC_NOASSOC "Es ist kein Programm mit diesem Dateityp verknüpft."
IDS_FILE_DETAILS "Details zum Dateityp '%s'"
IDS_FILE_DETAILSADV "Umdie Einstellungen, die alle Dateien des Typs '%s' betreffen zu ändern, klicken Sie auf Erweitert."
END
+4 -1
View File
@@ -424,7 +424,7 @@ LTEXT "Opens with:", -1, 12, 140, 40, 10
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
LTEXT "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -759,4 +759,7 @@ BEGIN
IDS_COPY_OF "Copy of"
IDS_SHLEXEC_NOASSOC "There is no Windows program configured to open this type of file."
IDS_FILE_DETAILS "Details for '%s' extension"
IDS_FILE_DETAILSADV "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced."
END
+4 -1
View File
@@ -424,7 +424,7 @@ LTEXT "Opens with:", -1, 12, 140, 40, 10
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
LTEXT "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -758,4 +758,7 @@ BEGIN
IDS_COPY_OF "Copy of"
IDS_SHLEXEC_NOASSOC "There is no Windows program configured to open this type of file."
IDS_FILE_DETAILS "Details for '%s' extension"
IDS_FILE_DETAILSADV "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced."
END
+4 -1
View File
@@ -435,7 +435,7 @@ LTEXT "Opens with:", -1, 12, 140, 40, 10
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
LTEXT "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -769,4 +769,7 @@ BEGIN
IDS_COPY_OF "Copy of"
IDS_SHLEXEC_NOASSOC "There is no Windows program configured to open this type of file."
IDS_FILE_DETAILS "Details for '%s' extension"
IDS_FILE_DETAILSADV "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced."
END
+3
View File
@@ -771,4 +771,7 @@ BEGIN
IDS_COPY_OF "Copia de"
IDS_SHLEXEC_NOASSOC "No hay ningún programa configurado en ReactOS para abrir este tipo de archivo."
IDS_FILE_DETAILS "Detalles para el tipo de archivo '%s'"
IDS_FILE_DETAILSADV "Los archivos con extensión '%s' son del tipo '%s'. Para cambiar la configuración de los archivos '%s', haga clic en Opciones avanzadas."
END
+4 -1
View File
@@ -424,7 +424,7 @@ LTEXT "Opens with:", -1, 12, 140, 40, 10
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
LTEXT "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -758,4 +758,7 @@ BEGIN
IDS_COPY_OF "Copy of"
IDS_SHLEXEC_NOASSOC "There is no Windows program configured to open this type of file."
IDS_FILE_DETAILS "Details for '%s' extension"
IDS_FILE_DETAILSADV "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced."
END
+4 -1
View File
@@ -428,7 +428,7 @@ LTEXT "Ouvrir avec :", -1, 12, 140, 40, 10
//ICON
LTEXT "Nom de l'application", 14005, 100, 140, 40, 10
PUSHBUTTON "&Modifier...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Les fichiers avec l'extension '%s' sont de type '%s'. Pour\nmodifier les paramètres qui concernent tous les fichiers '%s', cliquez\nsur Avancé.", 14007, 12, 155, 160, 30
LTEXT "Les fichiers avec l'extension '%s' sont de type '%s'. Pour modifier les paramètres qui concernent tous les fichiers '%s', cliquez sur Avancé.", 14007, 12, 155, 160, 30
PUSHBUTTON "A&vancé", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -762,4 +762,7 @@ BEGIN
IDS_COPY_OF "Copie de"
IDS_SHLEXEC_NOASSOC "Aucun programme Windows n'est configuré pour ouvrir ce type de fichier."
IDS_FILE_DETAILS "Détails concernant l'extension '%s'"
IDS_FILE_DETAILSADV "Les fichiers avec l'extension '%s' sont de type '%s'. Pour modifier les paramètres qui concernent tous les fichiers '%s', cliquez sur Avancé."
END
+4 -1
View File
@@ -427,7 +427,7 @@ LTEXT "Opens with:", -1, 12, 140, 40, 10
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
LTEXT "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -761,4 +761,7 @@ BEGIN
IDS_COPY_OF "Copy of"
IDS_SHLEXEC_NOASSOC "There is no Windows program configured to open this type of file."
IDS_FILE_DETAILS "Details for '%s' extension"
IDS_FILE_DETAILSADV "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced."
END
+5 -2
View File
@@ -129,7 +129,7 @@ BEGIN
LTEXT "Versione " KERNEL_VERSION_STR " (" KERNEL_VERSION_BUILD_STR ")", IDC_STATIC, 35, 65, 235, 10
LTEXT REACTOS_DEFAULT_STR_LEGAL_COPYRIGHT, IDC_STATIC, 35, 75, 210, 10
LTEXT "", IDC_SHELL_ABOUT_OTHERSTUFF, 35, 90, 180, 20
LTEXT "Questa versione di ReactOS è registrata da:", IDC_STATIC, 35, 115, 180, 10
LTEXT "Questa versione di ReactOS è registrata a nome di:", IDC_STATIC, 35, 115, 180, 10
LTEXT "", IDC_SHELL_ABOUT_REG_USERNAME, 45, 125, 180, 10
LTEXT "", IDC_SHELL_ABOUT_REG_ORGNAME, 45, 135, 180, 10
LTEXT "", IDC_STATIC, 35, 147, 235, 1, SS_ETCHEDHORZ
@@ -435,7 +435,7 @@ LTEXT "Si apre con:", -1, 12, 140, 40, 10
//ICON
LTEXT "Nome", 14005, 100, 140, 40, 10
PUSHBUTTON "&Cambia...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "I files con estensione '%s' sono di tipo '%s'.\nPer cambiare le impostazioni che influenzano tutti i file '%s', cliccare\nAvanzate.", 14007, 12, 155, 160, 30
LTEXT "I files con estensione '%s' sono di tipo '%s'. Per cambiare le impostazioni per tutti i file '%s', cliccare su Avanzate.", 14007, 12, 155, 160, 30
PUSHBUTTON "A&vanzate", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -769,4 +769,7 @@ BEGIN
IDS_COPY_OF "Copia di"
IDS_SHLEXEC_NOASSOC "Non c'è un programma configurato per aprire questo tipo di file."
IDS_FILE_DETAILS "Dettagli per l'estensione '%s'"
IDS_FILE_DETAILSADV "I files con estensione '%s' sono di tipo '%s'. Per modificare le impostazioni per tutti i file '%s', cliccare su Avanzate."
END
+5 -1
View File
@@ -424,7 +424,7 @@ LTEXT "
//ICON
LTEXT "アプリ名", 14005, 100, 140, 40, 10
PUSHBUTTON "変更(&C)...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "拡張子 '%s' のファイルの種類は'%s'です。\n'%s' のファイルすべてに対する設定を変更するには\n詳細設定をクリックしてください。", 14007, 12, 155, 160, 30
LTEXT "拡張子 '%s' のファイルの種類は'%s'です。 '%s' のファイルすべてに対する設定を変更するには 詳細設定をクリックしてください。", 14007, 12, 155, 160, 30
PUSHBUTTON "詳細設定(&V)", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -757,4 +757,8 @@ BEGIN
IDS_DEFAULT_CLUSTER_SIZE "デフォルト アロケーション サイズ"
IDS_COPY_OF "コピー "
IDS_SHLEXEC_NOASSOC "There is no Windows program configured to open this type of file."
IDS_FILE_DETAILS "拡張子 '%s' の詳細"
IDS_FILE_DETAILSADV "拡張子 '%s' のファイルの種類は'%s'です。 '%s' のファイルすべてに対する設定を変更するには 詳細設定をクリックしてください。"
END
+4 -1
View File
@@ -424,7 +424,7 @@ LTEXT "Opens with:", -1, 12, 140, 40, 10
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
LTEXT "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -758,4 +758,7 @@ BEGIN
IDS_COPY_OF "Copy of"
IDS_SHLEXEC_NOASSOC "There is no Windows program configured to open this type of file."
IDS_FILE_DETAILS "Details for '%s' extension"
IDS_FILE_DETAILSADV "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced."
END
+4 -1
View File
@@ -424,7 +424,7 @@ LTEXT "Opens with:", -1, 12, 140, 40, 10
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
LTEXT "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -758,4 +758,7 @@ BEGIN
IDS_COPY_OF "Copy of"
IDS_SHLEXEC_NOASSOC "Er is geen Windows-programma geconfigureerd om dit soort bestanden te openen."
IDS_FILE_DETAILS "Details for '%s' extension"
IDS_FILE_DETAILSADV "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced."
END
+4 -1
View File
@@ -425,7 +425,7 @@ LTEXT "
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Endre...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Filer med utvidelser '%s' er av typen '%s'. For å\nendre innstillingene som er av filen '%s', trykk på\navansert.", 14007, 12, 155, 160, 30
LTEXT "Filer med utvidelser '%s' er av typen '%s'. For å endre innstillingene som er av filen '%s', trykk på avansert.", 14007, 12, 155, 160, 30
PUSHBUTTON "Av&ansert", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -761,4 +761,7 @@ BEGIN
IDS_COPY_OF "Copy of"
IDS_SHLEXEC_NOASSOC "Intet Windows-program er satt opp til å åpne denne filtypen."
IDS_FILE_DETAILS "Detailjer for '%s' utvidelser"
IDS_FILE_DETAILSADV "Filer med utvidelser '%s' er av typen '%s'. For å endre innstillingene som er av filen '%s', trykk på avansert."
END
+4 -1
View File
@@ -432,7 +432,7 @@ LTEXT "Otwiera z:", -1, 12, 140, 40, 10
//ICON
LTEXT "Nazwa Aplikacji", 14005, 100, 140, 40, 10
PUSHBUTTON "Z&mieñ", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Pliki z rozszerzeniem '%s' nale¿¹ do typu: '%s'. Aby\nzmieniæ ustawienia dotycz¹ce wszystkich plików '%s', wybierz\nZaawansowane.", 14007, 12, 155, 160, 30
LTEXT "Pliki z rozszerzeniem '%s' nale¿¹ do typu: '%s'. Aby zmieniæ ustawienia dotycz¹ce wszystkich plików '%s', wybierz Zaawansowane.", 14007, 12, 155, 160, 30
PUSHBUTTON "Zaawa&nsowane", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -766,4 +766,7 @@ BEGIN
IDS_COPY_OF "Kopia"
IDS_SHLEXEC_NOASSOC "¯aden program nie jest skonfigurowany, by otwieraæ pliki tego typu."
IDS_FILE_DETAILS "Szczegó³y dla rozszerzenia '%s'"
IDS_FILE_DETAILSADV "Pliki z rozszerzeniem '%s' s¹ typu '%s'. Aby zmieniæ ustawienia, które dotycz¹ wszystkich plików '%s', kliknij przycisk Zaawansowane."
END
+4 -1
View File
@@ -426,7 +426,7 @@ LTEXT "Opens with:", -1, 12, 140, 40, 10
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
LTEXT "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -760,4 +760,7 @@ BEGIN
IDS_COPY_OF "Copy of"
IDS_SHLEXEC_NOASSOC "Nici un program Windows nu este configurat sa deschida fi?iere de acest tip."
IDS_FILE_DETAILS "Details for '%s' extension"
IDS_FILE_DETAILSADV "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced."
END
+4 -1
View File
@@ -427,7 +427,7 @@ LTEXT "Abre com:", -1, 12, 140, 40, 10
//ICON
LTEXT "Appnome", 14005, 100, 140, 40, 10
PUSHBUTTON "&Mudar...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Ficheiros com extensão '%s' são do tipo '%s'. Para\nmudar definições que afectam todos '%s' ficheiros, click\nAvançado.", 14007, 12, 155, 160, 30
LTEXT "Ficheiros com extensão '%s' são do tipo '%s'. Para mudar definições que afectam todos '%s' ficheiros, click Avançado.", 14007, 12, 155, 160, 30
PUSHBUTTON "A&vançado", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -761,4 +761,7 @@ BEGIN
IDS_COPY_OF "Cópia de"
IDS_SHLEXEC_NOASSOC "Não existe um programa Windows configurado para abrir este tipo de ficheiro."
IDS_FILE_DETAILS "Detalhes para '%s' extensão"
IDS_FILE_DETAILSADV "Ficheiros com extensão '%s' são do tipo '%s'. Para mudar definições que afectam todos '%s' ficheiros, click Avançado."
END
+4 -1
View File
@@ -427,7 +427,7 @@ LTEXT "Deschidere cu:", -1, 12, 140, 40, 10
//ICON
LTEXT "Nume ap.", 14005, 100, 140, 40, 10
PUSHBUTTON "&Schimbare", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Fișierele cu extensia '%s' sunt de tipul '%s'. \nPentru a schimbat setări care vor afecta\ntoate fișierele '%s', clic pe Avansat.", 14007, 12, 155, 160, 30
LTEXT "Fișierele cu extensia '%s' sunt de tipul '%s'. Pentru a schimbat setări care vor afecta toate fișierele '%s', clic pe Avansat.", 14007, 12, 155, 160, 30
PUSHBUTTON "A&vansat", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -760,6 +760,9 @@ BEGIN
IDS_DEFAULT_CLUSTER_SIZE "Mărime de alocare implicită"
IDS_SHLEXEC_NOASSOC "There is no Windows program configured to open this type of file."
IDS_FILE_DETAILS "Detalii pentru extensia '%s'"
IDS_FILE_DETAILSADV "Fișierele cu extensia '%s' sunt de tipul '%s'. Pentru a schimbat setări care vor afecta toate fișierele '%s', clic pe Avansat."
END
#pragma code_page(default)
+4 -1
View File
@@ -424,7 +424,7 @@ LTEXT "
//ICON
LTEXT "Ïðèëîæåíèå:", 14005, 100, 142, 54, 10
PUSHBUTTON "&Èçìåíèòü...", 14006, 180, 140, 63, 14, WS_TABSTOP
LTEXT "Ôàéëû ñ ðàñøèðåíèåì '%s' èìåþò òèï '%s'. Äëÿ èçìåíåíèÿ ïàðàìåòðîâ âñåõ ôàéëîâ '%s', íàæìèòå ""Äîïîëíèòåëüíî"".", 14007, 12, 155, 162, 36
LTEXT "Ôàéëû ñ ðàñøèðåíèåì '%s' èìåþò òèï '%s'. Äëÿ èçìåíåíèÿ ïàðàìåòðîâ âñåõ ôàéëîâ '%s', íàæìèòå 'Äîïîëíèòåëüíî'.", 14007, 12, 155, 162, 36
PUSHBUTTON "Äî&ïîëíèòåëüíî", 14008, 180, 175, 63, 14, WS_TABSTOP
END
@@ -757,4 +757,7 @@ BEGIN
IDS_COPY_OF "Copy of"
IDS_SHLEXEC_NOASSOC "There is no Windows program configured to open this type of file."
IDS_FILE_DETAILS "Îïèñàíèå ðàñøèðåíèÿ '%s'"
IDS_FILE_DETAILSADV "Ôàéëû ñ ðàñøèðåíèåì '%s' èìåþò òèï '%s'. Äëÿ èçìåíåíèÿ ïàðàìåòðîâ âñåõ ôàéëîâ '%s', íàæìèòå 'Äîïîëíèòåëüíî'."
END
+4 -1
View File
@@ -430,7 +430,7 @@ LTEXT "Opens with:", -1, 12, 140, 40, 10
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Zmeni...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
LTEXT "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -766,4 +766,7 @@ BEGIN
// There is no Windows program configured to open this type of file.
IDS_SHLEXEC_NOASSOC "Neexistuje žiadny program nakonfigurovaný tak, aby otváral tento typ súborov."
// Na otváranie tohto typu súboru nie je nakonfigurovaný žiadny program systému Windows.
IDS_FILE_DETAILS "Details for '%s' extension"
IDS_FILE_DETAILSADV "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced."
END
+4 -1
View File
@@ -424,7 +424,7 @@ LTEXT "Opens with:", -1, 12, 140, 40, 10
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
LTEXT "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -758,4 +758,7 @@ BEGIN
IDS_COPY_OF "Copy of"
IDS_SHLEXEC_NOASSOC "Noben Okenski program ni nastavljen, da bi odpiral ta tip datotek."
IDS_FILE_DETAILS "Details for '%s' extension"
IDS_FILE_DETAILSADV "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced."
END
+4 -1
View File
@@ -424,7 +424,7 @@ LTEXT "Opens with:", -1, 12, 140, 40, 10
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
LTEXT "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -758,4 +758,7 @@ BEGIN
IDS_COPY_OF "Copy of"
IDS_SHLEXEC_NOASSOC "There is no Windows program configured to open this type of file."
IDS_FILE_DETAILS "Details for '%s' extension"
IDS_FILE_DETAILSADV "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced."
END
+4 -1
View File
@@ -424,7 +424,7 @@ LTEXT "Opens with:", -1, 12, 140, 40, 10
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
LTEXT "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -758,4 +758,7 @@ BEGIN
IDS_COPY_OF "Copy of"
IDS_SHLEXEC_NOASSOC "There is no Windows program configured to open this type of file."
IDS_FILE_DETAILS "Details for '%s' extension"
IDS_FILE_DETAILSADV "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced."
END
+4 -1
View File
@@ -437,7 +437,7 @@ LTEXT "³
//ICON
LTEXT "Äîäàòîê", 14005, 100, 140, 40, 10
PUSHBUTTON "&Çì³íèòè...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Ôàéëè ç ðîçøèðåííÿì '%s' ìàþòü òèï '%s'.\nÙîá çì³íèòè ïàðàìåòðè, ÿê³ âïëèâàòèìóòü\níà âñ³ ôàéëè '%s', íàòèñí³òü êíîïêó ""Äîäàòêîâî"".", 14007, 12, 155, 160, 30
LTEXT "Ôàéëè ç ðîçøèðåííÿì '%s' ìàþòü òèï '%s'. Ùîá çì³íèòè ïàðàìåòðè, ÿê³ âïëèâàòèìóòü íà âñ³ ôàéëè '%s', íàòèñí³òü êíîïêó 'Äîäàòêîâî'.", 14007, 12, 155, 160, 30
PUSHBUTTON "&Äîäàòêîâî", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -771,4 +771,7 @@ BEGIN
IDS_COPY_OF "Êîï³ÿ"
IDS_SHLEXEC_NOASSOC "Íåìຠïðîãðàìè Windows, ñêîíô³ãóðîâàíî¿ äëÿ â³äêðèòòÿ öüîãî òèïó ôàéë³â."
IDS_FILE_DETAILS "Ïîäðîáèö³ äëÿ ðîçøèðåííÿ '%s'"
IDS_FILE_DETAILSADV "Ôàéëè ç ðîçøèðåííÿì '%s' ìàþòü òèï '%s'. Ùîá çì³íèòè ïàðàìåòðè, ÿê³ âïëèâàòèìóòü íà âñ³ ôàéëè '%s', íàòèñí³òü êíîïêó 'Äîäàòêîâî'."
END
+4 -1
View File
@@ -413,7 +413,7 @@ LTEXT "Opens with:", -1, 12, 140, 40, 10
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
LTEXT "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -746,5 +746,8 @@ BEGIN
IDS_COPY_OF "Copy of"
IDS_SHLEXEC_NOASSOC "There is no Windows program configured to open this type of file."
IDS_FILE_DETAILS "Details for '%s' extension"
IDS_FILE_DETAILSADV "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced."
END
+4 -1
View File
@@ -425,7 +425,7 @@ LTEXT "Opens with:", -1, 12, 140, 40, 10
//ICON
LTEXT "Appname", 14005, 100, 140, 40, 10
PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
LTEXT "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
END
@@ -759,6 +759,9 @@ BEGIN
IDS_COPY_OF "Copy of"
IDS_SHLEXEC_NOASSOC "There is no Windows program configured to open this type of file."
IDS_FILE_DETAILS "Details for '%s' extension"
IDS_FILE_DETAILSADV "Files with extension '%s' are of type '%s'. To change settings that affect all '%s' files, click Advanced."
END
#pragma code_page(default)
+1
View File
@@ -141,6 +141,7 @@
#define IDS_SHLEXEC_NOASSOC 173
#define IDS_FILE_TYPES 174
#define IDS_FILE_DETAILS 175
#define IDS_FILE_DETAILSADV 176
#define IDS_RUNDLG_ERROR 180
#define IDS_RUNDLG_BROWSE_ERROR 181