summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/filedialogimpl-win32.cpp
diff options
context:
space:
mode:
authorMarcin Floryan <mfloryan@mm.waw.pl>2008-02-26 15:53:12 +0000
committermfloryan <mfloryan@users.sourceforge.net>2008-02-26 15:53:12 +0000
commit8b8b38e5aa7890f1d1151c9f56b7f7fd49ca7efe (patch)
tree3c5e468dfc92a8bfe2765c2a53ae5c4997d76bf0 /src/ui/dialog/filedialogimpl-win32.cpp
parentAdded missing src/ui/dialog/filedialogimpl-win32.cpp file to po/POTFILES.in a... (diff)
downloadinkscape-8b8b38e5aa7890f1d1151c9f56b7f7fd49ca7efe.tar.gz
inkscape-8b8b38e5aa7890f1d1151c9f56b7f7fd49ca7efe.zip
Finished translation stuff for filedialogimpl-win32.cpp
(bzr r4865)
Diffstat (limited to 'src/ui/dialog/filedialogimpl-win32.cpp')
-rw-r--r--src/ui/dialog/filedialogimpl-win32.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/dialog/filedialogimpl-win32.cpp b/src/ui/dialog/filedialogimpl-win32.cpp
index 4dfa36b48..db49b4a86 100644
--- a/src/ui/dialog/filedialogimpl-win32.cpp
+++ b/src/ui/dialog/filedialogimpl-win32.cpp
@@ -239,7 +239,7 @@ void FileOpenDialogImplWin32::createFilterMenu()
_extension_map = new Inkscape::Extension::Extension*[filter_count];
// Filter Image Files
- all_image_files.name = g_utf8_to_utf16(all_image_files_filter_name,
+ all_image_files.name = g_utf8_to_utf16(_(all_image_files_filter_name),
-1, NULL, &all_image_files.name_length, NULL);
all_image_files.filter = g_utf8_to_utf16(all_image_files_filter.data(),
-1, NULL, &all_image_files.filter_length, NULL);
@@ -247,7 +247,7 @@ void FileOpenDialogImplWin32::createFilterMenu()
_extension_map[extension_index++] = NULL;
// Filter Inkscape Files
- all_inkscape_files.name = g_utf8_to_utf16(all_inkscape_files_filter_name,
+ all_inkscape_files.name = g_utf8_to_utf16(_(all_inkscape_files_filter_name),
-1, NULL, &all_inkscape_files.name_length, NULL);
all_inkscape_files.filter = g_utf8_to_utf16(all_inkscape_files_filter.data(),
-1, NULL, &all_inkscape_files.filter_length, NULL);
@@ -255,7 +255,7 @@ void FileOpenDialogImplWin32::createFilterMenu()
_extension_map[extension_index++] = NULL;
// Filter All Files
- all_files.name = g_utf8_to_utf16(all_files_filter_name,
+ all_files.name = g_utf8_to_utf16(_(all_files_filter_name),
-1, NULL, &all_files.name_length, NULL);
all_files.filter = NULL;
all_files.filter_length = 0;