Commit 9fda5836 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

oledlg: Support convert menu item in OleUIAddVerbMenuW().

parent 5d0806d2
...@@ -30,6 +30,7 @@ STRINGTABLE ...@@ -30,6 +30,7 @@ STRINGTABLE
IDS_NOTOLEMOD "File does not appear to be a valid OLE module. Unable to register OLE control." IDS_NOTOLEMOD "File does not appear to be a valid OLE module. Unable to register OLE control."
IDS_NOTOLEMODCAPTION "Add Control" IDS_NOTOLEMODCAPTION "Add Control"
IDS_VERBMENU_OBJECT "&Object" IDS_VERBMENU_OBJECT "&Object"
IDS_VERBMENU_CONVERT "&Convert..."
} }
STRINGTABLE STRINGTABLE
......
...@@ -163,15 +163,13 @@ BOOL WINAPI OleUIAddVerbMenuW(IOleObject *object, LPCWSTR shorttype, ...@@ -163,15 +163,13 @@ BOOL WINAPI OleUIAddVerbMenuW(IOleObject *object, LPCWSTR shorttype,
WCHAR *rootname, *objecttype; WCHAR *rootname, *objecttype;
LPOLESTR usertype = NULL; LPOLESTR usertype = NULL;
OLEVERB firstverb, verb; OLEVERB firstverb, verb;
WCHAR objectW[32]; /* should be enough */ WCHAR resstrW[32]; /* should be enough */
BOOL singleverb;
HMENU submenu; HMENU submenu;
TRACE("(%p, %s, %p, %d, %d, %d, %d, %d, %p)\n", object, debugstr_w(shorttype), TRACE("(%p, %s, %p, %d, %d, %d, %d, %d, %p)\n", object, debugstr_w(shorttype),
hMenu, uPos, idmin, idmax, addConvert, idConvert, ret_submenu); hMenu, uPos, idmin, idmax, addConvert, idConvert, ret_submenu);
if (addConvert)
FIXME("convert menu item is not supported.\n");
if (ret_submenu) if (ret_submenu)
*ret_submenu = NULL; *ret_submenu = NULL;
...@@ -182,10 +180,10 @@ BOOL WINAPI OleUIAddVerbMenuW(IOleObject *object, LPCWSTR shorttype, ...@@ -182,10 +180,10 @@ BOOL WINAPI OleUIAddVerbMenuW(IOleObject *object, LPCWSTR shorttype,
if (object) if (object)
IOleObject_EnumVerbs(object, &enumverbs); IOleObject_EnumVerbs(object, &enumverbs);
LoadStringW(OLEDLG_hInstance, IDS_VERBMENU_OBJECT, objectW, sizeof(objectW)/sizeof(WCHAR)); LoadStringW(OLEDLG_hInstance, IDS_VERBMENU_OBJECT, resstrW, sizeof(resstrW)/sizeof(WCHAR));
/* no object, or object without enumeration support */ /* no object, or object without enumeration support */
if (!object || (object && !enumverbs)) { if (!object || (object && !enumverbs)) {
InsertMenuW(hMenu, uPos, MF_BYPOSITION|MF_STRING|MF_GRAYED, idmin, objectW); InsertMenuW(hMenu, uPos, MF_BYPOSITION|MF_STRING|MF_GRAYED, idmin, resstrW);
return FALSE; return FALSE;
} }
...@@ -195,18 +193,19 @@ BOOL WINAPI OleUIAddVerbMenuW(IOleObject *object, LPCWSTR shorttype, ...@@ -195,18 +193,19 @@ BOOL WINAPI OleUIAddVerbMenuW(IOleObject *object, LPCWSTR shorttype,
else else
objecttype = (WCHAR*)shorttype; objecttype = (WCHAR*)shorttype;
rootname = CoTaskMemAlloc((strlenW(objecttype) + strlenW(objectW) + 2)*sizeof(WCHAR)); rootname = CoTaskMemAlloc((strlenW(objecttype) + strlenW(resstrW) + 2)*sizeof(WCHAR));
strcpyW(rootname, objecttype); strcpyW(rootname, objecttype);
strcatW(rootname, spaceW); strcatW(rootname, spaceW);
strcatW(rootname, objectW); strcatW(rootname, resstrW);
CoTaskMemFree(usertype); CoTaskMemFree(usertype);
/* iterate through verbs */ /* iterate through verbs */
/* find first suitable verb */ /* find first suitable verb */
get_next_insertable_verb(enumverbs, idmin, idmax, &firstverb); get_next_insertable_verb(enumverbs, idmin, idmax, &firstverb);
singleverb = get_next_insertable_verb(enumverbs, idmin, idmax, &verb) != S_OK;
if (get_next_insertable_verb(enumverbs, idmin, idmax, &verb) != S_OK) { if (singleverb && !addConvert) {
WCHAR *str = CoTaskMemAlloc((strlenW(rootname) + strlenW(firstverb.lpszVerbName) + 2)*sizeof(WCHAR)); WCHAR *str = CoTaskMemAlloc((strlenW(rootname) + strlenW(firstverb.lpszVerbName) + 2)*sizeof(WCHAR));
strcpyW(str, firstverb.lpszVerbName); strcpyW(str, firstverb.lpszVerbName);
...@@ -224,15 +223,25 @@ BOOL WINAPI OleUIAddVerbMenuW(IOleObject *object, LPCWSTR shorttype, ...@@ -224,15 +223,25 @@ BOOL WINAPI OleUIAddVerbMenuW(IOleObject *object, LPCWSTR shorttype,
submenu = CreatePopupMenu(); submenu = CreatePopupMenu();
insert_verb_to_menu(submenu, idmin, &firstverb); insert_verb_to_menu(submenu, idmin, &firstverb);
insert_verb_to_menu(submenu, idmin, &verb);
CoTaskMemFree(firstverb.lpszVerbName); CoTaskMemFree(firstverb.lpszVerbName);
CoTaskMemFree(verb.lpszVerbName);
if (!singleverb) {
insert_verb_to_menu(submenu, idmin, &verb);
CoTaskMemFree(verb.lpszVerbName);
}
while (get_next_insertable_verb(enumverbs, idmin, idmax, &verb) == S_OK) { while (get_next_insertable_verb(enumverbs, idmin, idmax, &verb) == S_OK) {
insert_verb_to_menu(submenu, idmin, &verb); insert_verb_to_menu(submenu, idmin, &verb);
CoTaskMemFree(verb.lpszVerbName); CoTaskMemFree(verb.lpszVerbName);
} }
/* convert verb is at the bottom of a popup, separated from verbs */
if (addConvert) {
LoadStringW(OLEDLG_hInstance, IDS_VERBMENU_CONVERT, resstrW, sizeof(resstrW)/sizeof(WCHAR));
InsertMenuW(submenu, ~0, MF_BYPOSITION|MF_SEPARATOR, 0, NULL);
InsertMenuW(submenu, ~0, MF_BYPOSITION|MF_STRING, idConvert, resstrW);
}
if (submenu) if (submenu)
*ret_submenu = submenu; *ret_submenu = submenu;
......
...@@ -42,6 +42,7 @@ ...@@ -42,6 +42,7 @@
#define IDC_FILE 1011 #define IDC_FILE 1011
/* String ids for verb menu */ /* String ids for verb menu */
#define IDS_VERBMENU_CONVERT 0x130
#define IDS_VERBMENU_OBJECT 0x135 #define IDS_VERBMENU_OBJECT 0x135
/* String ids for Paste Special */ /* String ids for Paste Special */
......
...@@ -58,7 +58,7 @@ msgstr "&معلومات الدّعم" ...@@ -58,7 +58,7 @@ msgstr "&معلومات الدّعم"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -139,7 +139,7 @@ msgstr "&تثبيت" ...@@ -139,7 +139,7 @@ msgstr "&تثبيت"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -340,7 +340,7 @@ msgstr "إ&عادة الضبط" ...@@ -340,7 +340,7 @@ msgstr "إ&عادة الضبط"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7394,72 +7394,72 @@ msgstr "تشغيل" ...@@ -7394,72 +7394,72 @@ msgstr "تشغيل"
msgid "Off" msgid "Off"
msgstr "إيقاف" msgstr "إيقاف"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "عنصر إدخال" msgstr "عنصر إدخال"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "نوع العنصر:" msgstr "نوع العنصر:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "نتيجة" msgstr "نتيجة"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "أنشئ الآن" msgstr "أنشئ الآن"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "أنشئ متحكمًا" msgstr "أنشئ متحكمًا"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "أنشئ من ملف" msgstr "أنشئ من ملف"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "أ&ضف متحكمًا..." msgstr "أ&ضف متحكمًا..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "اعرض كرمز" msgstr "اعرض كرمز"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "استعرض..." msgstr "استعرض..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "الملف:" msgstr "الملف:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "لصق خاص" msgstr "لصق خاص"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "المصدر:" msgstr "المصدر:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "الص&ق" msgstr "الص&ق"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "الصق و&صلة" msgstr "الصق و&صلة"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "كـ:" msgstr "كـ:"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "اع&رض كرمز" msgstr "اع&رض كرمز"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "غ&ير الرمز..." msgstr "غ&ير الرمز..."
...@@ -7489,22 +7489,28 @@ msgstr "يبدو ان الملف ليس وحدة OLE صالحة ، غير قاد ...@@ -7489,22 +7489,28 @@ msgstr "يبدو ان الملف ليس وحدة OLE صالحة ، غير قاد
msgid "Add Control" msgid "Add Control"
msgstr "أضف متحكمًا" msgstr "أضف متحكمًا"
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "ال&خط..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "الع&نصر" msgstr "الع&نصر"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "أضف المحتوى الموجود في الحافظة إلى المستند كـ %s." msgstr "أضف المحتوى الموجود في الحافظة إلى المستند كـ %s."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
msgstr "" msgstr ""
"أضف المحتوى الموجود في الحافظة إلى المستند لذلك يمكنك تفعيله بواسطة %s." "أضف المحتوى الموجود في الحافظة إلى المستند لذلك يمكنك تفعيله بواسطة %s."
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
...@@ -7512,7 +7518,7 @@ msgstr "" ...@@ -7512,7 +7518,7 @@ msgstr ""
"أضف المحتوى الموجود في الحافظة إلى المستند لذلك يمكنك تفعيله بواسطة %s. و " "أضف المحتوى الموجود في الحافظة إلى المستند لذلك يمكنك تفعيله بواسطة %s. و "
"يمكن عرضها كرمز." "يمكن عرضها كرمز."
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
...@@ -7521,7 +7527,7 @@ msgstr "" ...@@ -7521,7 +7527,7 @@ msgstr ""
"أدخل محتويات الحافظة إلى المستند كـ %s.البيانات يشير إلى الملف المصدر و " "أدخل محتويات الحافظة إلى المستند كـ %s.البيانات يشير إلى الملف المصدر و "
"التغيير في الملف سينعكس على المستند." "التغيير في الملف سينعكس على المستند."
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
...@@ -7530,7 +7536,7 @@ msgstr "" ...@@ -7530,7 +7536,7 @@ msgstr ""
"أدخل صورة من محتويات الحافظة إلى المستند ، الصورة تشير إلى الملف المصدر و " "أدخل صورة من محتويات الحافظة إلى المستند ، الصورة تشير إلى الملف المصدر و "
"التغيير في الملف سينعكس على المستند." "التغيير في الملف سينعكس على المستند."
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
...@@ -7539,19 +7545,19 @@ msgstr "" ...@@ -7539,19 +7545,19 @@ msgstr ""
"إنشاء اختصار يشير إلى موقع المحتويات في الحافظة. الاختصار يشير إلى الملف " "إنشاء اختصار يشير إلى موقع المحتويات في الحافظة. الاختصار يشير إلى الملف "
"المصدر و التغيير في الملف سينعكس على المستند." "المصدر و التغيير في الملف سينعكس على المستند."
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "أدخل المحتوى من الحافظة إلى المستند." msgstr "أدخل المحتوى من الحافظة إلى المستند."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "نوع غير معروف" msgstr "نوع غير معروف"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "مصدر غير معروف" msgstr "مصدر غير معروف"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "البرنامج الذي تم إنشاؤه" msgstr "البرنامج الذي تم إنشاؤه"
......
...@@ -60,7 +60,7 @@ msgstr "Информация" ...@@ -60,7 +60,7 @@ msgstr "Информация"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -147,7 +147,7 @@ msgstr "Инсталирай" ...@@ -147,7 +147,7 @@ msgstr "Инсталирай"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -353,7 +353,7 @@ msgstr "&Възстанови" ...@@ -353,7 +353,7 @@ msgstr "&Възстанови"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7496,79 +7496,79 @@ msgstr "Включено" ...@@ -7496,79 +7496,79 @@ msgstr "Включено"
msgid "Off" msgid "Off"
msgstr "Изключено" msgstr "Изключено"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "" msgstr ""
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "" msgstr ""
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: oledlg.rc:62 #: oledlg.rc:63
#, fuzzy #, fuzzy
msgid "Create New" msgid "Create New"
msgstr "Създай нова папка" msgstr "Създай нова папка"
#: oledlg.rc:64 #: oledlg.rc:65
#, fuzzy #, fuzzy
msgid "Create Control" msgid "Create Control"
msgstr "Контрол на потока" msgstr "Контрол на потока"
#: oledlg.rc:66 #: oledlg.rc:67
#, fuzzy #, fuzzy
msgid "Create From File" msgid "Create From File"
msgstr "Създай нова папка" msgstr "Създай нова папка"
#: oledlg.rc:69 #: oledlg.rc:70
#, fuzzy #, fuzzy
msgid "&Add Control..." msgid "&Add Control..."
msgstr "&Добави..." msgstr "&Добави..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "" msgstr ""
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
#, fuzzy #, fuzzy
msgid "Browse..." msgid "Browse..."
msgstr "&Избери..." msgstr "&Избери..."
#: oledlg.rc:73 #: oledlg.rc:74
#, fuzzy #, fuzzy
msgid "File:" msgid "File:"
msgstr "Файл" msgstr "Файл"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "" msgstr ""
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "Източник:" msgstr "Източник:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "&Вмъкни" msgstr "&Вмъкни"
#: oledlg.rc:85 #: oledlg.rc:86
#, fuzzy #, fuzzy
msgid "Paste &Link" msgid "Paste &Link"
msgstr "Вмъкни като връзка" msgstr "Вмъкни като връзка"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "" msgstr ""
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "" msgstr ""
#: oledlg.rc:96 #: oledlg.rc:97
#, fuzzy #, fuzzy
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "Подреди &иконите" msgstr "Подреди &иконите"
...@@ -7597,61 +7597,67 @@ msgstr "" ...@@ -7597,61 +7597,67 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "" msgstr ""
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "&Шрифт..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "" msgstr ""
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "" msgstr ""
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
msgstr "" msgstr ""
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
msgstr "" msgstr ""
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
"your document." "your document."
msgstr "" msgstr ""
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
"in your document." "in your document."
msgstr "" msgstr ""
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
"be reflected in your document." "be reflected in your document."
msgstr "" msgstr ""
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "" msgstr ""
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "" msgstr ""
#: oledlg.rc:46 #: oledlg.rc:47
#, fuzzy #, fuzzy
msgid "Unknown Source" msgid "Unknown Source"
msgstr "Пре&гледай изходния код" msgstr "Пре&гледай изходния код"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "" msgstr ""
......
...@@ -62,7 +62,7 @@ msgstr "Informació de suport" ...@@ -62,7 +62,7 @@ msgstr "Informació de suport"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -146,7 +146,7 @@ msgstr "&Instal·la" ...@@ -146,7 +146,7 @@ msgstr "&Instal·la"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -352,7 +352,7 @@ msgstr "&Reinicia" ...@@ -352,7 +352,7 @@ msgstr "&Reinicia"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7372,72 +7372,72 @@ msgstr "Actiu" ...@@ -7372,72 +7372,72 @@ msgstr "Actiu"
msgid "Off" msgid "Off"
msgstr "Inactiu" msgstr "Inactiu"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "Inserció d'un objecte" msgstr "Inserció d'un objecte"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "Tipus d'objecte:" msgstr "Tipus d'objecte:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "Resultat" msgstr "Resultat"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "Crea'n un de nou" msgstr "Crea'n un de nou"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "Crea control" msgstr "Crea control"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "Crea'l des d'un fitxer" msgstr "Crea'l des d'un fitxer"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "&Afegeix control..." msgstr "&Afegeix control..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "Mostra'l com a icona" msgstr "Mostra'l com a icona"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "Navega..." msgstr "Navega..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "Fitxer:" msgstr "Fitxer:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "Enganxada amb opcions" msgstr "Enganxada amb opcions"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "Origen:" msgstr "Origen:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "Engan&xa" msgstr "Engan&xa"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "Enganxa en&llaç" msgstr "Enganxa en&llaç"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "&Com a:" msgstr "&Com a:"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "Mostra'l com a &icona" msgstr "Mostra'l com a &icona"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "&Canvia d'icona..." msgstr "&Canvia d'icona..."
...@@ -7469,15 +7469,22 @@ msgstr "" ...@@ -7469,15 +7469,22 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "Afegeix control" msgstr "Afegeix control"
# Including the ellipsis would make this string too long
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "T&ipus de lletra"
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "&Objecte" msgstr "&Objecte"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "Insereix el contingut del porta-retalls al vostre document com a %s." msgstr "Insereix el contingut del porta-retalls al vostre document com a %s."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
...@@ -7485,7 +7492,7 @@ msgstr "" ...@@ -7485,7 +7492,7 @@ msgstr ""
"Insereix el contingut del porta-retalls al vostre document perquè el pugueu " "Insereix el contingut del porta-retalls al vostre document perquè el pugueu "
"activar utilitzant %s." "activar utilitzant %s."
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
...@@ -7493,7 +7500,7 @@ msgstr "" ...@@ -7493,7 +7500,7 @@ msgstr ""
"Insereix el contingut del porta-retalls al vostre document perquè el pugueu " "Insereix el contingut del porta-retalls al vostre document perquè el pugueu "
"activar utilitzant %s. Es mostrarà com a icona." "activar utilitzant %s. Es mostrarà com a icona."
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
...@@ -7503,7 +7510,7 @@ msgstr "" ...@@ -7503,7 +7510,7 @@ msgstr ""
"dades amb el fitxer d'origen perquè que els canvis al fitxer es reflecteixin " "dades amb el fitxer d'origen perquè que els canvis al fitxer es reflecteixin "
"al vostre document." "al vostre document."
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
...@@ -7513,7 +7520,7 @@ msgstr "" ...@@ -7513,7 +7520,7 @@ msgstr ""
"la imatge amb el fitxer d'origen perquè els canvis al fitxer es reflecteixin " "la imatge amb el fitxer d'origen perquè els canvis al fitxer es reflecteixin "
"al vostre document." "al vostre document."
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
...@@ -7523,19 +7530,19 @@ msgstr "" ...@@ -7523,19 +7530,19 @@ msgstr ""
"retalls. S'enllaça la drecera amb el fitxer d'origen perquè els canvis al " "retalls. S'enllaça la drecera amb el fitxer d'origen perquè els canvis al "
"fitxer es reflecteixin al vostre document." "fitxer es reflecteixin al vostre document."
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "Insereix el contingut del porta-retalls al vostre document." msgstr "Insereix el contingut del porta-retalls al vostre document."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "Tipus desconegut" msgstr "Tipus desconegut"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "Font desconegut" msgstr "Font desconegut"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "el programa que l'ha creat" msgstr "el programa que l'ha creat"
......
...@@ -61,7 +61,7 @@ msgstr "Informace o podpoře" ...@@ -61,7 +61,7 @@ msgstr "Informace o podpoře"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -144,7 +144,7 @@ msgstr "&Instalovat" ...@@ -144,7 +144,7 @@ msgstr "&Instalovat"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -349,7 +349,7 @@ msgstr "&Výchozí" ...@@ -349,7 +349,7 @@ msgstr "&Výchozí"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7325,72 +7325,72 @@ msgstr "Zapnuto" ...@@ -7325,72 +7325,72 @@ msgstr "Zapnuto"
msgid "Off" msgid "Off"
msgstr "Vypnuto" msgstr "Vypnuto"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "Vložit objekt" msgstr "Vložit objekt"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "Typ objektu:" msgstr "Typ objektu:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "Výsledek" msgstr "Výsledek"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "Vytvořit nový" msgstr "Vytvořit nový"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "Vytvořit propojení" msgstr "Vytvořit propojení"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "Vytvořit ze souboru" msgstr "Vytvořit ze souboru"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "Přidat propojení..." msgstr "Přidat propojení..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "Zobrazit jako ikonu" msgstr "Zobrazit jako ikonu"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "Procházet..." msgstr "Procházet..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "Soubor:" msgstr "Soubor:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "Vložit jinak" msgstr "Vložit jinak"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "Zdroj:" msgstr "Zdroj:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "Vl&ožit" msgstr "Vl&ožit"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "V&ložit odkaz" msgstr "V&ložit odkaz"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "Jako:" msgstr "Jako:"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "&Zobrazit jako ikonu" msgstr "&Zobrazit jako ikonu"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "Změnit &ikonu..." msgstr "Změnit &ikonu..."
...@@ -7420,15 +7420,21 @@ msgstr "Soubor není platným OLE modulem. Nelze registrovat OLE propojení." ...@@ -7420,15 +7420,21 @@ msgstr "Soubor není platným OLE modulem. Nelze registrovat OLE propojení."
msgid "Add Control" msgid "Add Control"
msgstr "Přidat řídící prvek" msgstr "Přidat řídící prvek"
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "&Písmo..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "&Objekt" msgstr "&Objekt"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "Vloží obsah schránky do Vašeho dokumentu jako %s." msgstr "Vloží obsah schránky do Vašeho dokumentu jako %s."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
...@@ -7436,7 +7442,7 @@ msgstr "" ...@@ -7436,7 +7442,7 @@ msgstr ""
"Vloží obsah schránky do vašeho dokumentu tak, že je vložené možné aktivovat " "Vloží obsah schránky do vašeho dokumentu tak, že je vložené možné aktivovat "
"s použitím %s." "s použitím %s."
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
...@@ -7444,7 +7450,7 @@ msgstr "" ...@@ -7444,7 +7450,7 @@ msgstr ""
"Vloží obsah schránky do Vašeho dokumentu tak, že vložené můžete aktivovat s " "Vloží obsah schránky do Vašeho dokumentu tak, že vložené můžete aktivovat s "
"použitím %s. Bude zobrazeno jako ikona." "použitím %s. Bude zobrazeno jako ikona."
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
...@@ -7453,7 +7459,7 @@ msgstr "" ...@@ -7453,7 +7459,7 @@ msgstr ""
"Vloží obsah schránky do Vašeho dokumentu jako %s. Data jsou napojena na " "Vloží obsah schránky do Vašeho dokumentu jako %s. Data jsou napojena na "
"zdrojový soubor, takže jeho změny se promítnou též ve Vašem dokumentu." "zdrojový soubor, takže jeho změny se promítnou též ve Vašem dokumentu."
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
...@@ -7462,26 +7468,26 @@ msgstr "" ...@@ -7462,26 +7468,26 @@ msgstr ""
"Vloží do Vašeho dokumentu obrázek obsahu schránky. Obrázek je napojen na " "Vloží do Vašeho dokumentu obrázek obsahu schránky. Obrázek je napojen na "
"původní soubor, takže jeho změny se odrazí i ve Vašem dokumentu." "původní soubor, takže jeho změny se odrazí i ve Vašem dokumentu."
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
"be reflected in your document." "be reflected in your document."
msgstr "" msgstr ""
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "Vloží obsah schránky do Vašeho dokumentu." msgstr "Vloží obsah schránky do Vašeho dokumentu."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "Neznámý typ" msgstr "Neznámý typ"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "Neznámý zdroj" msgstr "Neznámý zdroj"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "aplikace, ve které bylo vytvořeno" msgstr "aplikace, ve které bylo vytvořeno"
......
...@@ -60,7 +60,7 @@ msgstr "Support information" ...@@ -60,7 +60,7 @@ msgstr "Support information"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -142,7 +142,7 @@ msgstr "&Installer" ...@@ -142,7 +142,7 @@ msgstr "&Installer"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -357,7 +357,7 @@ msgstr "N&ulstil" ...@@ -357,7 +357,7 @@ msgstr "N&ulstil"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7470,72 +7470,72 @@ msgstr "Til" ...@@ -7470,72 +7470,72 @@ msgstr "Til"
msgid "Off" msgid "Off"
msgstr "Fra" msgstr "Fra"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "Indsæt objekt" msgstr "Indsæt objekt"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "Objekttype:" msgstr "Objekttype:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "Resultat" msgstr "Resultat"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "Opret ny" msgstr "Opret ny"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "Opret control" msgstr "Opret control"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "Opret fra fil" msgstr "Opret fra fil"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "&Tilføj Control..." msgstr "&Tilføj Control..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "Vis som ikon" msgstr "Vis som ikon"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "Gennemse..." msgstr "Gennemse..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "Fil:" msgstr "Fil:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "Indsæt speciel" msgstr "Indsæt speciel"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "Kilde:" msgstr "Kilde:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "&Indsæt" msgstr "&Indsæt"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "Indsæt &genvej" msgstr "Indsæt &genvej"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "&Som:" msgstr "&Som:"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "&Vis som ikon" msgstr "&Vis som ikon"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "Ændre &ikon..." msgstr "Ændre &ikon..."
...@@ -7567,15 +7567,21 @@ msgstr "" ...@@ -7567,15 +7567,21 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "Tilføj kontrol" msgstr "Tilføj kontrol"
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "&Skrifttype..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "&Objekt" msgstr "&Objekt"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "Indsætter indholdet fra klippebordet ind i dokumentet som %s." msgstr "Indsætter indholdet fra klippebordet ind i dokumentet som %s."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
...@@ -7583,7 +7589,7 @@ msgstr "" ...@@ -7583,7 +7589,7 @@ msgstr ""
"Indsætter indholdet fra udklipsholderen ind i dokumentet, så du kan aktivere " "Indsætter indholdet fra udklipsholderen ind i dokumentet, så du kan aktivere "
"det med %s." "det med %s."
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
...@@ -7591,7 +7597,7 @@ msgstr "" ...@@ -7591,7 +7597,7 @@ msgstr ""
"Indsætter indholdet fra udklipsholderen ind i dokumentet, så du kan aktivere " "Indsætter indholdet fra udklipsholderen ind i dokumentet, så du kan aktivere "
"det med %s. Det vil blive vist som et ikon." "det med %s. Det vil blive vist som et ikon."
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
...@@ -7600,7 +7606,7 @@ msgstr "" ...@@ -7600,7 +7606,7 @@ msgstr ""
"Indsætter indholdet fra udklipsholderen ind i dokumentet som %s. Data er " "Indsætter indholdet fra udklipsholderen ind i dokumentet som %s. Data er "
"koblet til kildefilen så ændringer også sker i dit dokument." "koblet til kildefilen så ændringer også sker i dit dokument."
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
...@@ -7609,7 +7615,7 @@ msgstr "" ...@@ -7609,7 +7615,7 @@ msgstr ""
"Indsætter et billede af udklipsholderen i dokumentet. Billedet kobles til " "Indsætter et billede af udklipsholderen i dokumentet. Billedet kobles til "
"kildefilen så ændringer også sker i dokumentet ." "kildefilen så ændringer også sker i dokumentet ."
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
...@@ -7619,19 +7625,19 @@ msgstr "" ...@@ -7619,19 +7625,19 @@ msgstr ""
"udklipsholderen. Genvejen kobles til kildefilen så ændringer også sker i " "udklipsholderen. Genvejen kobles til kildefilen så ændringer også sker i "
"dokumentet." "dokumentet."
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "Indsætter indholdet fra udklipsholderen ind i dokumentet." msgstr "Indsætter indholdet fra udklipsholderen ind i dokumentet."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "Ukendt type" msgstr "Ukendt type"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "Ukendt kilde" msgstr "Ukendt kilde"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "programmet der lavede det" msgstr "programmet der lavede det"
......
...@@ -60,7 +60,7 @@ msgstr "Informationen" ...@@ -60,7 +60,7 @@ msgstr "Informationen"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -145,7 +145,7 @@ msgstr "&Installieren" ...@@ -145,7 +145,7 @@ msgstr "&Installieren"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -349,7 +349,7 @@ msgstr "&Zurücksetzen" ...@@ -349,7 +349,7 @@ msgstr "&Zurücksetzen"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7362,72 +7362,72 @@ msgstr "Ein" ...@@ -7362,72 +7362,72 @@ msgstr "Ein"
msgid "Off" msgid "Off"
msgstr "Aus" msgstr "Aus"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "Objekt einfügen" msgstr "Objekt einfügen"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "Objekttyp:" msgstr "Objekttyp:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "Ergebnis" msgstr "Ergebnis"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "&Neu erstellen" msgstr "&Neu erstellen"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "S&teuerelement erstellen" msgstr "S&teuerelement erstellen"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "A&us Datei erstellen" msgstr "A&us Datei erstellen"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "Steuerelement hin&zufügen..." msgstr "Steuerelement hin&zufügen..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "Als &Symbol anzeigen" msgstr "Als &Symbol anzeigen"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "Durchsuchen..." msgstr "Durchsuchen..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "Datei:" msgstr "Datei:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "Inhalte einfügen" msgstr "Inhalte einfügen"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "Quelle:" msgstr "Quelle:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "E&infügen" msgstr "E&infügen"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "&Verknüpfung einfügen" msgstr "&Verknüpfung einfügen"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "&Als:" msgstr "&Als:"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "Als Sym&bol anzeigen" msgstr "Als Sym&bol anzeigen"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "&Symbol ändern..." msgstr "&Symbol ändern..."
...@@ -7459,15 +7459,21 @@ msgstr "" ...@@ -7459,15 +7459,21 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "Steuerelement hinzufügen" msgstr "Steuerelement hinzufügen"
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "Schrift&art..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "&Objekt" msgstr "&Objekt"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "Fügt den Inhalt der Zwischenablage in Ihr Dokument als %s ein." msgstr "Fügt den Inhalt der Zwischenablage in Ihr Dokument als %s ein."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
...@@ -7475,7 +7481,7 @@ msgstr "" ...@@ -7475,7 +7481,7 @@ msgstr ""
"Fügt den Inhalt der Zwischenablage so in Ihr Dokument ein, dass Sie ihn mit " "Fügt den Inhalt der Zwischenablage so in Ihr Dokument ein, dass Sie ihn mit "
"%s aktivieren können." "%s aktivieren können."
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
...@@ -7483,7 +7489,7 @@ msgstr "" ...@@ -7483,7 +7489,7 @@ msgstr ""
"Fügt den Inhalt der Zwischenablage so in Ihr Dokument ein, dass Sie ihn mit " "Fügt den Inhalt der Zwischenablage so in Ihr Dokument ein, dass Sie ihn mit "
"%s aktivieren können. Er wird als Symbol dargestellt." "%s aktivieren können. Er wird als Symbol dargestellt."
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
...@@ -7493,7 +7499,7 @@ msgstr "" ...@@ -7493,7 +7499,7 @@ msgstr ""
"sind mit der Ursprungsdatei verknüpft, so dass Änderungen an dieser in Ihrem " "sind mit der Ursprungsdatei verknüpft, so dass Änderungen an dieser in Ihrem "
"Dokument erscheinen." "Dokument erscheinen."
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
...@@ -7503,7 +7509,7 @@ msgstr "" ...@@ -7503,7 +7509,7 @@ msgstr ""
"mit der Ursprungsdatei verknüpft, so dass Änderungen an dieser in Ihrem " "mit der Ursprungsdatei verknüpft, so dass Änderungen an dieser in Ihrem "
"Dokument erscheinen." "Dokument erscheinen."
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
...@@ -7513,19 +7519,19 @@ msgstr "" ...@@ -7513,19 +7519,19 @@ msgstr ""
"zeigt. Die Verknüpfung ist mit der Ursprungsdatei verknüpft, so dass " "zeigt. Die Verknüpfung ist mit der Ursprungsdatei verknüpft, so dass "
"Änderungen an dieser in Ihrem Dokument erscheinen." "Änderungen an dieser in Ihrem Dokument erscheinen."
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "Fügt den Inhalt der Zwischenablage in Ihr Dokument ein." msgstr "Fügt den Inhalt der Zwischenablage in Ihr Dokument ein."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "Unbekannter Typ" msgstr "Unbekannter Typ"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "Unbekannte Quelle" msgstr "Unbekannte Quelle"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "dem Erzeugerprogramm" msgstr "dem Erzeugerprogramm"
......
...@@ -56,7 +56,7 @@ msgstr "" ...@@ -56,7 +56,7 @@ msgstr ""
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -136,7 +136,7 @@ msgstr "" ...@@ -136,7 +136,7 @@ msgstr ""
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -332,7 +332,7 @@ msgstr "Ε&παναφορά" ...@@ -332,7 +332,7 @@ msgstr "Ε&παναφορά"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7362,76 +7362,76 @@ msgstr "Ενεργό" ...@@ -7362,76 +7362,76 @@ msgstr "Ενεργό"
msgid "Off" msgid "Off"
msgstr "Ανενεργό" msgstr "Ανενεργό"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "" msgstr ""
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "" msgstr ""
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: oledlg.rc:62 #: oledlg.rc:63
#, fuzzy #, fuzzy
msgid "Create New" msgid "Create New"
msgstr "Δημιουργία νέου καταλόγου" msgstr "Δημιουργία νέου καταλόγου"
#: oledlg.rc:64 #: oledlg.rc:65
#, fuzzy #, fuzzy
msgid "Create Control" msgid "Create Control"
msgstr "&Περιεχόμενα" msgstr "&Περιεχόμενα"
#: oledlg.rc:66 #: oledlg.rc:67
#, fuzzy #, fuzzy
msgid "Create From File" msgid "Create From File"
msgstr "Δημιουργία νέου καταλόγου" msgstr "Δημιουργία νέου καταλόγου"
#: oledlg.rc:69 #: oledlg.rc:70
#, fuzzy #, fuzzy
msgid "&Add Control..." msgid "&Add Control..."
msgstr "&Περιεχόμενα" msgstr "&Περιεχόμενα"
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "" msgstr ""
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "" msgstr ""
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "" msgstr ""
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "" msgstr ""
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "" msgstr ""
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "" msgstr ""
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "" msgstr ""
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "" msgstr ""
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "" msgstr ""
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "" msgstr ""
...@@ -7459,61 +7459,66 @@ msgstr "" ...@@ -7459,61 +7459,66 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "" msgstr ""
#: oledlg.rc:34
#, fuzzy
msgid "&Convert..."
msgstr "Εκτύπωση"
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "" msgstr ""
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "" msgstr ""
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
msgstr "" msgstr ""
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
msgstr "" msgstr ""
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
"your document." "your document."
msgstr "" msgstr ""
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
"in your document." "in your document."
msgstr "" msgstr ""
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
"be reflected in your document." "be reflected in your document."
msgstr "" msgstr ""
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "" msgstr ""
#: oledlg.rc:45 #: oledlg.rc:46
#, fuzzy #, fuzzy
msgid "Unknown Type" msgid "Unknown Type"
msgstr "&Περιεχόμενα" msgstr "&Περιεχόμενα"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "" msgstr ""
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "" msgstr ""
......
...@@ -60,7 +60,7 @@ msgstr "Support Information" ...@@ -60,7 +60,7 @@ msgstr "Support Information"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -143,7 +143,7 @@ msgstr "&Install" ...@@ -143,7 +143,7 @@ msgstr "&Install"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -348,7 +348,7 @@ msgstr "R&eset" ...@@ -348,7 +348,7 @@ msgstr "R&eset"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7348,72 +7348,72 @@ msgstr "On" ...@@ -7348,72 +7348,72 @@ msgstr "On"
msgid "Off" msgid "Off"
msgstr "Off" msgstr "Off"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "Insert Object" msgstr "Insert Object"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "Object Type:" msgstr "Object Type:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "Result" msgstr "Result"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "Create New" msgstr "Create New"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "Create Control" msgstr "Create Control"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "Create From File" msgstr "Create From File"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "&Add Control..." msgstr "&Add Control..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "Display As Icon" msgstr "Display As Icon"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "Browse..." msgstr "Browse..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "File:" msgstr "File:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "Paste Special" msgstr "Paste Special"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "Source:" msgstr "Source:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "&Paste" msgstr "&Paste"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "Paste &Link" msgstr "Paste &Link"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "&As:" msgstr "&As:"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "&Display As Icon" msgstr "&Display As Icon"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "Change &Icon..." msgstr "Change &Icon..."
...@@ -7445,15 +7445,19 @@ msgstr "" ...@@ -7445,15 +7445,19 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "Add Control" msgstr "Add Control"
#: oledlg.rc:34
msgid "&Convert..."
msgstr "&Convert..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "&Object" msgstr "&Object"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "Inserts the contents of the clipboard into your document as %s." msgstr "Inserts the contents of the clipboard into your document as %s."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
...@@ -7461,7 +7465,7 @@ msgstr "" ...@@ -7461,7 +7465,7 @@ msgstr ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
...@@ -7469,7 +7473,7 @@ msgstr "" ...@@ -7469,7 +7473,7 @@ msgstr ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
...@@ -7479,7 +7483,7 @@ msgstr "" ...@@ -7479,7 +7483,7 @@ msgstr ""
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
"your document." "your document."
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
...@@ -7489,7 +7493,7 @@ msgstr "" ...@@ -7489,7 +7493,7 @@ msgstr ""
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
"in your document." "in your document."
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
...@@ -7499,19 +7503,19 @@ msgstr "" ...@@ -7499,19 +7503,19 @@ msgstr ""
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
"be reflected in your document." "be reflected in your document."
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "Inserts the contents of the clipboard into your document." msgstr "Inserts the contents of the clipboard into your document."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "Unknown Type" msgstr "Unknown Type"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "Unknown Source" msgstr "Unknown Source"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "the program which created it" msgstr "the program which created it"
......
...@@ -60,7 +60,7 @@ msgstr "Support Information" ...@@ -60,7 +60,7 @@ msgstr "Support Information"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -143,7 +143,7 @@ msgstr "&Install" ...@@ -143,7 +143,7 @@ msgstr "&Install"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -348,7 +348,7 @@ msgstr "R&eset" ...@@ -348,7 +348,7 @@ msgstr "R&eset"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7348,72 +7348,72 @@ msgstr "On" ...@@ -7348,72 +7348,72 @@ msgstr "On"
msgid "Off" msgid "Off"
msgstr "Off" msgstr "Off"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "Insert Object" msgstr "Insert Object"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "Object Type:" msgstr "Object Type:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "Result" msgstr "Result"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "Create New" msgstr "Create New"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "Create Control" msgstr "Create Control"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "Create From File" msgstr "Create From File"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "&Add Control..." msgstr "&Add Control..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "Display As Icon" msgstr "Display As Icon"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "Browse..." msgstr "Browse..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "File:" msgstr "File:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "Paste Special" msgstr "Paste Special"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "Source:" msgstr "Source:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "&Paste" msgstr "&Paste"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "Paste &Link" msgstr "Paste &Link"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "&As:" msgstr "&As:"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "&Display As Icon" msgstr "&Display As Icon"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "Change &Icon..." msgstr "Change &Icon..."
...@@ -7445,15 +7445,19 @@ msgstr "" ...@@ -7445,15 +7445,19 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "Add Control" msgstr "Add Control"
#: oledlg.rc:34
msgid "&Convert..."
msgstr "&Convert..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "&Object" msgstr "&Object"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "Inserts the contents of the clipboard into your document as %s." msgstr "Inserts the contents of the clipboard into your document as %s."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
...@@ -7461,7 +7465,7 @@ msgstr "" ...@@ -7461,7 +7465,7 @@ msgstr ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
...@@ -7469,7 +7473,7 @@ msgstr "" ...@@ -7469,7 +7473,7 @@ msgstr ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
...@@ -7479,7 +7483,7 @@ msgstr "" ...@@ -7479,7 +7483,7 @@ msgstr ""
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
"your document." "your document."
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
...@@ -7489,7 +7493,7 @@ msgstr "" ...@@ -7489,7 +7493,7 @@ msgstr ""
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
"in your document." "in your document."
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
...@@ -7499,19 +7503,19 @@ msgstr "" ...@@ -7499,19 +7503,19 @@ msgstr ""
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
"be reflected in your document." "be reflected in your document."
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "Inserts the contents of the clipboard into your document." msgstr "Inserts the contents of the clipboard into your document."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "Unknown Type" msgstr "Unknown Type"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "Unknown Source" msgstr "Unknown Source"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "the program which created it" msgstr "the program which created it"
......
...@@ -65,7 +65,7 @@ msgstr "Informoj pri Helpo" ...@@ -65,7 +65,7 @@ msgstr "Informoj pri Helpo"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -141,7 +141,7 @@ msgstr "&Instali" ...@@ -141,7 +141,7 @@ msgstr "&Instali"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -339,7 +339,7 @@ msgstr "R&estarigi" ...@@ -339,7 +339,7 @@ msgstr "R&estarigi"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7278,72 +7278,72 @@ msgstr "Ŝaltita" ...@@ -7278,72 +7278,72 @@ msgstr "Ŝaltita"
msgid "Off" msgid "Off"
msgstr "Malŝaltita" msgstr "Malŝaltita"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "" msgstr ""
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "" msgstr ""
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "Krei Novan" msgstr "Krei Novan"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "Regado" msgstr "Regado"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "Krei Novan Dosieron" msgstr "Krei Novan Dosieron"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "&Aldoni umaĵon..." msgstr "&Aldoni umaĵon..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "" msgstr ""
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "" msgstr ""
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "Dosiero:" msgstr "Dosiero:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "" msgstr ""
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "Fonto:" msgstr "Fonto:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "&Alglui" msgstr "&Alglui"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "Alglui &ligilon" msgstr "Alglui &ligilon"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "&Kiel:" msgstr "&Kiel:"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "" msgstr ""
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "Ŝanĝi &piktogramon..." msgstr "Ŝanĝi &piktogramon..."
...@@ -7371,60 +7371,66 @@ msgstr "" ...@@ -7371,60 +7371,66 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "" msgstr ""
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "&Tiparo..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "" msgstr ""
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "" msgstr ""
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
msgstr "" msgstr ""
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
msgstr "" msgstr ""
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
"your document." "your document."
msgstr "" msgstr ""
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
"in your document." "in your document."
msgstr "" msgstr ""
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
"be reflected in your document." "be reflected in your document."
msgstr "" msgstr ""
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "" msgstr ""
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "" msgstr ""
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "" msgstr ""
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "" msgstr ""
......
...@@ -60,7 +60,7 @@ msgstr "Información de Soporte" ...@@ -60,7 +60,7 @@ msgstr "Información de Soporte"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -144,7 +144,7 @@ msgstr "&Instalar" ...@@ -144,7 +144,7 @@ msgstr "&Instalar"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -360,7 +360,7 @@ msgstr "R&estaurar" ...@@ -360,7 +360,7 @@ msgstr "R&estaurar"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7480,72 +7480,72 @@ msgstr "Activado" ...@@ -7480,72 +7480,72 @@ msgstr "Activado"
msgid "Off" msgid "Off"
msgstr "Desactivado" msgstr "Desactivado"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "Insertar objeto" msgstr "Insertar objeto"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "Tipo de objeto:" msgstr "Tipo de objeto:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "Resultado" msgstr "Resultado"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "Crear nuevo" msgstr "Crear nuevo"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "Crear control" msgstr "Crear control"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "Crear desde archivo" msgstr "Crear desde archivo"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "&Añadir control..." msgstr "&Añadir control..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "Mostrar como icono" msgstr "Mostrar como icono"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "Buscar..." msgstr "Buscar..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "Archivo:" msgstr "Archivo:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "Pegado especial" msgstr "Pegado especial"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "Origen:" msgstr "Origen:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "&Pegar" msgstr "&Pegar"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "Pegar &enlace" msgstr "Pegar &enlace"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "&Como:" msgstr "&Como:"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "&Mostrar como icono" msgstr "&Mostrar como icono"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "Cambiar &icono..." msgstr "Cambiar &icono..."
...@@ -7577,15 +7577,21 @@ msgstr "" ...@@ -7577,15 +7577,21 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "Añadir control" msgstr "Añadir control"
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "&Fuente..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "&Objeto" msgstr "&Objeto"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "Inserta el contenido del portapapeles en su documento como %s." msgstr "Inserta el contenido del portapapeles en su documento como %s."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
...@@ -7593,7 +7599,7 @@ msgstr "" ...@@ -7593,7 +7599,7 @@ msgstr ""
"Inserta el contenido del portapapeles en su documento de modo que pueda " "Inserta el contenido del portapapeles en su documento de modo que pueda "
"activarlo usando %s." "activarlo usando %s."
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
...@@ -7601,7 +7607,7 @@ msgstr "" ...@@ -7601,7 +7607,7 @@ msgstr ""
"Inserta el contenido del portapapeles en su documento de modo que pueda " "Inserta el contenido del portapapeles en su documento de modo que pueda "
"activarlo usando %s. Será mostrado como un icono." "activarlo usando %s. Será mostrado como un icono."
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
...@@ -7611,7 +7617,7 @@ msgstr "" ...@@ -7611,7 +7617,7 @@ msgstr ""
"estarán enlazados al archivo de origen, por lo que los cambios en el archivo " "estarán enlazados al archivo de origen, por lo que los cambios en el archivo "
"se reflejarán en su documento." "se reflejarán en su documento."
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
...@@ -7621,7 +7627,7 @@ msgstr "" ...@@ -7621,7 +7627,7 @@ msgstr ""
"estará enlazada al archivo de origen, por lo que los cambios en el archivo " "estará enlazada al archivo de origen, por lo que los cambios en el archivo "
"se reflejarán en su documento." "se reflejarán en su documento."
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
...@@ -7631,19 +7637,19 @@ msgstr "" ...@@ -7631,19 +7637,19 @@ msgstr ""
"portapapeles. El acceso directo estará enlazado al archivo de origen, por lo " "portapapeles. El acceso directo estará enlazado al archivo de origen, por lo "
"que los cambios en el archivo se reflejarán en su documento." "que los cambios en el archivo se reflejarán en su documento."
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "Inserta el contenido del portapapeles en su documento." msgstr "Inserta el contenido del portapapeles en su documento."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "Tipo desconocido" msgstr "Tipo desconocido"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "Origen desconocido" msgstr "Origen desconocido"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "el programa que lo creó" msgstr "el programa que lo creó"
......
...@@ -57,7 +57,7 @@ msgstr "اطلاعات" ...@@ -57,7 +57,7 @@ msgstr "اطلاعات"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -136,7 +136,7 @@ msgstr "" ...@@ -136,7 +136,7 @@ msgstr ""
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -332,7 +332,7 @@ msgstr "" ...@@ -332,7 +332,7 @@ msgstr ""
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7342,77 +7342,77 @@ msgstr "" ...@@ -7342,77 +7342,77 @@ msgstr ""
msgid "Off" msgid "Off"
msgstr "" msgstr ""
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "" msgstr ""
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "" msgstr ""
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "" msgstr ""
#: oledlg.rc:64 #: oledlg.rc:65
#, fuzzy #, fuzzy
msgid "Create Control" msgid "Create Control"
msgstr "&محتویات" msgstr "&محتویات"
#: oledlg.rc:66 #: oledlg.rc:67
#, fuzzy #, fuzzy
msgid "Create From File" msgid "Create From File"
msgstr "&پرونده" msgstr "&پرونده"
#: oledlg.rc:69 #: oledlg.rc:70
#, fuzzy #, fuzzy
msgid "&Add Control..." msgid "&Add Control..."
msgstr "&محتویات" msgstr "&محتویات"
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "" msgstr ""
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "" msgstr ""
#: oledlg.rc:73 #: oledlg.rc:74
#, fuzzy #, fuzzy
msgid "File:" msgid "File:"
msgstr "&پرونده" msgstr "&پرونده"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "" msgstr ""
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "" msgstr ""
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
#, fuzzy #, fuzzy
msgid "&Paste" msgid "&Paste"
msgstr "&چسباندن\tCtrl+V" msgstr "&چسباندن\tCtrl+V"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "" msgstr ""
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "" msgstr ""
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "" msgstr ""
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "" msgstr ""
...@@ -7440,60 +7440,66 @@ msgstr "" ...@@ -7440,60 +7440,66 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "" msgstr ""
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "&قلم‌ها..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "" msgstr ""
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "" msgstr ""
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
msgstr "" msgstr ""
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
msgstr "" msgstr ""
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
"your document." "your document."
msgstr "" msgstr ""
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
"in your document." "in your document."
msgstr "" msgstr ""
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
"be reflected in your document." "be reflected in your document."
msgstr "" msgstr ""
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "" msgstr ""
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "" msgstr ""
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "" msgstr ""
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "" msgstr ""
......
...@@ -59,7 +59,7 @@ msgstr "Tukitietoja" ...@@ -59,7 +59,7 @@ msgstr "Tukitietoja"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -141,7 +141,7 @@ msgstr "&Asenna" ...@@ -141,7 +141,7 @@ msgstr "&Asenna"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -344,7 +344,7 @@ msgstr "&Nollaa" ...@@ -344,7 +344,7 @@ msgstr "&Nollaa"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7344,72 +7344,72 @@ msgstr "Päällä" ...@@ -7344,72 +7344,72 @@ msgstr "Päällä"
msgid "Off" msgid "Off"
msgstr "Pois päältä" msgstr "Pois päältä"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "Lisää objekti" msgstr "Lisää objekti"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "Objektityyppi:" msgstr "Objektityyppi:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "Tulos" msgstr "Tulos"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "Luo uusi" msgstr "Luo uusi"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "Luo kontrolli" msgstr "Luo kontrolli"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "Luo tiedostosta" msgstr "Luo tiedostosta"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "Lisää kontrolli..." msgstr "Lisää kontrolli..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "Näytä kuvakkeena" msgstr "Näytä kuvakkeena"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "Selaa..." msgstr "Selaa..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "Tiedosto:" msgstr "Tiedosto:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "Liitä erityinen" msgstr "Liitä erityinen"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "Lähde:" msgstr "Lähde:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "L&iitä" msgstr "L&iitä"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "&Liitä linkki" msgstr "&Liitä linkki"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "&Muoto:" msgstr "&Muoto:"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "&Näytä kuvakkeena" msgstr "&Näytä kuvakkeena"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "&Vaihda kuvaketta..." msgstr "&Vaihda kuvaketta..."
...@@ -7441,15 +7441,21 @@ msgstr "" ...@@ -7441,15 +7441,21 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "Lisää kontrolli" msgstr "Lisää kontrolli"
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "&Fontti..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "&Objekti" msgstr "&Objekti"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "Lisää leikepöydän sisällön dokumenttiisi tyyppinä %s." msgstr "Lisää leikepöydän sisällön dokumenttiisi tyyppinä %s."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
...@@ -7457,7 +7463,7 @@ msgstr "" ...@@ -7457,7 +7463,7 @@ msgstr ""
"Lisää leikepöydän sisällön dokumenttiisi niin, että voit aktivoida sen %s:" "Lisää leikepöydän sisällön dokumenttiisi niin, että voit aktivoida sen %s:"
"lla." "lla."
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
...@@ -7465,7 +7471,7 @@ msgstr "" ...@@ -7465,7 +7471,7 @@ msgstr ""
"Lisää leikepöydän sisällön dokumenttiisi niin, että voit aktivoida sen %s:" "Lisää leikepöydän sisällön dokumenttiisi niin, että voit aktivoida sen %s:"
"lla. Se näytetään kuvakkeena." "lla. Se näytetään kuvakkeena."
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
...@@ -7474,7 +7480,7 @@ msgstr "" ...@@ -7474,7 +7480,7 @@ msgstr ""
"Lisää leikepöydän sisällön dokumenttiisi tyyppinä %s. Data on linkitetty " "Lisää leikepöydän sisällön dokumenttiisi tyyppinä %s. Data on linkitetty "
"lähdetiedostoon, joten muutokset tiedostoon vaikuttavat dokumenttiisi." "lähdetiedostoon, joten muutokset tiedostoon vaikuttavat dokumenttiisi."
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
...@@ -7483,7 +7489,7 @@ msgstr "" ...@@ -7483,7 +7489,7 @@ msgstr ""
"Lisää kuvan leikepöydän sisällöstä dokumenttiisi. Kuva on linkitetty " "Lisää kuvan leikepöydän sisällöstä dokumenttiisi. Kuva on linkitetty "
"lähdetiedostoon, joten muutokset tiedostoon vaikuttavat dokumenttiisi." "lähdetiedostoon, joten muutokset tiedostoon vaikuttavat dokumenttiisi."
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
...@@ -7493,19 +7499,19 @@ msgstr "" ...@@ -7493,19 +7499,19 @@ msgstr ""
"linkitetty lähdetiedostoon, joten muutokset tiedostoon vaikuttavat " "linkitetty lähdetiedostoon, joten muutokset tiedostoon vaikuttavat "
"dokumenttiisi." "dokumenttiisi."
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "Lisää leikepöydän sisällön dokumenttiisi." msgstr "Lisää leikepöydän sisällön dokumenttiisi."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "Tuntematon tyyppi" msgstr "Tuntematon tyyppi"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "Tuntematon lähde" msgstr "Tuntematon lähde"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "ohjelma, joka loi sen" msgstr "ohjelma, joka loi sen"
......
...@@ -60,7 +60,7 @@ msgstr "Informations de support" ...@@ -60,7 +60,7 @@ msgstr "Informations de support"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -145,7 +145,7 @@ msgstr "&Installer" ...@@ -145,7 +145,7 @@ msgstr "&Installer"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -352,7 +352,7 @@ msgstr "&Réinitialiser" ...@@ -352,7 +352,7 @@ msgstr "&Réinitialiser"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7395,72 +7395,72 @@ msgstr "Actif" ...@@ -7395,72 +7395,72 @@ msgstr "Actif"
msgid "Off" msgid "Off"
msgstr "Inactif" msgstr "Inactif"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "Insérer objet" msgstr "Insérer objet"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "Type d'objet :" msgstr "Type d'objet :"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "Résultat" msgstr "Résultat"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "Créer nouveau" msgstr "Créer nouveau"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "Créer un contrôle" msgstr "Créer un contrôle"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "Créer depuis le fichier" msgstr "Créer depuis le fichier"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "&Ajouter un contrôle..." msgstr "&Ajouter un contrôle..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "Afficher comme une icône" msgstr "Afficher comme une icône"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "Parcourir..." msgstr "Parcourir..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "Fichier :" msgstr "Fichier :"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "Collage spécial" msgstr "Collage spécial"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "Source :" msgstr "Source :"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "Co&ller" msgstr "Co&ller"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "Coller le &lien" msgstr "Coller le &lien"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "&Comme :" msgstr "&Comme :"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "&Afficher comme une icône" msgstr "&Afficher comme une icône"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "Changer l'&icône..." msgstr "Changer l'&icône..."
...@@ -7492,15 +7492,21 @@ msgstr "" ...@@ -7492,15 +7492,21 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "Ajouter un contrôle" msgstr "Ajouter un contrôle"
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "&Police..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "&Objet" msgstr "&Objet"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "Insère le contenu du presse-papiers dans votre document comme %s." msgstr "Insère le contenu du presse-papiers dans votre document comme %s."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
...@@ -7508,7 +7514,7 @@ msgstr "" ...@@ -7508,7 +7514,7 @@ msgstr ""
"Insère le contenu du presse-papiers dans votre document de sorte que vous " "Insère le contenu du presse-papiers dans votre document de sorte que vous "
"puissiez l'activer en utilisant %s." "puissiez l'activer en utilisant %s."
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
...@@ -7516,7 +7522,7 @@ msgstr "" ...@@ -7516,7 +7522,7 @@ msgstr ""
"Insère le contenu du presse-papiers dans votre document afin de pouvoir " "Insère le contenu du presse-papiers dans votre document afin de pouvoir "
"l'activer en utilisant %s. Il sera affiché comme une icône." "l'activer en utilisant %s. Il sera affiché comme une icône."
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
...@@ -7526,7 +7532,7 @@ msgstr "" ...@@ -7526,7 +7532,7 @@ msgstr ""
"données sont liées au fichier source afin que les modifications de celui-ci " "données sont liées au fichier source afin que les modifications de celui-ci "
"soient répercutées dans votre document." "soient répercutées dans votre document."
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
...@@ -7536,7 +7542,7 @@ msgstr "" ...@@ -7536,7 +7542,7 @@ msgstr ""
"est liée au fichier source afin que les modifications de celui-ci soient " "est liée au fichier source afin que les modifications de celui-ci soient "
"répercutées dans votre document." "répercutées dans votre document."
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
...@@ -7546,19 +7552,19 @@ msgstr "" ...@@ -7546,19 +7552,19 @@ msgstr ""
"papiers. Le raccourci est lié au fichier source afin que les modifications " "papiers. Le raccourci est lié au fichier source afin que les modifications "
"de celui-ci soient répercutées dans votre document." "de celui-ci soient répercutées dans votre document."
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "Insère le contenu du presse-papiers dans votre document." msgstr "Insère le contenu du presse-papiers dans votre document."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "Type inconnu" msgstr "Type inconnu"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "Source inconnue" msgstr "Source inconnue"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "le programme avec lequel il a été créé" msgstr "le programme avec lequel il a été créé"
......
...@@ -67,7 +67,7 @@ msgstr "פרטי תמיכה" ...@@ -67,7 +67,7 @@ msgstr "פרטי תמיכה"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -149,7 +149,7 @@ msgstr "ה&תקנה" ...@@ -149,7 +149,7 @@ msgstr "ה&תקנה"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -353,7 +353,7 @@ msgstr "&איפוס" ...@@ -353,7 +353,7 @@ msgstr "&איפוס"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7630,72 +7630,72 @@ msgstr "פעיל" ...@@ -7630,72 +7630,72 @@ msgstr "פעיל"
msgid "Off" msgid "Off"
msgstr "כבוי" msgstr "כבוי"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "הוספת עצם" msgstr "הוספת עצם"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "סוג העצם:" msgstr "סוג העצם:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "תוצאה" msgstr "תוצאה"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "יצירת חדש" msgstr "יצירת חדש"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "יצירת פקד" msgstr "יצירת פקד"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "יצירה מקובץ" msgstr "יצירה מקובץ"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "הוספת &פקד..." msgstr "הוספת &פקד..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "הצגה כסמל" msgstr "הצגה כסמל"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "עיון..." msgstr "עיון..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "קובץ:" msgstr "קובץ:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "הדבקה מיוחדת" msgstr "הדבקה מיוחדת"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "מקור:" msgstr "מקור:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "ה&דבקה" msgstr "ה&דבקה"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "הדבקת &קישור" msgstr "הדבקת &קישור"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "ב&תור:" msgstr "ב&תור:"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "ה&צגה כסמל" msgstr "ה&צגה כסמל"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "החלפת ה&סמל..." msgstr "החלפת ה&סמל..."
...@@ -7725,21 +7725,27 @@ msgstr "נראה כי הקובץ אינו מודול OLE תקני. לא ניתן ...@@ -7725,21 +7725,27 @@ msgstr "נראה כי הקובץ אינו מודול OLE תקני. לא ניתן
msgid "Add Control" msgid "Add Control"
msgstr "הוספת פקד" msgstr "הוספת פקד"
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "&גופן..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "&עצם" msgstr "&עצם"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "הוספת תוכן לוח הגזירים למסמך שלך בתור %s." msgstr "הוספת תוכן לוח הגזירים למסמך שלך בתור %s."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
msgstr "הוספת תוכן לוח הגזירים למסמך שלך כדי שניתן יהיה להפעילו באמצעות %s." msgstr "הוספת תוכן לוח הגזירים למסמך שלך כדי שניתן יהיה להפעילו באמצעות %s."
#: oledlg.rc:40 #: oledlg.rc:41
#, fuzzy #, fuzzy
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
...@@ -7748,7 +7754,7 @@ msgstr "" ...@@ -7748,7 +7754,7 @@ msgstr ""
"הוספת תוכן לוח הגזירים למסמך שלך כדי שניתן יהיה להפעילו באמצעות %s. העצם " "הוספת תוכן לוח הגזירים למסמך שלך כדי שניתן יהיה להפעילו באמצעות %s. העצם "
"יוצג כסמל." "יוצג כסמל."
#: oledlg.rc:41 #: oledlg.rc:42
#, fuzzy #, fuzzy
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
...@@ -7758,7 +7764,7 @@ msgstr "" ...@@ -7758,7 +7764,7 @@ msgstr ""
"הוספת תוכן לוח הגזירים למסמך שלך כדי שניתן יהיה להפעילו באמצעות %s. הנתונים " "הוספת תוכן לוח הגזירים למסמך שלך כדי שניתן יהיה להפעילו באמצעות %s. הנתונים "
"יהיו מקושרים לקובץ המקור כך ששינויים בקובץ המקור ישפיעו גם על המסמך שלך." "יהיו מקושרים לקובץ המקור כך ששינויים בקובץ המקור ישפיעו גם על המסמך שלך."
#: oledlg.rc:42 #: oledlg.rc:43
#, fuzzy #, fuzzy
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
...@@ -7768,7 +7774,7 @@ msgstr "" ...@@ -7768,7 +7774,7 @@ msgstr ""
"הוספת תמונה מתוכן לוח הגזירים למסמך שלך. התמונה מקושרת לקובץ המקור כך " "הוספת תמונה מתוכן לוח הגזירים למסמך שלך. התמונה מקושרת לקובץ המקור כך "
"ששינויים לקובץ ישפיעו גם על המסמך שלך." "ששינויים לקובץ ישפיעו גם על המסמך שלך."
#: oledlg.rc:43 #: oledlg.rc:44
#, fuzzy #, fuzzy
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
...@@ -7778,19 +7784,19 @@ msgstr "" ...@@ -7778,19 +7784,19 @@ msgstr ""
"הוספת קיצור דרך המצביע אל מיקום תוכן לוח הגזירים. קיצור הדרך מקושר לקובץ " "הוספת קיצור דרך המצביע אל מיקום תוכן לוח הגזירים. קיצור הדרך מקושר לקובץ "
"המקור כך ששינויים לקובץ המקור ישפיעו גם על המסמך שלך." "המקור כך ששינויים לקובץ המקור ישפיעו גם על המסמך שלך."
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "הוספת תוכן לוח הגזירים למסמך שלך." msgstr "הוספת תוכן לוח הגזירים למסמך שלך."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "סוג לא ידוע" msgstr "סוג לא ידוע"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "מקור לא ידוע" msgstr "מקור לא ידוע"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "התכנית שיצרה אותו" msgstr "התכנית שיצרה אותו"
......
...@@ -56,7 +56,7 @@ msgstr "" ...@@ -56,7 +56,7 @@ msgstr ""
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -133,7 +133,7 @@ msgstr "" ...@@ -133,7 +133,7 @@ msgstr ""
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -328,7 +328,7 @@ msgstr "" ...@@ -328,7 +328,7 @@ msgstr ""
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7230,72 +7230,72 @@ msgstr "" ...@@ -7230,72 +7230,72 @@ msgstr ""
msgid "Off" msgid "Off"
msgstr "" msgstr ""
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "" msgstr ""
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "" msgstr ""
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "" msgstr ""
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "" msgstr ""
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "" msgstr ""
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "" msgstr ""
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "" msgstr ""
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "" msgstr ""
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "" msgstr ""
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "" msgstr ""
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "" msgstr ""
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "" msgstr ""
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "" msgstr ""
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "" msgstr ""
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "" msgstr ""
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "" msgstr ""
...@@ -7323,60 +7323,66 @@ msgstr "" ...@@ -7323,60 +7323,66 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "" msgstr ""
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "फ़ॉन्ट (&F)..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "" msgstr ""
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "" msgstr ""
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
msgstr "" msgstr ""
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
msgstr "" msgstr ""
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
"your document." "your document."
msgstr "" msgstr ""
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
"in your document." "in your document."
msgstr "" msgstr ""
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
"be reflected in your document." "be reflected in your document."
msgstr "" msgstr ""
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "" msgstr ""
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "" msgstr ""
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "" msgstr ""
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "" msgstr ""
......
...@@ -60,7 +60,7 @@ msgstr "Informacije o podršci" ...@@ -60,7 +60,7 @@ msgstr "Informacije o podršci"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -143,7 +143,7 @@ msgstr "&Instaliraj" ...@@ -143,7 +143,7 @@ msgstr "&Instaliraj"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -347,7 +347,7 @@ msgstr "&Poništi" ...@@ -347,7 +347,7 @@ msgstr "&Poništi"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7399,72 +7399,72 @@ msgstr "Uključeno" ...@@ -7399,72 +7399,72 @@ msgstr "Uključeno"
msgid "Off" msgid "Off"
msgstr "Isključeno" msgstr "Isključeno"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "Unos objekta" msgstr "Unos objekta"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "Vrsta objekta:" msgstr "Vrsta objekta:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "Rezultat" msgstr "Rezultat"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "Napravi novo" msgstr "Napravi novo"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "Napravi kontrolu" msgstr "Napravi kontrolu"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "Napravi iz datoteke" msgstr "Napravi iz datoteke"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "&Dodaj kontrolu..." msgstr "&Dodaj kontrolu..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "Prikaži kao ikonicu" msgstr "Prikaži kao ikonicu"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "Potraži..." msgstr "Potraži..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "Datoteka:" msgstr "Datoteka:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "Posebno lijepljenje" msgstr "Posebno lijepljenje"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "Izvor:" msgstr "Izvor:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "&Zalijepi" msgstr "&Zalijepi"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "Zalijepi &vezu" msgstr "Zalijepi &vezu"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "&Kao:" msgstr "&Kao:"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "&Prikaži kao ikonicu" msgstr "&Prikaži kao ikonicu"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "Promijeni &ikonicu..." msgstr "Promijeni &ikonicu..."
...@@ -7496,15 +7496,21 @@ msgstr "" ...@@ -7496,15 +7496,21 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "Dodaj kontrolu" msgstr "Dodaj kontrolu"
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "&Font..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "&Objekt" msgstr "&Objekt"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "Umeće sadržaj iz ostave u dokument kao %s." msgstr "Umeće sadržaj iz ostave u dokument kao %s."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
...@@ -7512,7 +7518,7 @@ msgstr "" ...@@ -7512,7 +7518,7 @@ msgstr ""
"Umeće sadržaj iz ostave u dokument kako biste ga mogli aktivirati koristeći " "Umeće sadržaj iz ostave u dokument kako biste ga mogli aktivirati koristeći "
"%s." "%s."
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
...@@ -7520,7 +7526,7 @@ msgstr "" ...@@ -7520,7 +7526,7 @@ msgstr ""
"Umeće sadržaj iz ostave u dokument kako biste ga mogli aktivirati koristeći " "Umeće sadržaj iz ostave u dokument kako biste ga mogli aktivirati koristeći "
"%s. Biti će prikazano kao ikonica." "%s. Biti će prikazano kao ikonica."
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
...@@ -7530,7 +7536,7 @@ msgstr "" ...@@ -7530,7 +7536,7 @@ msgstr ""
"datotekom što znači kako će se promjene datoteke reflektirati u vaš " "datotekom što znači kako će se promjene datoteke reflektirati u vaš "
"dokumentu." "dokumentu."
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
...@@ -7539,7 +7545,7 @@ msgstr "" ...@@ -7539,7 +7545,7 @@ msgstr ""
"Umeće sliku sadržaja ostave u dokument. Slika će biti povezana s izvornom " "Umeće sliku sadržaja ostave u dokument. Slika će biti povezana s izvornom "
"datotekom što znači kako će promjene datoteke reflektirati u vaš dokument." "datotekom što znači kako će promjene datoteke reflektirati u vaš dokument."
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
...@@ -7549,19 +7555,19 @@ msgstr "" ...@@ -7549,19 +7555,19 @@ msgstr ""
"povezana s izvornom datotekom što znači kako će promjene datoteke " "povezana s izvornom datotekom što znači kako će promjene datoteke "
"reflektirati u vaš dokument." "reflektirati u vaš dokument."
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "Umeće sadržaj iz ostave u dokument." msgstr "Umeće sadržaj iz ostave u dokument."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "Nepoznata vrsta" msgstr "Nepoznata vrsta"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "Nepoznat izvor" msgstr "Nepoznat izvor"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "program koji ga je napravio" msgstr "program koji ga je napravio"
......
...@@ -60,7 +60,7 @@ msgstr "Támogatási információ" ...@@ -60,7 +60,7 @@ msgstr "Támogatási információ"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -145,7 +145,7 @@ msgstr "&Telepítés" ...@@ -145,7 +145,7 @@ msgstr "&Telepítés"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -361,7 +361,7 @@ msgstr "Alaph&elyzet" ...@@ -361,7 +361,7 @@ msgstr "Alaph&elyzet"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7428,72 +7428,72 @@ msgstr "Be" ...@@ -7428,72 +7428,72 @@ msgstr "Be"
msgid "Off" msgid "Off"
msgstr "Ki" msgstr "Ki"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "Objektum beszúrása" msgstr "Objektum beszúrása"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "Objektum típus:" msgstr "Objektum típus:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "Eredmény" msgstr "Eredmény"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "Új létrehozása" msgstr "Új létrehozása"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "Vezérlő létrehozása" msgstr "Vezérlő létrehozása"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "Létrehozás fájlból" msgstr "Létrehozás fájlból"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "Vezérlő hozzá&adása..." msgstr "Vezérlő hozzá&adása..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "Megjelenítés ikonként" msgstr "Megjelenítés ikonként"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "Tallózás..." msgstr "Tallózás..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "Fájl:" msgstr "Fájl:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "Speciális beillesztés" msgstr "Speciális beillesztés"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "Forrás:" msgstr "Forrás:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "&Beillesztés" msgstr "&Beillesztés"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "Beillesztés &linkként" msgstr "Beillesztés &linkként"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "&Mint:" msgstr "&Mint:"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "Megjelenítés i&konként" msgstr "Megjelenítés i&konként"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "&Ikon megváltoztatása..." msgstr "&Ikon megváltoztatása..."
...@@ -7525,15 +7525,21 @@ msgstr "" ...@@ -7525,15 +7525,21 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "Vezérlő hozzáadása" msgstr "Vezérlő hozzáadása"
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "&Betűtípus..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "&Objektum" msgstr "&Objektum"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "A vágólap tartalmának beillesztése az Ön dokumentumába mint: %s." msgstr "A vágólap tartalmának beillesztése az Ön dokumentumába mint: %s."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
...@@ -7541,7 +7547,7 @@ msgstr "" ...@@ -7541,7 +7547,7 @@ msgstr ""
"A vágólap tartalmának beillesztése az Ön dokumentumába, amit a következő " "A vágólap tartalmának beillesztése az Ön dokumentumába, amit a következő "
"használatával aktiválhat: %s." "használatával aktiválhat: %s."
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
...@@ -7549,7 +7555,7 @@ msgstr "" ...@@ -7549,7 +7555,7 @@ msgstr ""
"A vágólap tartalmának beillesztése az Ön dokumentumába, amit a következő " "A vágólap tartalmának beillesztése az Ön dokumentumába, amit a következő "
"használatával aktiválhat %s. Ikonként fog megjelnni." "használatával aktiválhat %s. Ikonként fog megjelnni."
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
...@@ -7559,7 +7565,7 @@ msgstr "" ...@@ -7559,7 +7565,7 @@ msgstr ""
"össze van kapcsolva a forrásfájllal, így a fájl módosítása hatással lesz a " "össze van kapcsolva a forrásfájllal, így a fájl módosítása hatással lesz a "
"dokumentumra." "dokumentumra."
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
...@@ -7569,7 +7575,7 @@ msgstr "" ...@@ -7569,7 +7575,7 @@ msgstr ""
"kapcsolva a forrásfájllal, így a fájl módosítása hatással lesz a " "kapcsolva a forrásfájllal, így a fájl módosítása hatással lesz a "
"dokumentumra." "dokumentumra."
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
...@@ -7579,19 +7585,19 @@ msgstr "" ...@@ -7579,19 +7585,19 @@ msgstr ""
"parancsikon össze van kapcsolva a forrásfájllal, így a fájl módosítása " "parancsikon össze van kapcsolva a forrásfájllal, így a fájl módosítása "
"hatással lesz a dokumentumra." "hatással lesz a dokumentumra."
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "A vágólap tartalmának beillesztése az Ön dokumentumába." msgstr "A vágólap tartalmának beillesztése az Ön dokumentumába."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "Ismeretlen típus" msgstr "Ismeretlen típus"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "Ismeretlen forrás" msgstr "Ismeretlen forrás"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "a program ami létrehozta" msgstr "a program ami létrehozta"
......
...@@ -65,7 +65,7 @@ msgstr "Informazioni di supporto" ...@@ -65,7 +65,7 @@ msgstr "Informazioni di supporto"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -150,7 +150,7 @@ msgstr "&Installa" ...@@ -150,7 +150,7 @@ msgstr "&Installa"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -367,7 +367,7 @@ msgstr "R&eimpostare" ...@@ -367,7 +367,7 @@ msgstr "R&eimpostare"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7497,72 +7497,72 @@ msgstr "On" ...@@ -7497,72 +7497,72 @@ msgstr "On"
msgid "Off" msgid "Off"
msgstr "Off" msgstr "Off"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "Inserisci oggetto" msgstr "Inserisci oggetto"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "Tipo di oggetto:" msgstr "Tipo di oggetto:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "Risultato" msgstr "Risultato"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "Crea nuovo" msgstr "Crea nuovo"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "Crea controllo" msgstr "Crea controllo"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "Crea da file" msgstr "Crea da file"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "&Aggiungi controllo..." msgstr "&Aggiungi controllo..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "Visualizza come icona" msgstr "Visualizza come icona"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "Sfoglia..." msgstr "Sfoglia..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "File:" msgstr "File:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "Incolla speciale" msgstr "Incolla speciale"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "Origine:" msgstr "Origine:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "&Incolla" msgstr "&Incolla"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "Incolla &collegamento" msgstr "Incolla &collegamento"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "&Come:" msgstr "&Come:"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "&Mostra come icona" msgstr "&Mostra come icona"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "Cambia &icona..." msgstr "Cambia &icona..."
...@@ -7594,15 +7594,21 @@ msgstr "" ...@@ -7594,15 +7594,21 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "Aggiungi controllo" msgstr "Aggiungi controllo"
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "&Carattere..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "&Elemento" msgstr "&Elemento"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "Inserisce i contenuti degli appunti nel tuo documento come %s." msgstr "Inserisce i contenuti degli appunti nel tuo documento come %s."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
...@@ -7610,7 +7616,7 @@ msgstr "" ...@@ -7610,7 +7616,7 @@ msgstr ""
"Inserisce i contenuti degli appunti nel tuo documento permettendoti di " "Inserisce i contenuti degli appunti nel tuo documento permettendoti di "
"attivarlo usando %s." "attivarlo usando %s."
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
...@@ -7618,7 +7624,7 @@ msgstr "" ...@@ -7618,7 +7624,7 @@ msgstr ""
"Inserisce i contenuti degli appunti nel tuo documento permettendoti di " "Inserisce i contenuti degli appunti nel tuo documento permettendoti di "
"attivarlo usando %s. Sarà mostrato come un'icona." "attivarlo usando %s. Sarà mostrato come un'icona."
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
...@@ -7628,7 +7634,7 @@ msgstr "" ...@@ -7628,7 +7634,7 @@ msgstr ""
"collegati al file sorgente in modo che i cambiamenti in quello si riflettano " "collegati al file sorgente in modo che i cambiamenti in quello si riflettano "
"sul tuo documento." "sul tuo documento."
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
...@@ -7638,7 +7644,7 @@ msgstr "" ...@@ -7638,7 +7644,7 @@ msgstr ""
"collegata al file sorgente in modo che i cambiamenti in quello si riflettano " "collegata al file sorgente in modo che i cambiamenti in quello si riflettano "
"sul tuo documento." "sul tuo documento."
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
...@@ -7648,19 +7654,19 @@ msgstr "" ...@@ -7648,19 +7654,19 @@ msgstr ""
"appunti. La scorciatoia è collegata al file sorgente in modo che i " "appunti. La scorciatoia è collegata al file sorgente in modo che i "
"cambiamenti in quello si riflettano sul tuo documento." "cambiamenti in quello si riflettano sul tuo documento."
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "Inserisce i contenuti degli appunti nel tuo documento." msgstr "Inserisce i contenuti degli appunti nel tuo documento."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "Tipo sconosciuto" msgstr "Tipo sconosciuto"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "Sorgente sconosciuta" msgstr "Sorgente sconosciuta"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "Il programma che lo ha creato" msgstr "Il programma che lo ha creato"
......
...@@ -61,7 +61,7 @@ msgstr "サポート情報" ...@@ -61,7 +61,7 @@ msgstr "サポート情報"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -144,7 +144,7 @@ msgstr "インストール(&I)" ...@@ -144,7 +144,7 @@ msgstr "インストール(&I)"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -350,7 +350,7 @@ msgstr "リセット(R&)" ...@@ -350,7 +350,7 @@ msgstr "リセット(R&)"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7344,72 +7344,72 @@ msgstr "オン" ...@@ -7344,72 +7344,72 @@ msgstr "オン"
msgid "Off" msgid "Off"
msgstr "オフ" msgstr "オフ"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "オブジェクトの挿入" msgstr "オブジェクトの挿入"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "オブジェクトの種類:" msgstr "オブジェクトの種類:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "結果" msgstr "結果"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "新規作成" msgstr "新規作成"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "コントロールを作成" msgstr "コントロールを作成"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "ファイルから作成" msgstr "ファイルから作成"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "コントロールを追加(&A)..." msgstr "コントロールを追加(&A)..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "アイコンとして表示" msgstr "アイコンとして表示"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "参照..." msgstr "参照..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "ファイル:" msgstr "ファイル:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "形式を選択して貼り付け" msgstr "形式を選択して貼り付け"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "コピー元:" msgstr "コピー元:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "貼り付け(&P)" msgstr "貼り付け(&P)"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "リンク貼り付け(&L)" msgstr "リンク貼り付け(&L)"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "形式(&A):" msgstr "形式(&A):"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "アイコンとして表示(&D)" msgstr "アイコンとして表示(&D)"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "アイコンの変更(&I)..." msgstr "アイコンの変更(&I)..."
...@@ -7441,21 +7441,27 @@ msgstr "" ...@@ -7441,21 +7441,27 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "コントロールを追加" msgstr "コントロールを追加"
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "フォント(&F)..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "オブジェクト(&O)" msgstr "オブジェクト(&O)"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "クリップボードの内容を %s として、文書に挿入します。" msgstr "クリップボードの内容を %s として、文書に挿入します。"
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
msgstr "クリップボードの内容を文書に挿入します。 %s を利用して、編集できます。" msgstr "クリップボードの内容を文書に挿入します。 %s を利用して、編集できます。"
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
...@@ -7463,7 +7469,7 @@ msgstr "" ...@@ -7463,7 +7469,7 @@ msgstr ""
"クリップボードの内容を文書に挿入します。 %s を利用して、編集できます。アイコ" "クリップボードの内容を文書に挿入します。 %s を利用して、編集できます。アイコ"
"ンとして表示されます。" "ンとして表示されます。"
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
...@@ -7472,7 +7478,7 @@ msgstr "" ...@@ -7472,7 +7478,7 @@ msgstr ""
"クリップボードの内容を %s として、文書に挿入します。データは元のファイルとリ" "クリップボードの内容を %s として、文書に挿入します。データは元のファイルとリ"
"ンクしているため、元のファイルへの変更はこの文書に反映されます。" "ンクしているため、元のファイルへの変更はこの文書に反映されます。"
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
...@@ -7481,7 +7487,7 @@ msgstr "" ...@@ -7481,7 +7487,7 @@ msgstr ""
"クリップボード内の画像を文書に挿入します。画像は元のファイルとリンクしている" "クリップボード内の画像を文書に挿入します。画像は元のファイルとリンクしている"
"ため、元のファイルへの変更はこの文書に反映されます。" "ため、元のファイルへの変更はこの文書に反映されます。"
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
...@@ -7490,19 +7496,19 @@ msgstr "" ...@@ -7490,19 +7496,19 @@ msgstr ""
"クリップボード内の場所を指すショートカットを挿入します。ショートカットは元の" "クリップボード内の場所を指すショートカットを挿入します。ショートカットは元の"
"ファイルとリンクしているため、元のファイルへの変更はこの文書に反映されます。" "ファイルとリンクしているため、元のファイルへの変更はこの文書に反映されます。"
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "クリップボードの内容を挿入します。" msgstr "クリップボードの内容を挿入します。"
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "不明な形式" msgstr "不明な形式"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "不明" msgstr "不明"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "作成プログラム" msgstr "作成プログラム"
......
...@@ -59,7 +59,7 @@ msgstr "지원 정보" ...@@ -59,7 +59,7 @@ msgstr "지원 정보"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -142,7 +142,7 @@ msgstr "설치(&I)" ...@@ -142,7 +142,7 @@ msgstr "설치(&I)"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -348,7 +348,7 @@ msgstr "재설정(&E)" ...@@ -348,7 +348,7 @@ msgstr "재설정(&E)"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7402,72 +7402,72 @@ msgstr "작동" ...@@ -7402,72 +7402,72 @@ msgstr "작동"
msgid "Off" msgid "Off"
msgstr "비작동" msgstr "비작동"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "객체 삽입" msgstr "객체 삽입"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "객체 타입:" msgstr "객체 타입:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "결과" msgstr "결과"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "새로 만들기" msgstr "새로 만들기"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "컨트롤 만들기" msgstr "컨트롤 만들기"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "파일로부터 만들기" msgstr "파일로부터 만들기"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "컨트롤 추가(&A)..." msgstr "컨트롤 추가(&A)..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "아이콘으로 보기" msgstr "아이콘으로 보기"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "찾기..." msgstr "찾기..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "파일:" msgstr "파일:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "특별하게 붙여넣기" msgstr "특별하게 붙여넣기"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "원본:" msgstr "원본:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "붙여넣기(&P)" msgstr "붙여넣기(&P)"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "링크로 붙여넣기(&L)" msgstr "링크로 붙여넣기(&L)"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "다른 이름으로(&A):" msgstr "다른 이름으로(&A):"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "아이콘으로 보기(&D)" msgstr "아이콘으로 보기(&D)"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "아이콘 바꾸기(&I)..." msgstr "아이콘 바꾸기(&I)..."
...@@ -7499,15 +7499,21 @@ msgstr "" ...@@ -7499,15 +7499,21 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "컨트롤 더하기" msgstr "컨트롤 더하기"
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "글꼴(&F)..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "객체(&O)" msgstr "객체(&O)"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "당신의 문서 %s에 클립보드의 내용 삽입하기." msgstr "당신의 문서 %s에 클립보드의 내용 삽입하기."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
...@@ -7515,7 +7521,7 @@ msgstr "" ...@@ -7515,7 +7521,7 @@ msgstr ""
"당신의 문서에 클립보드의 내용들을 첨부하면 %s를 사용해서 이것을 실행할 수 있" "당신의 문서에 클립보드의 내용들을 첨부하면 %s를 사용해서 이것을 실행할 수 있"
"습니다." "습니다."
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
...@@ -7523,7 +7529,7 @@ msgstr "" ...@@ -7523,7 +7529,7 @@ msgstr ""
"당신의 문서에 클립보드의 내용들을 첨부하면 %s를 사용해서 이것을 활성화할 수 " "당신의 문서에 클립보드의 내용들을 첨부하면 %s를 사용해서 이것을 활성화할 수 "
"있습니다. 이것은 아이콘으로 나타내질 겁니다." "있습니다. 이것은 아이콘으로 나타내질 겁니다."
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
...@@ -7532,7 +7538,7 @@ msgstr "" ...@@ -7532,7 +7538,7 @@ msgstr ""
"당신의 문서 %s에 클립보드의 내용을 삽입합니다. 이 데이터는 원본 파일에 연결되" "당신의 문서 %s에 클립보드의 내용을 삽입합니다. 이 데이터는 원본 파일에 연결되"
"어 있어서 파일이 바뀌면 당신의 문서에 영향을 미칠 것입니다." "어 있어서 파일이 바뀌면 당신의 문서에 영향을 미칠 것입니다."
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
...@@ -7541,7 +7547,7 @@ msgstr "" ...@@ -7541,7 +7547,7 @@ msgstr ""
"당신의 문서에 클립보드에 있는 그림을 집어넣습니다. 이 그림은 원본 파일에 연결" "당신의 문서에 클립보드에 있는 그림을 집어넣습니다. 이 그림은 원본 파일에 연결"
"되어 있어서 파일이 바뀌면 당신의 문서에 영향을 미칠 것입니다." "되어 있어서 파일이 바뀌면 당신의 문서에 영향을 미칠 것입니다."
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
...@@ -7550,19 +7556,19 @@ msgstr "" ...@@ -7550,19 +7556,19 @@ msgstr ""
"당신의 문서에 클립보드에 있는 단축아이콘을 집어넣습니다. 이 단축아이콘은 원" "당신의 문서에 클립보드에 있는 단축아이콘을 집어넣습니다. 이 단축아이콘은 원"
"본 파일에 연결되어 있어서 파일이 바뀌면 당신의 문서에 영향을 미칠 것입니다." "본 파일에 연결되어 있어서 파일이 바뀌면 당신의 문서에 영향을 미칠 것입니다."
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "당신의 문서에 클립보드의 내용 삽입하기." msgstr "당신의 문서에 클립보드의 내용 삽입하기."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "알수 없는 형식" msgstr "알수 없는 형식"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "알수 없는 원본" msgstr "알수 없는 원본"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "내가 만든 프로그램" msgstr "내가 만든 프로그램"
......
...@@ -62,7 +62,7 @@ msgstr "Priežiūros informacija" ...@@ -62,7 +62,7 @@ msgstr "Priežiūros informacija"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -145,7 +145,7 @@ msgstr "&Įdiegti" ...@@ -145,7 +145,7 @@ msgstr "&Įdiegti"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -349,7 +349,7 @@ msgstr "A&tstatyti" ...@@ -349,7 +349,7 @@ msgstr "A&tstatyti"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7355,72 +7355,72 @@ msgstr "Įjungta" ...@@ -7355,72 +7355,72 @@ msgstr "Įjungta"
msgid "Off" msgid "Off"
msgstr "Išjungta" msgstr "Išjungta"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "Įterpti objektą" msgstr "Įterpti objektą"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "Objekto tipas:" msgstr "Objekto tipas:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "Rezultatas" msgstr "Rezultatas"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "Sukurti naują" msgstr "Sukurti naują"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "Sukurti valdiklį" msgstr "Sukurti valdiklį"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "Sukurti iš failo" msgstr "Sukurti iš failo"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "&Pridėti valdiklį..." msgstr "&Pridėti valdiklį..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "Rodyti kaip piktogramą" msgstr "Rodyti kaip piktogramą"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "Parinkti..." msgstr "Parinkti..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "Failas:" msgstr "Failas:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "Įdėti kaip" msgstr "Įdėti kaip"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "Šaltinis:" msgstr "Šaltinis:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "Į&dėti" msgstr "Į&dėti"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "Įdėti &saitą" msgstr "Įdėti &saitą"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "&Kaip:" msgstr "&Kaip:"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "&Rodyti kaip piktogramą" msgstr "&Rodyti kaip piktogramą"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "Keisti &piktogramą..." msgstr "Keisti &piktogramą..."
...@@ -7452,15 +7452,21 @@ msgstr "" ...@@ -7452,15 +7452,21 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "Pridėti valdiklį" msgstr "Pridėti valdiklį"
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "Š&riftas..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "&Objektas" msgstr "&Objektas"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "Įterpia iškarpinės turinį į dokumentą kaip %s." msgstr "Įterpia iškarpinės turinį į dokumentą kaip %s."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
...@@ -7468,7 +7474,7 @@ msgstr "" ...@@ -7468,7 +7474,7 @@ msgstr ""
"Įterpia iškarpinės turinį į dokumentą, kad galėtumėte jį aktyvuoti naudodami " "Įterpia iškarpinės turinį į dokumentą, kad galėtumėte jį aktyvuoti naudodami "
"%s." "%s."
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
...@@ -7476,7 +7482,7 @@ msgstr "" ...@@ -7476,7 +7482,7 @@ msgstr ""
"Įterpia iškarpinės turinį į dokumentą, kad galėtumėte jį aktyvuoti naudodami " "Įterpia iškarpinės turinį į dokumentą, kad galėtumėte jį aktyvuoti naudodami "
"%s. Jis bus rodomas kaip piktograma." "%s. Jis bus rodomas kaip piktograma."
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
...@@ -7485,7 +7491,7 @@ msgstr "" ...@@ -7485,7 +7491,7 @@ msgstr ""
"Įterpia iškarpinės turinį į dokumentą kaip %s. Duomenys yra susieti su " "Įterpia iškarpinės turinį į dokumentą kaip %s. Duomenys yra susieti su "
"šaltinio failu, todėl failo pakeitimai bus atspindėti dokumente." "šaltinio failu, todėl failo pakeitimai bus atspindėti dokumente."
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
...@@ -7494,7 +7500,7 @@ msgstr "" ...@@ -7494,7 +7500,7 @@ msgstr ""
"Įterpia iškarpinės turinio paveikslą į dokumentą. Paveikslas susietas su " "Įterpia iškarpinės turinio paveikslą į dokumentą. Paveikslas susietas su "
"šaltinio failu, todėl failo pakeitimai bus atspindėti dokumente." "šaltinio failu, todėl failo pakeitimai bus atspindėti dokumente."
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
...@@ -7503,19 +7509,19 @@ msgstr "" ...@@ -7503,19 +7509,19 @@ msgstr ""
"Įterpia nuorodą, kuri rodo į iškarpinės turinį. Nuoroda susieta su šaltinio " "Įterpia nuorodą, kuri rodo į iškarpinės turinį. Nuoroda susieta su šaltinio "
"failu, todėl failo pakeitimai bus atspindėti dokumente." "failu, todėl failo pakeitimai bus atspindėti dokumente."
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "Įterpia iškarpinės turinį į dokumentą." msgstr "Įterpia iškarpinės turinį į dokumentą."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "Nežinomas tipas" msgstr "Nežinomas tipas"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "Nežinomas šaltinis" msgstr "Nežinomas šaltinis"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "programa, kuri jį sukūrė" msgstr "programa, kuri jį sukūrė"
......
...@@ -56,7 +56,7 @@ msgstr "" ...@@ -56,7 +56,7 @@ msgstr ""
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -133,7 +133,7 @@ msgstr "" ...@@ -133,7 +133,7 @@ msgstr ""
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -328,7 +328,7 @@ msgstr "" ...@@ -328,7 +328,7 @@ msgstr ""
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7230,72 +7230,72 @@ msgstr "" ...@@ -7230,72 +7230,72 @@ msgstr ""
msgid "Off" msgid "Off"
msgstr "" msgstr ""
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "" msgstr ""
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "" msgstr ""
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "" msgstr ""
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "" msgstr ""
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "" msgstr ""
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "" msgstr ""
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "" msgstr ""
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "" msgstr ""
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "" msgstr ""
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "" msgstr ""
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "" msgstr ""
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "" msgstr ""
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "" msgstr ""
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "" msgstr ""
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "" msgstr ""
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "" msgstr ""
...@@ -7323,60 +7323,66 @@ msgstr "" ...@@ -7323,60 +7323,66 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "" msgstr ""
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "_അക്ഷരസഞ്ചയം..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "" msgstr ""
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "" msgstr ""
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
msgstr "" msgstr ""
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
msgstr "" msgstr ""
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
"your document." "your document."
msgstr "" msgstr ""
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
"in your document." "in your document."
msgstr "" msgstr ""
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
"be reflected in your document." "be reflected in your document."
msgstr "" msgstr ""
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "" msgstr ""
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "" msgstr ""
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "" msgstr ""
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "" msgstr ""
......
...@@ -61,7 +61,7 @@ msgstr "Støtteinformasjon" ...@@ -61,7 +61,7 @@ msgstr "Støtteinformasjon"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -144,7 +144,7 @@ msgstr "&Installer" ...@@ -144,7 +144,7 @@ msgstr "&Installer"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -348,7 +348,7 @@ msgstr "Tilbak&estill" ...@@ -348,7 +348,7 @@ msgstr "Tilbak&estill"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7418,72 +7418,72 @@ msgstr "På" ...@@ -7418,72 +7418,72 @@ msgstr "På"
msgid "Off" msgid "Off"
msgstr "Av" msgstr "Av"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "Sett inn objekt" msgstr "Sett inn objekt"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "Objekttype:" msgstr "Objekttype:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "Resultat" msgstr "Resultat"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "Opprett ny" msgstr "Opprett ny"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "Opprett kontroller" msgstr "Opprett kontroller"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "Opprett fra fil" msgstr "Opprett fra fil"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "&Legg til kontroller..." msgstr "&Legg til kontroller..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "Vis som ikon" msgstr "Vis som ikon"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "Bla..." msgstr "Bla..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "Fil:" msgstr "Fil:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "Lim inn spesiell" msgstr "Lim inn spesiell"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "Kilde:" msgstr "Kilde:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "&Lim inn" msgstr "&Lim inn"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "Lim inn kob&ling" msgstr "Lim inn kob&ling"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "&Som:" msgstr "&Som:"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "&Vis som ikon" msgstr "&Vis som ikon"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "Endre &ikon..." msgstr "Endre &ikon..."
...@@ -7515,15 +7515,21 @@ msgstr "" ...@@ -7515,15 +7515,21 @@ msgstr ""
msgid "Add Control" msgid "Add Control"
msgstr "Legg til kontroller" msgstr "Legg til kontroller"
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "Skri&ft..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "&Objekt" msgstr "&Objekt"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "Setter innholdet fra utklippstavlen inn i dokumentet som %s." msgstr "Setter innholdet fra utklippstavlen inn i dokumentet som %s."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
...@@ -7531,7 +7537,7 @@ msgstr "" ...@@ -7531,7 +7537,7 @@ msgstr ""
"Setter innholdet fra utklippstavlen inn i dokumentet så du kan aktivere det " "Setter innholdet fra utklippstavlen inn i dokumentet så du kan aktivere det "
"med %s." "med %s."
#: oledlg.rc:40 #: oledlg.rc:41
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s. It will be displayed as an icon." "activate it using %s. It will be displayed as an icon."
...@@ -7539,7 +7545,7 @@ msgstr "" ...@@ -7539,7 +7545,7 @@ msgstr ""
"Setter innholdet fra utklippstavlen inn i dokumentet så du kan aktivere det " "Setter innholdet fra utklippstavlen inn i dokumentet så du kan aktivere det "
"med %s. Det vises som et ikon." "med %s. Det vises som et ikon."
#: oledlg.rc:41 #: oledlg.rc:42
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
"linked to the source file so that changes to the file will be reflected in " "linked to the source file so that changes to the file will be reflected in "
...@@ -7548,7 +7554,7 @@ msgstr "" ...@@ -7548,7 +7554,7 @@ msgstr ""
"Setter innholdet fra utklippstavlen inn i dokumentet som %s. Det kobles til " "Setter innholdet fra utklippstavlen inn i dokumentet som %s. Det kobles til "
"kildefilen så endringer i denne også skjer i dokumentet." "kildefilen så endringer i denne også skjer i dokumentet."
#: oledlg.rc:42 #: oledlg.rc:43
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
"is linked to the source file so that changes to the file will be reflected " "is linked to the source file so that changes to the file will be reflected "
...@@ -7557,7 +7563,7 @@ msgstr "" ...@@ -7557,7 +7563,7 @@ msgstr ""
"Setter inn et bilde av utklippstavleinnholdet i dokumentet. Bildet kobles " "Setter inn et bilde av utklippstavleinnholdet i dokumentet. Bildet kobles "
"til kildefilen så endringer i denne også skjer i dokumentet." "til kildefilen så endringer i denne også skjer i dokumentet."
#: oledlg.rc:43 #: oledlg.rc:44
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
"The shortcut is linked to the source file so that changes to the file will " "The shortcut is linked to the source file so that changes to the file will "
...@@ -7567,19 +7573,19 @@ msgstr "" ...@@ -7567,19 +7573,19 @@ msgstr ""
"utklippstavlen. Snarveien kobles til kildefilen så endringer i denne også " "utklippstavlen. Snarveien kobles til kildefilen så endringer i denne også "
"skjer i dokumentet." "skjer i dokumentet."
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "Setter innholdet fra utklippstavlen inn i dokumentet." msgstr "Setter innholdet fra utklippstavlen inn i dokumentet."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "Ukjent type" msgstr "Ukjent type"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "Ukjent kilde" msgstr "Ukjent kilde"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "programmet som laget det" msgstr "programmet som laget det"
......
...@@ -60,7 +60,7 @@ msgstr "Ondersteuning" ...@@ -60,7 +60,7 @@ msgstr "Ondersteuning"
#: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451 #: comdlg32.rc:304 comdlg32.rc:358 comdlg32.rc:397 comdlg32.rc:451
#: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46 #: credui.rc:52 cryptui.rc:263 cryptui.rc:275 cryptui.rc:365 dinput.rc:46
#: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53 #: ieframe.rc:96 localui.rc:44 localui.rc:57 mpr.rc:49 msacm32.rc:53
#: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:59 oledlg.rc:91 #: mshtml.rc:47 mshtml.rc:57 msvfw32.rc:36 oledlg.rc:60 oledlg.rc:92
#: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322 #: serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300 shell32.rc:322
#: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51 #: shell32.rc:340 shlwapi.rc:44 user32.rc:80 user32.rc:98 wininet.rc:51
#: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162 #: wininet.rc:71 winspool.rc:42 net.rc:47 notepad.rc:117 oleview.rc:162
...@@ -145,7 +145,7 @@ msgstr "&Installeren" ...@@ -145,7 +145,7 @@ msgstr "&Installeren"
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276 #: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45 #: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 #: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
#: msvfw32.rc:37 oledlg.rc:60 oledlg.rc:92 serialui.rc:42 setupapi.rc:42 #: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
#: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341 #: setupapi.rc:60 shell32.rc:277 shell32.rc:301 shell32.rc:312 shell32.rc:341
#: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72 #: shlwapi.rc:45 user32.rc:81 user32.rc:99 wininet.rc:52 wininet.rc:72
#: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107 #: winspool.rc:43 notepad.rc:118 oleview.rc:163 oleview.rc:176 progman.rc:107
...@@ -350,7 +350,7 @@ msgstr "&Reset" ...@@ -350,7 +350,7 @@ msgstr "&Reset"
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264 #: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478 #: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:93 shell32.rc:128 #: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55 #: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184 #: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82 #: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
...@@ -7470,72 +7470,72 @@ msgstr "Aan" ...@@ -7470,72 +7470,72 @@ msgstr "Aan"
msgid "Off" msgid "Off"
msgstr "Uit" msgstr "Uit"
#: oledlg.rc:52 #: oledlg.rc:53
msgid "Insert Object" msgid "Insert Object"
msgstr "Object invoegen" msgstr "Object invoegen"
#: oledlg.rc:58 #: oledlg.rc:59
msgid "Object Type:" msgid "Object Type:"
msgstr "Objecttype:" msgstr "Objecttype:"
#: oledlg.rc:61 oledlg.rc:99 #: oledlg.rc:62 oledlg.rc:100
msgid "Result" msgid "Result"
msgstr "Resultaat" msgstr "Resultaat"
#: oledlg.rc:62 #: oledlg.rc:63
msgid "Create New" msgid "Create New"
msgstr "Nieuw" msgstr "Nieuw"
#: oledlg.rc:64 #: oledlg.rc:65
msgid "Create Control" msgid "Create Control"
msgstr "Creëren" msgstr "Creëren"
#: oledlg.rc:66 #: oledlg.rc:67
msgid "Create From File" msgid "Create From File"
msgstr "Bestand gebruiken" msgstr "Bestand gebruiken"
#: oledlg.rc:69 #: oledlg.rc:70
msgid "&Add Control..." msgid "&Add Control..."
msgstr "Stuurelement &toevoegen..." msgstr "Stuurelement &toevoegen..."
#: oledlg.rc:70 #: oledlg.rc:71
msgid "Display As Icon" msgid "Display As Icon"
msgstr "Als pictogram weergeven" msgstr "Als pictogram weergeven"
#: oledlg.rc:72 setupapi.rc:61 #: oledlg.rc:73 setupapi.rc:61
msgid "Browse..." msgid "Browse..."
msgstr "Bladeren..." msgstr "Bladeren..."
#: oledlg.rc:73 #: oledlg.rc:74
msgid "File:" msgid "File:"
msgstr "Bestandsnaam:" msgstr "Bestandsnaam:"
#: oledlg.rc:79 #: oledlg.rc:80
msgid "Paste Special" msgid "Paste Special"
msgstr "Plakken (Speciaal)" msgstr "Plakken (Speciaal)"
#: oledlg.rc:82 setupapi.rc:43 #: oledlg.rc:83 setupapi.rc:43
msgid "Source:" msgid "Source:"
msgstr "Bron:" msgstr "Bron:"
#: oledlg.rc:83 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135 #: oledlg.rc:84 shdoclc.rc:50 shdoclc.rc:82 shdoclc.rc:95 shdoclc.rc:135
#: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106 #: shdoclc.rc:162 shdoclc.rc:186 user32.rc:62 wineconsole.rc:33 wordpad.rc:106
msgid "&Paste" msgid "&Paste"
msgstr "&Plakken" msgstr "&Plakken"
#: oledlg.rc:85 #: oledlg.rc:86
msgid "Paste &Link" msgid "Paste &Link"
msgstr "Plak &verwijzing" msgstr "Plak &verwijzing"
#: oledlg.rc:87 #: oledlg.rc:88
msgid "&As:" msgid "&As:"
msgstr "&Als:" msgstr "&Als:"
#: oledlg.rc:94 #: oledlg.rc:95
msgid "&Display As Icon" msgid "&Display As Icon"
msgstr "Als pictogram &weergeven" msgstr "Als pictogram &weergeven"
#: oledlg.rc:96 #: oledlg.rc:97
msgid "Change &Icon..." msgid "Change &Icon..."
msgstr "Wijzig p&ictogram..." msgstr "Wijzig p&ictogram..."
...@@ -7565,15 +7565,21 @@ msgstr "Het bestand is geen geldig OLE bestand. De registratie is mislukt." ...@@ -7565,15 +7565,21 @@ msgstr "Het bestand is geen geldig OLE bestand. De registratie is mislukt."
msgid "Add Control" msgid "Add Control"
msgstr "Toevoegen" msgstr "Toevoegen"
#: oledlg.rc:34
#, fuzzy
#| msgid "&Font..."
msgid "&Convert..."
msgstr "&Lettertype..."
#: oledlg.rc:33 oleview.rc:40 #: oledlg.rc:33 oleview.rc:40
msgid "&Object" msgid "&Object"
msgstr "&Object" msgstr "&Object"
#: oledlg.rc:38 #: oledlg.rc:39
msgid "Inserts the contents of the clipboard into your document as %s." msgid "Inserts the contents of the clipboard into your document as %s."
msgstr "Voegt de inhoud van het klembord in uw document in als %s." msgstr "Voegt de inhoud van het klembord in uw document in als %s."
#: oledlg.rc:39 #: oledlg.rc:40
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
"activate it using %s." "activate it using %s."
...@@ -7581,7 +7587,7 @@ msgstr "" ...@@ -7581,7 +7587,7 @@ msgstr ""
"Voegt de inhoud van het klembord in uw document in zodat u het kan activeren " "Voegt de inhoud van het klembord in uw document in zodat u het kan activeren "
"met %s." "met %s."
#: oledlg.rc:40 #: oledlg.rc:41
#, fuzzy #, fuzzy
msgid "" msgid ""
"Inserts the contents of the clipboard into your document so that you can " "Inserts the contents of the clipboard into your document so that you can "
...@@ -7590,7 +7596,7 @@ msgstr "" ...@@ -7590,7 +7596,7 @@ msgstr ""
"Voegt de inhoud van het klembord in uw document in zodat u het kan activeren " "Voegt de inhoud van het klembord in uw document in zodat u het kan activeren "
"met %s. Het zal getoond worden als een icoon." "met %s. Het zal getoond worden als een icoon."
#: oledlg.rc:41 #: oledlg.rc:42
#, fuzzy #, fuzzy
msgid "" msgid ""
"Inserts the contents of the clipboard into your document as %s. The data is " "Inserts the contents of the clipboard into your document as %s. The data is "
...@@ -7601,7 +7607,7 @@ msgstr "" ...@@ -7601,7 +7607,7 @@ msgstr ""
"verbonden met het bron bestand zodat wijzigingen in dat bestand worden " "verbonden met het bron bestand zodat wijzigingen in dat bestand worden "
"getoond in uw document." "getoond in uw document."
#: oledlg.rc:42 #: oledlg.rc:43
#, fuzzy #, fuzzy
msgid "" msgid ""
"Inserts a picture of the clipboard contents into your document. The picture " "Inserts a picture of the clipboard contents into your document. The picture "
...@@ -7612,7 +7618,7 @@ msgstr "" ...@@ -7612,7 +7618,7 @@ msgstr ""
"verbonden met het bronbestand, zodat wijzigingen in dat bestand worden " "verbonden met het bronbestand, zodat wijzigingen in dat bestand worden "
"getoond in uw document." "getoond in uw document."
#: oledlg.rc:43 #: oledlg.rc:44
#, fuzzy #, fuzzy
msgid "" msgid ""
"Inserts a shortcut which points to the location of the clipboard contents. " "Inserts a shortcut which points to the location of the clipboard contents. "
...@@ -7623,19 +7629,19 @@ msgstr "" ...@@ -7623,19 +7629,19 @@ msgstr ""
"klembord. De verwijzing is verbonden met het bronbestand, zodat wijzigingen " "klembord. De verwijzing is verbonden met het bronbestand, zodat wijzigingen "
"in dat bestand worden getoond in uw document." "in dat bestand worden getoond in uw document."
#: oledlg.rc:44 #: oledlg.rc:45
msgid "Inserts the contents of the clipboard into your document." msgid "Inserts the contents of the clipboard into your document."
msgstr "Voegt de inhoud van het klembord in uw document." msgstr "Voegt de inhoud van het klembord in uw document."
#: oledlg.rc:45 #: oledlg.rc:46
msgid "Unknown Type" msgid "Unknown Type"
msgstr "Onbekend type" msgstr "Onbekend type"
#: oledlg.rc:46 #: oledlg.rc:47
msgid "Unknown Source" msgid "Unknown Source"
msgstr "Onbekende bron" msgstr "Onbekende bron"
#: oledlg.rc:47 #: oledlg.rc:48
msgid "the program which created it" msgid "the program which created it"
msgstr "het programma die het gecreëerd heeft" msgstr "het programma die het gecreëerd heeft"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment