comdlg32: Use the new colordlg.h file and update the resources.

Signed-off-by: Vijay Kiran Kamuju <infyquest@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Vijay Kiran Kamuju 2019-11-16 11:35:26 +01:00 committed by Alexandre Julliard
parent 93effd2671
commit a9c4b309f6
52 changed files with 10136 additions and 9833 deletions

View File

@ -148,28 +148,6 @@ typedef struct {
#define IDS_COLOR_AQUA 1054
#define IDS_COLOR_WHITE 1055
/* Color dialog controls */
#define IDC_COLOR_LUMBAR 702
#define IDC_COLOR_EDIT_H 703
#define IDC_COLOR_EDIT_S 704
#define IDC_COLOR_EDIT_L 705
#define IDC_COLOR_EDIT_R 706
#define IDC_COLOR_EDIT_G 707
#define IDC_COLOR_EDIT_B 708
#define IDC_COLOR_RESULT 709
#define IDC_COLOR_GRAPH 710
#define IDC_COLOR_ADD 712
#define IDC_COLOR_RES 713
#define IDC_COLOR_DEFINE 719
#define IDC_COLOR_PREDEF 720
#define IDC_COLOR_USRDEF 721
#define IDC_COLOR_HL 723
#define IDC_COLOR_SL 724
#define IDC_COLOR_LL 725
#define IDC_COLOR_RL 726
#define IDC_COLOR_GL 727
#define IDC_COLOR_BL 728
#define IDS_FONT_SIZE 1200
#define IDS_SAVE_BUTTON 1201
#define IDS_SAVE_IN 1202

View File

@ -3,6 +3,7 @@
*
* Copyright 1994 Martin Ayotte
* Copyright 1996 Albrecht Kleine
* Copyright 2019 Vijay Kiran Kamuju
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@ -29,6 +30,7 @@
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "colordlg.h"
#include "commdlg.h"
#include "dlgs.h"
#include "cderr.h"
@ -269,7 +271,7 @@ static BOOL CC_MouseCheckPredefColorArray(CCPRIV *lpp, int rows, int cols, LPARA
CONV_LPARAMTOPOINT(lParam, &point);
ClientToScreen(lpp->hwndSelf, &point);
hwnd = GetDlgItem(lpp->hwndSelf, IDC_COLOR_PREDEF);
hwnd = GetDlgItem(lpp->hwndSelf, COLOR_BOX1);
GetWindowRect(hwnd, &rect);
if (PtInRect(&rect, point))
{
@ -303,7 +305,7 @@ static BOOL CC_MouseCheckUserColorArray(CCPRIV *lpp, int rows, int cols, LPARAM
CONV_LPARAMTOPOINT(lParam, &point);
ClientToScreen(lpp->hwndSelf, &point);
hwnd = GetDlgItem(lpp->hwndSelf, IDC_COLOR_USRDEF);
hwnd = GetDlgItem(lpp->hwndSelf, COLOR_CUSTOM1);
GetWindowRect(hwnd, &rect);
if (PtInRect(&rect, point))
{
@ -383,11 +385,11 @@ static BOOL CC_MouseCheckResultWindow( HWND hDlg, LPARAM lParam )
CONV_LPARAMTOPOINT(lParam, &point);
ClientToScreen(hDlg, &point);
hwnd = GetDlgItem(hDlg, IDC_COLOR_RESULT);
hwnd = GetDlgItem(hDlg, COLOR_CURRENT);
GetWindowRect(hwnd, &rect);
if (PtInRect(&rect, point))
{
PostMessageA(hDlg, WM_COMMAND, IDC_COLOR_RES, 0);
PostMessageA(hDlg, WM_COMMAND, COLOR_SOLID, 0);
return TRUE;
}
return FALSE;
@ -440,12 +442,12 @@ static int CC_CheckDigitsInEdit( HWND hwnd, int maxval )
*/
static void CC_PaintSelectedColor(const CCPRIV *infoPtr)
{
if (IsWindowVisible( GetDlgItem(infoPtr->hwndSelf, IDC_COLOR_GRAPH) )) /* if full size */
if (IsWindowVisible( GetDlgItem(infoPtr->hwndSelf, COLOR_RAINBOW) )) /* if full size */
{
RECT rect;
HDC hdc;
HBRUSH hBrush;
HWND hwnd = GetDlgItem(infoPtr->hwndSelf, IDC_COLOR_RESULT);
HWND hwnd = GetDlgItem(infoPtr->hwndSelf, COLOR_CURRENT);
hdc = GetDC(hwnd);
GetClientRect(hwnd, &rect) ;
@ -473,9 +475,9 @@ static void CC_PaintTriangle(CCPRIV *infoPtr)
int oben;
RECT rect;
HBRUSH hbr;
HWND hwnd = GetDlgItem(infoPtr->hwndSelf, IDC_COLOR_LUMBAR);
HWND hwnd = GetDlgItem(infoPtr->hwndSelf, COLOR_LUMSCROLL);
if (IsWindowVisible( GetDlgItem(infoPtr->hwndSelf, IDC_COLOR_GRAPH))) /* if full size */
if (IsWindowVisible( GetDlgItem(infoPtr->hwndSelf, COLOR_RAINBOW))) /* if full size */
{
GetClientRect(hwnd, &rect);
height = rect.bottom;
@ -515,7 +517,7 @@ static void CC_PaintTriangle(CCPRIV *infoPtr)
*/
static void CC_PaintCross(CCPRIV *infoPtr)
{
HWND hwnd = GetDlgItem(infoPtr->hwndSelf, IDC_COLOR_GRAPH);
HWND hwnd = GetDlgItem(infoPtr->hwndSelf, COLOR_RAINBOW);
if (IsWindowVisible(hwnd)) /* if full size */
{
@ -573,7 +575,7 @@ static void CC_PaintCross(CCPRIV *infoPtr)
static void CC_PrepareColorGraph(CCPRIV *infoPtr)
{
int sdif, hdif, xdif, ydif, hue, sat;
HWND hwnd = GetDlgItem(infoPtr->hwndSelf, IDC_COLOR_GRAPH);
HWND hwnd = GetDlgItem(infoPtr->hwndSelf, COLOR_RAINBOW);
HBRUSH hbrush;
HDC hdc ;
RECT rect, client;
@ -612,7 +614,7 @@ static void CC_PrepareColorGraph(CCPRIV *infoPtr)
*/
static void CC_PaintColorGraph(CCPRIV *infoPtr)
{
HWND hwnd = GetDlgItem( infoPtr->hwndSelf, IDC_COLOR_GRAPH );
HWND hwnd = GetDlgItem( infoPtr->hwndSelf, COLOR_RAINBOW );
HDC hDC;
RECT rect;
@ -636,7 +638,7 @@ static void CC_PaintColorGraph(CCPRIV *infoPtr)
*/
static void CC_PaintLumBar(const CCPRIV *infoPtr)
{
HWND hwnd = GetDlgItem(infoPtr->hwndSelf, IDC_COLOR_LUMBAR);
HWND hwnd = GetDlgItem(infoPtr->hwndSelf, COLOR_LUMSCROLL);
RECT rect, client;
int lum, ldif, ydif;
HBRUSH hbrush;
@ -669,7 +671,7 @@ static void CC_PaintLumBar(const CCPRIV *infoPtr)
*/
static void CC_EditSetRGB( CCPRIV *infoPtr )
{
if (IsWindowVisible( GetDlgItem(infoPtr->hwndSelf, IDC_COLOR_GRAPH) )) /* if full size */
if (IsWindowVisible( GetDlgItem(infoPtr->hwndSelf, COLOR_RAINBOW) )) /* if full size */
{
COLORREF cr = infoPtr->lpcc->rgbResult;
int r = GetRValue(cr);
@ -677,9 +679,9 @@ static void CC_EditSetRGB( CCPRIV *infoPtr )
int b = GetBValue(cr);
infoPtr->updating = TRUE;
SetDlgItemInt(infoPtr->hwndSelf, IDC_COLOR_EDIT_R, r, TRUE);
SetDlgItemInt(infoPtr->hwndSelf, IDC_COLOR_EDIT_G, g, TRUE);
SetDlgItemInt(infoPtr->hwndSelf, IDC_COLOR_EDIT_B, b, TRUE);
SetDlgItemInt(infoPtr->hwndSelf, COLOR_RED, r, TRUE);
SetDlgItemInt(infoPtr->hwndSelf, COLOR_GREEN, g, TRUE);
SetDlgItemInt(infoPtr->hwndSelf, COLOR_BLUE, b, TRUE);
infoPtr->updating = FALSE;
}
}
@ -689,12 +691,12 @@ static void CC_EditSetRGB( CCPRIV *infoPtr )
*/
static void CC_EditSetHSL( CCPRIV *infoPtr )
{
if (IsWindowVisible( GetDlgItem(infoPtr->hwndSelf, IDC_COLOR_GRAPH) )) /* if full size */
if (IsWindowVisible( GetDlgItem(infoPtr->hwndSelf, COLOR_RAINBOW) )) /* if full size */
{
infoPtr->updating = TRUE;
SetDlgItemInt(infoPtr->hwndSelf, IDC_COLOR_EDIT_H, infoPtr->h, TRUE);
SetDlgItemInt(infoPtr->hwndSelf, IDC_COLOR_EDIT_S, infoPtr->s, TRUE);
SetDlgItemInt(infoPtr->hwndSelf, IDC_COLOR_EDIT_L, infoPtr->l, TRUE);
SetDlgItemInt(infoPtr->hwndSelf, COLOR_HUE, infoPtr->h, TRUE);
SetDlgItemInt(infoPtr->hwndSelf, COLOR_SAT, infoPtr->s, TRUE);
SetDlgItemInt(infoPtr->hwndSelf, COLOR_LUM, infoPtr->l, TRUE);
infoPtr->updating = FALSE;
}
CC_PaintLumBar(infoPtr);
@ -707,27 +709,27 @@ static void CC_SwitchToFullSize( CCPRIV *infoPtr, const RECT *lprect )
{
int i;
EnableWindow( GetDlgItem(infoPtr->hwndSelf, IDC_COLOR_DEFINE), FALSE);
EnableWindow( GetDlgItem(infoPtr->hwndSelf, COLOR_MIX), FALSE);
CC_PrepareColorGraph(infoPtr);
for (i = IDC_COLOR_EDIT_H; i <= IDC_COLOR_EDIT_B; i++)
for (i = COLOR_HUE; i <= COLOR_BLUE; i++)
ShowWindow( GetDlgItem(infoPtr->hwndSelf, i), SW_SHOW);
for (i = IDC_COLOR_HL; i <= IDC_COLOR_BL; i++)
for (i = COLOR_HUEACCEL; i <= COLOR_BLUEACCEL; i++)
ShowWindow( GetDlgItem(infoPtr->hwndSelf, i), SW_SHOW);
ShowWindow( GetDlgItem(infoPtr->hwndSelf, IDC_COLOR_RES), SW_SHOW);
ShowWindow( GetDlgItem(infoPtr->hwndSelf, IDC_COLOR_ADD), SW_SHOW);
ShowWindow( GetDlgItem(infoPtr->hwndSelf, COLOR_SOLID), SW_SHOW);
ShowWindow( GetDlgItem(infoPtr->hwndSelf, COLOR_ADD), SW_SHOW);
ShowWindow( GetDlgItem(infoPtr->hwndSelf, 1090), SW_SHOW);
if (lprect)
SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, lprect->right-lprect->left,
lprect->bottom-lprect->top, SWP_NOMOVE|SWP_NOZORDER);
ShowWindow( GetDlgItem(infoPtr->hwndSelf, IDC_COLOR_LUMBAR), SW_SHOW);
ShowWindow( GetDlgItem(infoPtr->hwndSelf, IDC_COLOR_RESULT), SW_SHOW);
ShowWindow( GetDlgItem(infoPtr->hwndSelf, COLOR_LUMSCROLL), SW_SHOW);
ShowWindow( GetDlgItem(infoPtr->hwndSelf, COLOR_CURRENT), SW_SHOW);
CC_EditSetRGB(infoPtr);
CC_EditSetHSL(infoPtr);
ShowWindow( GetDlgItem( infoPtr->hwndSelf, IDC_COLOR_GRAPH), SW_SHOW);
UpdateWindow( GetDlgItem(infoPtr->hwndSelf, IDC_COLOR_GRAPH) );
ShowWindow( GetDlgItem( infoPtr->hwndSelf, COLOR_RAINBOW), SW_SHOW);
UpdateWindow( GetDlgItem(infoPtr->hwndSelf, COLOR_RAINBOW) );
}
/***********************************************************************
@ -736,7 +738,7 @@ static void CC_SwitchToFullSize( CCPRIV *infoPtr, const RECT *lprect )
*/
static void CC_PaintPredefColorArray(const CCPRIV *infoPtr, int rows, int cols)
{
HWND hwnd = GetDlgItem(infoPtr->hwndSelf, IDC_COLOR_PREDEF);
HWND hwnd = GetDlgItem(infoPtr->hwndSelf, COLOR_BOX1);
RECT rect, blockrect;
HDC hdc;
HBRUSH hBrush;
@ -782,7 +784,7 @@ static void CC_PaintPredefColorArray(const CCPRIV *infoPtr, int rows, int cols)
*/
static void CC_PaintUserColorArray(const CCPRIV *infoPtr, int rows, int cols)
{
HWND hwnd = GetDlgItem(infoPtr->hwndSelf, IDC_COLOR_USRDEF);
HWND hwnd = GetDlgItem(infoPtr->hwndSelf, COLOR_CUSTOM1);
RECT rect, blockrect;
HDC hdc;
HBRUSH hBrush;
@ -889,14 +891,14 @@ static LRESULT CC_WMInitDialog( HWND hDlg, WPARAM wParam, LPARAM lParam )
GetWindowRect(hDlg, &lpp->fullsize);
if (lpp->lpcc->Flags & CC_FULLOPEN || lpp->lpcc->Flags & CC_PREVENTFULLOPEN)
{
hwnd = GetDlgItem(hDlg, IDC_COLOR_DEFINE);
hwnd = GetDlgItem(hDlg, COLOR_MIX);
EnableWindow(hwnd, FALSE);
}
if (!(lpp->lpcc->Flags & CC_FULLOPEN ) || lpp->lpcc->Flags & CC_PREVENTFULLOPEN)
{
rect = lpp->fullsize;
res = rect.bottom - rect.top;
hwnd = GetDlgItem(hDlg, IDC_COLOR_GRAPH); /* cut at left border */
hwnd = GetDlgItem(hDlg, COLOR_RAINBOW); /* cut at left border */
point.x = point.y = 0;
ClientToScreen(hwnd, &point);
ScreenToClient(hDlg,&point);
@ -904,20 +906,20 @@ static LRESULT CC_WMInitDialog( HWND hDlg, WPARAM wParam, LPARAM lParam )
point.x += GetSystemMetrics(SM_CXDLGFRAME);
SetWindowPos(hDlg, 0, 0, 0, point.x, res, SWP_NOMOVE|SWP_NOZORDER);
for (i = IDC_COLOR_EDIT_H; i <= IDC_COLOR_EDIT_B; i++)
for (i = COLOR_HUE; i <= COLOR_BLUE; i++)
ShowWindow( GetDlgItem(hDlg, i), SW_HIDE);
for (i = IDC_COLOR_HL; i <= IDC_COLOR_BL; i++)
for (i = COLOR_HUEACCEL; i <= COLOR_BLUEACCEL; i++)
ShowWindow( GetDlgItem(hDlg, i), SW_HIDE);
ShowWindow( GetDlgItem(hDlg, IDC_COLOR_RES), SW_HIDE);
ShowWindow( GetDlgItem(hDlg, IDC_COLOR_ADD), SW_HIDE);
ShowWindow( GetDlgItem(hDlg, IDC_COLOR_GRAPH), SW_HIDE);
ShowWindow( GetDlgItem(hDlg, IDC_COLOR_RESULT), SW_HIDE);
ShowWindow( GetDlgItem(hDlg, COLOR_SOLID), SW_HIDE);
ShowWindow( GetDlgItem(hDlg, COLOR_ADD), SW_HIDE);
ShowWindow( GetDlgItem(hDlg, COLOR_RAINBOW), SW_HIDE);
ShowWindow( GetDlgItem(hDlg, COLOR_CURRENT), SW_HIDE);
ShowWindow( GetDlgItem(hDlg, 1090 ), SW_HIDE);
}
else
CC_SwitchToFullSize(lpp, NULL);
res = TRUE;
for (i = IDC_COLOR_EDIT_H; i <= IDC_COLOR_EDIT_B; i++)
for (i = COLOR_HUE; i <= COLOR_BLUE; i++)
SendMessageA( GetDlgItem(hDlg, i), EM_LIMITTEXT, 3, 0); /* max 3 digits: xyz */
if (CC_HookCallChk(lpp->lpcc))
{
@ -935,12 +937,12 @@ static LRESULT CC_WMInitDialog( HWND hDlg, WPARAM wParam, LPARAM lParam )
lpp->l = CC_RGBtoHSL('L', lpp->lpcc->rgbResult);
/* Doing it the long way because CC_EditSetRGB/HSL doesn't seem to work */
SetDlgItemInt(hDlg, IDC_COLOR_EDIT_H, lpp->h, TRUE);
SetDlgItemInt(hDlg, IDC_COLOR_EDIT_S, lpp->s, TRUE);
SetDlgItemInt(hDlg, IDC_COLOR_EDIT_L, lpp->l, TRUE);
SetDlgItemInt(hDlg, IDC_COLOR_EDIT_R, r, TRUE);
SetDlgItemInt(hDlg, IDC_COLOR_EDIT_G, g, TRUE);
SetDlgItemInt(hDlg, IDC_COLOR_EDIT_B, b, TRUE);
SetDlgItemInt(hDlg, COLOR_HUE, lpp->h, TRUE);
SetDlgItemInt(hDlg, COLOR_SAT, lpp->s, TRUE);
SetDlgItemInt(hDlg, COLOR_LUM, lpp->l, TRUE);
SetDlgItemInt(hDlg, COLOR_RED, r, TRUE);
SetDlgItemInt(hDlg, COLOR_GREEN, g, TRUE);
SetDlgItemInt(hDlg, COLOR_BLUE, b, TRUE);
CC_PaintCross(lpp);
CC_PaintTriangle(lpp);
@ -962,9 +964,9 @@ static LRESULT CC_WMCommand(CCPRIV *lpp, WPARAM wParam, LPARAM lParam, WORD noti
TRACE("CC_WMCommand wParam=%lx lParam=%lx\n", wParam, lParam);
switch (LOWORD(wParam))
{
case IDC_COLOR_EDIT_R: /* edit notify RGB */
case IDC_COLOR_EDIT_G:
case IDC_COLOR_EDIT_B:
case COLOR_RED: /* edit notify RGB */
case COLOR_GREEN:
case COLOR_BLUE:
if (notifyCode == EN_UPDATE && !lpp->updating)
{
i = CC_CheckDigitsInEdit(hwndCtl, 255);
@ -974,9 +976,9 @@ static LRESULT CC_WMCommand(CCPRIV *lpp, WPARAM wParam, LPARAM lParam, WORD noti
xx = 0;
switch (LOWORD(wParam))
{
case IDC_COLOR_EDIT_R: if ((xx = (i != r))) r = i; break;
case IDC_COLOR_EDIT_G: if ((xx = (i != g))) g = i; break;
case IDC_COLOR_EDIT_B: if ((xx = (i != b))) b = i; break;
case COLOR_RED: if ((xx = (i != r))) r = i; break;
case COLOR_GREEN: if ((xx = (i != g))) g = i; break;
case COLOR_BLUE: if ((xx = (i != b))) b = i; break;
}
if (xx) /* something has changed */
{
@ -992,18 +994,18 @@ static LRESULT CC_WMCommand(CCPRIV *lpp, WPARAM wParam, LPARAM lParam, WORD noti
}
break;
case IDC_COLOR_EDIT_H: /* edit notify HSL */
case IDC_COLOR_EDIT_S:
case IDC_COLOR_EDIT_L:
case COLOR_HUE: /* edit notify HSL */
case COLOR_SAT:
case COLOR_LUM:
if (notifyCode == EN_UPDATE && !lpp->updating)
{
i = CC_CheckDigitsInEdit(hwndCtl , LOWORD(wParam) == IDC_COLOR_EDIT_H ? 239 : 240);
i = CC_CheckDigitsInEdit(hwndCtl , LOWORD(wParam) == COLOR_HUE ? 239 : 240);
xx = 0;
switch (LOWORD(wParam))
{
case IDC_COLOR_EDIT_H: if ((xx = ( i != lpp->h))) lpp->h = i; break;
case IDC_COLOR_EDIT_S: if ((xx = ( i != lpp->s))) lpp->s = i; break;
case IDC_COLOR_EDIT_L: if ((xx = ( i != lpp->l))) lpp->l = i; break;
case COLOR_HUE: if ((xx = ( i != lpp->h))) lpp->h = i; break;
case COLOR_SAT: if ((xx = ( i != lpp->s))) lpp->s = i; break;
case COLOR_LUM: if ((xx = ( i != lpp->l))) lpp->l = i; break;
}
if (xx) /* something has changed */
{
@ -1016,12 +1018,12 @@ static LRESULT CC_WMCommand(CCPRIV *lpp, WPARAM wParam, LPARAM lParam, WORD noti
}
break;
case IDC_COLOR_DEFINE:
case COLOR_MIX:
CC_SwitchToFullSize(lpp, &lpp->fullsize);
SetFocus( GetDlgItem(lpp->hwndSelf, IDC_COLOR_EDIT_H));
SetFocus( GetDlgItem(lpp->hwndSelf, COLOR_HUE));
break;
case IDC_COLOR_ADD: /* add colors ... column by column */
case COLOR_ADD: /* add colors ... column by column */
cr = lpp->lpcc->lpCustColors;
cr[(lpp->nextuserdef % 2) * 8 + lpp->nextuserdef / 2] = lpp->lpcc->rgbResult;
if (++lpp->nextuserdef == 16)
@ -1029,7 +1031,7 @@ static LRESULT CC_WMCommand(CCPRIV *lpp, WPARAM wParam, LPARAM lParam, WORD noti
CC_PaintUserColorArray(lpp, 2, 8);
break;
case IDC_COLOR_RES: /* resulting color */
case COLOR_SOLID: /* resulting color */
hdc = GetDC(lpp->hwndSelf);
lpp->lpcc->rgbResult = GetNearestColor(hdc, lpp->lpcc->rgbResult);
ReleaseDC(lpp->hwndSelf, hdc);
@ -1112,7 +1114,7 @@ static LRESULT CC_WMMouseMove( CCPRIV *infoPtr, LPARAM lParam )
if (infoPtr->capturedGraph)
{
int *ptrh = NULL, *ptrs = &infoPtr->l;
if (infoPtr->capturedGraph == IDC_COLOR_GRAPH)
if (infoPtr->capturedGraph == COLOR_RAINBOW)
{
ptrh = &infoPtr->h;
ptrs = &infoPtr->s;
@ -1149,16 +1151,16 @@ static LRESULT CC_WMLButtonDown( CCPRIV *infoPtr, LPARAM lParam )
if (CC_MouseCheckUserColorArray(infoPtr, 2, 8, lParam))
i = 1;
else
if (CC_MouseCheckColorGraph(infoPtr->hwndSelf, IDC_COLOR_GRAPH, &infoPtr->h, &infoPtr->s, lParam))
if (CC_MouseCheckColorGraph(infoPtr->hwndSelf, COLOR_RAINBOW, &infoPtr->h, &infoPtr->s, lParam))
{
i = 2;
infoPtr->capturedGraph = IDC_COLOR_GRAPH;
infoPtr->capturedGraph = COLOR_RAINBOW;
}
else
if (CC_MouseCheckColorGraph(infoPtr->hwndSelf, IDC_COLOR_LUMBAR, NULL, &infoPtr->l, lParam))
if (CC_MouseCheckColorGraph(infoPtr->hwndSelf, COLOR_LUMSCROLL, NULL, &infoPtr->l, lParam))
{
i = 2;
infoPtr->capturedGraph = IDC_COLOR_LUMBAR;
infoPtr->capturedGraph = COLOR_LUMSCROLL;
}
if ( i == 2 )
{

View File

@ -20,6 +20,7 @@
*/
#include "cdlg.h"
#include "colordlg.h"
#include "filedlgbrowser.h"
#pragma makedep po
@ -277,36 +278,37 @@ FONT 8, "MS Shell Dlg"
CHOOSE_COLOR DIALOG 36, 24, 300, 185
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
STYLE WS_BORDER| DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Color"
FONT 8, "MS Shell Dlg"
{
LTEXT "&Basic Colors:", stc1, 4, 4, 140, 10
LTEXT "&Custom Colors:", stc2, 4, 106, 140, 10
LTEXT "Color | Sol&id", stc3, 150, 151, 48, 10
LTEXT "&Red:", IDC_COLOR_RL /*1094*/,247,126,27,10
EDITTEXT IDC_COLOR_EDIT_R, 275,124,21,12, WS_BORDER | WS_GROUP | WS_TABSTOP
LTEXT "&Green:", IDC_COLOR_GL /*1095*/,247,140,27,10
EDITTEXT IDC_COLOR_EDIT_G, 275,138,21,12, WS_BORDER | WS_GROUP | WS_TABSTOP
LTEXT "&Blue:", IDC_COLOR_BL /*1096*/,247,154,27,10
EDITTEXT IDC_COLOR_EDIT_B, 275,152,21,12, WS_BORDER | WS_GROUP | WS_TABSTOP
LTEXT "&Hue:" , IDC_COLOR_HL /*1091*/,200,126,24,10
EDITTEXT IDC_COLOR_EDIT_H, 224,124,21,12, WS_BORDER | WS_GROUP | WS_TABSTOP
LTEXT "#msgctxt#Saturation#&Sat:", IDC_COLOR_SL /*1092*/,200,140,24,10
EDITTEXT IDC_COLOR_EDIT_S, 224,138,21,12, WS_BORDER | WS_GROUP | WS_TABSTOP
LTEXT "#msgctxt#Luminance#&Lum:", IDC_COLOR_LL /*1093*/,200,154,24,10
EDITTEXT IDC_COLOR_EDIT_L, 224,152,21,12, WS_BORDER | WS_GROUP | WS_TABSTOP
CONTROL "" , IDC_COLOR_PREDEF, "STATIC",SS_SIMPLE|WS_TABSTOP|WS_GROUP,4,14,140,86
CONTROL "" , IDC_COLOR_USRDEF, "STATIC",SS_SIMPLE|WS_TABSTOP|WS_GROUP,4,116,140,28
CONTROL "" , IDC_COLOR_GRAPH, "STATIC",WS_BORDER|SS_SIMPLE|WS_TABSTOP|WS_GROUP, 152,4,118,116
CONTROL "" , IDC_COLOR_LUMBAR, "STATIC",SS_SIMPLE|WS_TABSTOP|WS_GROUP, 278,4,8,116
CONTROL "" , IDC_COLOR_RESULT, "STATIC",SS_SIMPLE|WS_TABSTOP|WS_GROUP, 152,124,40,26
RTEXT "Color", COLOR_SOLID_LEFT, 150, 151, 20, 10
LTEXT "|S&olid", COLOR_SOLID_RIGHT, 170, 151, 20, 10
LTEXT "&Red:", COLOR_REDACCEL, 247,126,27,10
EDITTEXT COLOR_RED, 275,124,21,12, WS_BORDER | WS_GROUP | WS_TABSTOP
LTEXT "&Green:", COLOR_GREENACCEL, 247,140,27,10
EDITTEXT COLOR_GREEN, 275,138,21,12, WS_BORDER | WS_GROUP | WS_TABSTOP
LTEXT "&Blue:", COLOR_BLUEACCEL, 247,154,27,10
EDITTEXT COLOR_BLUE, 275,152,21,12, WS_BORDER | WS_GROUP | WS_TABSTOP
LTEXT "&Hue:" , COLOR_HUEACCEL, 200,126,24,10
EDITTEXT COLOR_HUE, 224,124,21,12, WS_BORDER | WS_GROUP | WS_TABSTOP
LTEXT "#msgctxt#Saturation#&Sat:", COLOR_SATACCEL, 200,140,24,10
EDITTEXT COLOR_SAT, 224,138,21,12, WS_BORDER | WS_GROUP | WS_TABSTOP
LTEXT "#msgctxt#Luminance#&Lum:", COLOR_LUMACCEL, 200,154,24,10
EDITTEXT COLOR_LUM, 224,152,21,12, WS_BORDER | WS_GROUP | WS_TABSTOP
CONTROL "" , COLOR_BOX1, "STATIC",SS_SIMPLE|WS_TABSTOP|WS_GROUP,4,14,140,86
CONTROL "" , COLOR_CUSTOM1, "STATIC",SS_SIMPLE|WS_TABSTOP|WS_GROUP,4,116,140,28
CONTROL "" , COLOR_RAINBOW, "STATIC",WS_BORDER|SS_SUNKEN|SS_SIMPLE|WS_TABSTOP|WS_GROUP, 152,4,118,116
CONTROL "" , COLOR_LUMSCROLL, "STATIC",SS_SUNKEN|SS_SIMPLE|WS_TABSTOP|WS_GROUP, 278,4,8,116
CONTROL "" , COLOR_CURRENT, "STATIC",SS_SUNKEN|SS_SIMPLE|WS_TABSTOP|WS_GROUP, 152,124,40,26
DEFPUSHBUTTON "OK", IDOK, 4, 167, 50, 14, BS_DEFPUSHBUTTON | WS_GROUP | WS_TABSTOP
PUSHBUTTON "Cancel", IDCANCEL, 58, 167, 50, 14, WS_GROUP | WS_TABSTOP
PUSHBUTTON "Help", pshHelp,100,166, 44, 14
PUSHBUTTON "&Add to Custom Colors", IDC_COLOR_ADD /*1024*/, 152, 167, 144, 14, WS_GROUP | WS_TABSTOP
PUSHBUTTON "&Define Custom Colors >>", IDC_COLOR_DEFINE /*1025*/, 4, 149, 142, 14, WS_GROUP | WS_TABSTOP
PUSHBUTTON "Color | Sol&id", IDC_COLOR_RES, 300,200,4,14 /* just a dummy */
PUSHBUTTON "&Add to Custom Colors", COLOR_ADD, 152, 167, 144, 14, WS_GROUP | WS_TABSTOP
PUSHBUTTON "&Define Custom Colors >>", COLOR_MIX, 4, 149, 142, 14, WS_GROUP | WS_TABSTOP
PUSHBUTTON "#msgctxt#Solid#&o", COLOR_SOLID, 300,200,4,14, WS_GROUP
}

403
po/ar.po

File diff suppressed because it is too large Load Diff

401
po/ast.po

File diff suppressed because it is too large Load Diff

403
po/bg.po

File diff suppressed because it is too large Load Diff

403
po/ca.po

File diff suppressed because it is too large Load Diff

403
po/cs.po

File diff suppressed because it is too large Load Diff

403
po/da.po

File diff suppressed because it is too large Load Diff

403
po/de.po

File diff suppressed because it is too large Load Diff

402
po/el.po

File diff suppressed because it is too large Load Diff

413
po/en.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

403
po/eo.po

File diff suppressed because it is too large Load Diff

403
po/es.po

File diff suppressed because it is too large Load Diff

403
po/fa.po

File diff suppressed because it is too large Load Diff

403
po/fi.po

File diff suppressed because it is too large Load Diff

403
po/fr.po

File diff suppressed because it is too large Load Diff

403
po/he.po

File diff suppressed because it is too large Load Diff

403
po/hi.po

File diff suppressed because it is too large Load Diff

403
po/hr.po

File diff suppressed because it is too large Load Diff

403
po/hu.po

File diff suppressed because it is too large Load Diff

403
po/it.po

File diff suppressed because it is too large Load Diff

403
po/ja.po

File diff suppressed because it is too large Load Diff

403
po/ko.po

File diff suppressed because it is too large Load Diff

403
po/lt.po

File diff suppressed because it is too large Load Diff

403
po/ml.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

403
po/nl.po

File diff suppressed because it is too large Load Diff

403
po/or.po

File diff suppressed because it is too large Load Diff

403
po/pa.po

File diff suppressed because it is too large Load Diff

403
po/pl.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

403
po/rm.po

File diff suppressed because it is too large Load Diff

403
po/ro.po

File diff suppressed because it is too large Load Diff

403
po/ru.po

File diff suppressed because it is too large Load Diff

403
po/si.po

File diff suppressed because it is too large Load Diff

403
po/sk.po

File diff suppressed because it is too large Load Diff

403
po/sl.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

403
po/sv.po

File diff suppressed because it is too large Load Diff

401
po/ta.po
View File

@ -53,9 +53,9 @@ msgstr "அகற்று (&R)"
msgid "Support Information"
msgstr "ஆதரவு தகவல்"
#: appwiz.rc:78 avifil32.rc:54 comctl32.rc:71 comctl32.rc:55 comdlg32.rc:232
#: comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:388 comdlg32.rc:422
#: comdlg32.rc:453 credui.rc:52 cryptui.rc:268 cryptui.rc:280 cryptui.rc:370
#: appwiz.rc:78 avifil32.rc:54 comctl32.rc:71 comctl32.rc:55 comdlg32.rc:233
#: comdlg32.rc:263 comdlg32.rc:307 comdlg32.rc:390 comdlg32.rc:424
#: comdlg32.rc:455 credui.rc:52 cryptui.rc:268 cryptui.rc:280 cryptui.rc:370
#: cryptui.rc:462 dinput.rc:37 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:62
#: oledlg.rc:94 serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300
@ -127,10 +127,10 @@ msgid "&Install"
msgstr "நிறுவு"
#: appwiz.rc:110 appwiz.rc:125 avifil32.rc:55 browseui.rc:45 comctl32.rc:72
#: comctl32.rc:87 comctl32.rc:56 comdlg32.rc:171 comdlg32.rc:193
#: comdlg32.rc:211 comdlg32.rc:233 comdlg32.rc:263 comdlg32.rc:306
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:389 comdlg32.rc:423
#: comdlg32.rc:454 comdlg32.rc:479 comdlg32.rc:505 comdlg32.rc:528 credui.rc:53
#: comctl32.rc:87 comctl32.rc:56 comdlg32.rc:172 comdlg32.rc:194
#: comdlg32.rc:212 comdlg32.rc:234 comdlg32.rc:264 comdlg32.rc:308
#: comdlg32.rc:330 comdlg32.rc:350 comdlg32.rc:391 comdlg32.rc:425
#: comdlg32.rc:456 comdlg32.rc:481 comdlg32.rc:507 comdlg32.rc:530 credui.rc:53
#: cryptui.rc:269 cryptui.rc:281 cryptui.rc:371 cryptui.rc:463 dinput.rc:38
#: ieframe.rc:97 inetcpl.rc:81 localui.rc:45 localui.rc:58 mpr.rc:50
#: msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 msvfw32.rc:37 oledlg.rc:63
@ -309,11 +309,11 @@ msgstr "மணி"
msgid "Properties for %s"
msgstr ""
#: comctl32.rc:73 comdlg32.rc:264
#: comctl32.rc:73 comdlg32.rc:265
msgid "&Apply"
msgstr ""
#: comctl32.rc:74 comctl32.rc:88 comdlg32.rc:307 user32.rc:88
#: comctl32.rc:74 comctl32.rc:88 comdlg32.rc:309 user32.rc:88
msgid "Help"
msgstr "உதவி"
@ -346,9 +346,9 @@ msgstr "மூடு (&C)"
msgid "R&eset"
msgstr "மீட்டமை (&E)"
#: comctl32.rc:102 comdlg32.rc:172 comdlg32.rc:194 comdlg32.rc:265
#: comdlg32.rc:329 comdlg32.rc:349 comdlg32.rc:390 comdlg32.rc:424
#: comdlg32.rc:480 comdlg32.rc:506 comdlg32.rc:529 ieframe.rc:58 msacm32.rc:52
#: comctl32.rc:102 comdlg32.rc:173 comdlg32.rc:195 comdlg32.rc:266
#: comdlg32.rc:331 comdlg32.rc:351 comdlg32.rc:392 comdlg32.rc:426
#: comdlg32.rc:482 comdlg32.rc:508 comdlg32.rc:531 ieframe.rc:58 msacm32.rc:52
#: oledlg.rc:96 shell32.rc:128 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:202 progman.rc:219 regedit.rc:77
@ -422,755 +422,762 @@ msgstr "இன்று:"
msgid "Go to today"
msgstr ""
#: comdlg32.rc:157 comdlg32.rc:170 comdlg32.rc:460 comdlg32.rc:485
#: comdlg32.rc:512 shell32.rc:167 oleview.rc:101
#: comdlg32.rc:158 comdlg32.rc:171 comdlg32.rc:462 comdlg32.rc:487
#: comdlg32.rc:514 shell32.rc:167 oleview.rc:101
msgid "Open"
msgstr "திற"
#: comdlg32.rc:160 comdlg32.rc:182
#: comdlg32.rc:161 comdlg32.rc:183
msgid "File &Name:"
msgstr ""
#: comdlg32.rc:163 comdlg32.rc:185
#: comdlg32.rc:164 comdlg32.rc:186
msgid "&Directories:"
msgstr ""
#: comdlg32.rc:166 comdlg32.rc:188
#: comdlg32.rc:167 comdlg32.rc:189
msgid "List Files of &Type:"
msgstr ""
#: comdlg32.rc:168 comdlg32.rc:190
#: comdlg32.rc:169 comdlg32.rc:191
msgid "Dri&ves:"
msgstr ""
#: comdlg32.rc:173 comdlg32.rc:195 shell32.rc:370 shell32.rc:407
#: comdlg32.rc:174 comdlg32.rc:196 shell32.rc:370 shell32.rc:407
#: winefile.rc:172
msgid "&Read Only"
msgstr ""
#: comdlg32.rc:179
#: comdlg32.rc:180
msgid "Save As..."
msgstr "இவ்வாறு சேமி..."
#: comdlg32.rc:192 comdlg32.rc:145
#: comdlg32.rc:193 comdlg32.rc:146
msgid "Save As"
msgstr "இவ்வாறு சேமி"
#: comdlg32.rc:201 comdlg32.rc:210 comdlg32.rc:356 comdlg32.rc:54 hhctrl.rc:49
#: comdlg32.rc:202 comdlg32.rc:211 comdlg32.rc:358 comdlg32.rc:55 hhctrl.rc:49
#: wordpad.rc:173
msgid "Print"
msgstr ""
#: comdlg32.rc:204
#: comdlg32.rc:205
msgid "Printer:"
msgstr ""
#: comdlg32.rc:206 comdlg32.rc:373
#: comdlg32.rc:207 comdlg32.rc:375
msgid "Print range"
msgstr ""
#: comdlg32.rc:207 comdlg32.rc:374 regedit.rc:268
#: comdlg32.rc:208 comdlg32.rc:376 regedit.rc:268
msgid "&All"
msgstr ""
#: comdlg32.rc:208
#: comdlg32.rc:209
msgid "S&election"
msgstr ""
#: comdlg32.rc:209
#: comdlg32.rc:210
msgid "&Pages"
msgstr ""
#: comdlg32.rc:212 comdlg32.rc:234
#: comdlg32.rc:213 comdlg32.rc:235
msgid "&Setup"
msgstr ""
#: comdlg32.rc:213
#: comdlg32.rc:214
msgid "&From:"
msgstr ""
#: comdlg32.rc:214
#: comdlg32.rc:215
msgid "&To:"
msgstr ""
#: comdlg32.rc:215 wineps.rc:42
#: comdlg32.rc:216 wineps.rc:42
msgid "Print &Quality:"
msgstr ""
#: comdlg32.rc:217
#: comdlg32.rc:218
msgid "Print to Fi&le"
msgstr ""
#: comdlg32.rc:218
#: comdlg32.rc:219
msgid "Condensed"
msgstr ""
#: comdlg32.rc:224 comdlg32.rc:395
#: comdlg32.rc:225 comdlg32.rc:397
msgid "Print Setup"
msgstr ""
#: comdlg32.rc:227 comdlg32.rc:359 comdlg32.rc:398
#: comdlg32.rc:228 comdlg32.rc:361 comdlg32.rc:400
msgid "Printer"
msgstr ""
#: comdlg32.rc:228
#: comdlg32.rc:229
msgid "&Default Printer"
msgstr ""
#: comdlg32.rc:229
#: comdlg32.rc:230
msgid "[none]"
msgstr ""
#: comdlg32.rc:230
#: comdlg32.rc:231
msgid "Specific &Printer"
msgstr ""
#: comdlg32.rc:235 comdlg32.rc:417 comdlg32.rc:441 wineps.rc:34
#: comdlg32.rc:236 comdlg32.rc:419 comdlg32.rc:443 wineps.rc:34
msgid "Orientation"
msgstr ""
#: comdlg32.rc:236
#: comdlg32.rc:237
msgid "Po&rtrait"
msgstr ""
#: comdlg32.rc:237 comdlg32.rc:443 wineps.rc:37
#: comdlg32.rc:238 comdlg32.rc:445 wineps.rc:37
msgid "&Landscape"
msgstr ""
#: comdlg32.rc:240 comdlg32.rc:411 comdlg32.rc:436 wineps.rc:28
#: comdlg32.rc:241 comdlg32.rc:413 comdlg32.rc:438 wineps.rc:28
msgid "Paper"
msgstr ""
#: comdlg32.rc:241
#: comdlg32.rc:242
msgid "Si&ze"
msgstr ""
#: comdlg32.rc:242
#: comdlg32.rc:243
msgid "&Source"
msgstr ""
#: comdlg32.rc:250 wineconsole.rc:85
#: comdlg32.rc:251 wineconsole.rc:85
msgid "Font"
msgstr "எழுத்துரு"
#: comdlg32.rc:253
#: comdlg32.rc:254
msgid "&Font:"
msgstr "எழுத்துரு (&F):"
#: comdlg32.rc:256
#: comdlg32.rc:257
msgid "Font St&yle:"
msgstr ""
#: comdlg32.rc:259 comdlg32.rc:437 winecfg.rc:294
#: comdlg32.rc:260 comdlg32.rc:439 winecfg.rc:294
msgid "&Size:"
msgstr ""
#: comdlg32.rc:266
#: comdlg32.rc:267
msgid "Effects"
msgstr ""
#: comdlg32.rc:267
#: comdlg32.rc:268
msgid "Stri&keout"
msgstr ""
#: comdlg32.rc:268
#: comdlg32.rc:269
msgid "&Underline"
msgstr ""
#: comdlg32.rc:269 winecfg.rc:292
#: comdlg32.rc:270 winecfg.rc:292
msgid "&Color:"
msgstr "நிறம் (&C):"
#: comdlg32.rc:272
#: comdlg32.rc:273
msgid "Sample"
msgstr ""
#: comdlg32.rc:274
#: comdlg32.rc:275
msgid "Scr&ipt:"
msgstr ""
#: comdlg32.rc:282
#: comdlg32.rc:283 comdlg32.rc:288
msgid "Color"
msgstr "நிறம்"
#: comdlg32.rc:285
#: comdlg32.rc:286
msgid "&Basic Colors:"
msgstr ""
#: comdlg32.rc:286
#: comdlg32.rc:287
msgid "&Custom Colors:"
msgstr ""
#: comdlg32.rc:287 comdlg32.rc:310
msgid "Color | Sol&id"
#: comdlg32.rc:289
msgid "|S&olid"
msgstr ""
#: comdlg32.rc:288
#: comdlg32.rc:290
msgid "&Red:"
msgstr "சிவப்பு (&R):"
#: comdlg32.rc:290
#: comdlg32.rc:292
msgid "&Green:"
msgstr "பச்சை (&G):"
#: comdlg32.rc:292
#: comdlg32.rc:294
msgid "&Blue:"
msgstr "நீல (&B):"
#: comdlg32.rc:294
#: comdlg32.rc:296
msgid "&Hue:"
msgstr ""
#: comdlg32.rc:296
#: comdlg32.rc:298
msgctxt "Saturation"
msgid "&Sat:"
msgstr ""
#: comdlg32.rc:298
#: comdlg32.rc:300
msgctxt "Luminance"
msgid "&Lum:"
msgstr ""
#: comdlg32.rc:308
#: comdlg32.rc:310
msgid "&Add to Custom Colors"
msgstr ""
#: comdlg32.rc:309
#: comdlg32.rc:311
msgid "&Define Custom Colors >>"
msgstr ""
#: comdlg32.rc:316 regedit.rc:275 regedit.rc:285
#: comdlg32.rc:312
#, fuzzy
#| msgid "&No"
msgctxt "Solid"
msgid "&o"
msgstr "இல்லை (&N)"
#: comdlg32.rc:318 regedit.rc:275 regedit.rc:285
msgid "Find"
msgstr ""
#: comdlg32.rc:319 comdlg32.rc:338
#: comdlg32.rc:321 comdlg32.rc:340
msgid "Fi&nd What:"
msgstr ""
#: comdlg32.rc:321 comdlg32.rc:342
#: comdlg32.rc:323 comdlg32.rc:344
msgid "Match &Whole Word Only"
msgstr ""
#: comdlg32.rc:322 comdlg32.rc:343
#: comdlg32.rc:324 comdlg32.rc:345
msgid "Match &Case"
msgstr ""
#: comdlg32.rc:323 joy.rc:71
#: comdlg32.rc:325 joy.rc:71
msgid "Direction"
msgstr ""
#: comdlg32.rc:324 view.rc:42
#: comdlg32.rc:326 view.rc:42
msgid "&Up"
msgstr ""
#: comdlg32.rc:325 view.rc:43
#: comdlg32.rc:327 view.rc:43
msgid "&Down"
msgstr ""
#: comdlg32.rc:327 comdlg32.rc:345
#: comdlg32.rc:329 comdlg32.rc:347
msgid "&Find Next"
msgstr ""
#: comdlg32.rc:335
#: comdlg32.rc:337
msgid "Replace"
msgstr ""
#: comdlg32.rc:340
#: comdlg32.rc:342
msgid "Re&place With:"
msgstr ""
#: comdlg32.rc:346
#: comdlg32.rc:348
msgid "&Replace"
msgstr ""
#: comdlg32.rc:347
#: comdlg32.rc:349
msgid "Replace &All"
msgstr ""
#: comdlg32.rc:361 comdlg32.rc:401 ieframe.rc:42 shdoclc.rc:61 shell32.rc:108
#: comdlg32.rc:363 comdlg32.rc:403 ieframe.rc:42 shdoclc.rc:61 shell32.rc:108
#: clock.rc:31 wineconsole.rc:30
msgid "&Properties"
msgstr ""
#: comdlg32.rc:362
#: comdlg32.rc:364
msgid "Print to fi&le"
msgstr ""
#: comdlg32.rc:363 comdlg32.rc:399 msacm32.rc:34 winefile.rc:137
#: comdlg32.rc:365 comdlg32.rc:401 msacm32.rc:34 winefile.rc:137
msgid "&Name:"
msgstr "பெயர் (&N):"
#: comdlg32.rc:364 comdlg32.rc:402
#: comdlg32.rc:366 comdlg32.rc:404
msgid "Status:"
msgstr ""
#: comdlg32.rc:366 comdlg32.rc:404
#: comdlg32.rc:368 comdlg32.rc:406
msgid "Type:"
msgstr ""
#: comdlg32.rc:368 comdlg32.rc:406
#: comdlg32.rc:370 comdlg32.rc:408
msgid "Where:"
msgstr ""
#: comdlg32.rc:370 comdlg32.rc:408
#: comdlg32.rc:372 comdlg32.rc:410
msgid "Comment:"
msgstr ""
#: comdlg32.rc:375
#: comdlg32.rc:377
msgid "Pa&ges"
msgstr ""
#: comdlg32.rc:376
#: comdlg32.rc:378
msgid "&Selection"
msgstr ""
#: comdlg32.rc:379
#: comdlg32.rc:381
msgid "&from:"
msgstr ""
#: comdlg32.rc:380
#: comdlg32.rc:382
msgid "&to:"
msgstr ""
#: comdlg32.rc:382
#: comdlg32.rc:384
msgid "Copies"
msgstr ""
#: comdlg32.rc:383
#: comdlg32.rc:385
msgid "Number of &copies:"
msgstr ""
#: comdlg32.rc:385
#: comdlg32.rc:387
msgid "C&ollate"
msgstr ""
#: comdlg32.rc:412 winecfg.rc:300
#: comdlg32.rc:414 winecfg.rc:300
msgid "Si&ze:"
msgstr ""
#: comdlg32.rc:414
#: comdlg32.rc:416
msgid "&Source:"
msgstr ""
#: comdlg32.rc:419
#: comdlg32.rc:421
msgid "P&ortrait"
msgstr ""
#: comdlg32.rc:420
#: comdlg32.rc:422
msgid "L&andscape"
msgstr ""
#: comdlg32.rc:430
#: comdlg32.rc:432
msgid "Setup Page"
msgstr ""
#: comdlg32.rc:439
#: comdlg32.rc:441
msgid "&Tray:"
msgstr ""
#: comdlg32.rc:442 wineps.rc:35
#: comdlg32.rc:444 wineps.rc:35
msgid "&Portrait"
msgstr ""
#: comdlg32.rc:445
#: comdlg32.rc:447
msgid "L&eft:"
msgstr ""
#: comdlg32.rc:447 notepad.rc:112
#: comdlg32.rc:449 notepad.rc:112
msgid "&Right:"
msgstr ""
#: comdlg32.rc:449
#: comdlg32.rc:451
msgid "T&op:"
msgstr ""
#: comdlg32.rc:451 notepad.rc:114
#: comdlg32.rc:453 notepad.rc:114
msgid "&Bottom:"
msgstr ""
#: comdlg32.rc:455
#: comdlg32.rc:457
msgid "P&rinter..."
msgstr ""
#: comdlg32.rc:463 comdlg32.rc:488
#: comdlg32.rc:465 comdlg32.rc:490
msgid "Look &in:"
msgstr ""
#: comdlg32.rc:469 comdlg32.rc:495
#: comdlg32.rc:471 comdlg32.rc:497
msgid "File &name:"
msgstr ""
#: comdlg32.rc:473 comdlg32.rc:499
#: comdlg32.rc:475 comdlg32.rc:501
msgid "Files of &type:"
msgstr ""
#: comdlg32.rc:476 comdlg32.rc:502
#: comdlg32.rc:478 comdlg32.rc:504
msgid "Open as &read-only"
msgstr ""
#: comdlg32.rc:478 comdlg32.rc:504 comdlg32.rc:522 shdoclc.rc:127 shell32.rc:99
#: comdlg32.rc:480 comdlg32.rc:506 comdlg32.rc:524 shdoclc.rc:127 shell32.rc:99
msgid "&Open"
msgstr "திற (&O)"
#: comdlg32.rc:515
#: comdlg32.rc:517
msgid "File name:"
msgstr ""
#: comdlg32.rc:518
#: comdlg32.rc:520
msgid "Files of type:"
msgstr ""
#: comdlg32.rc:32
#: comdlg32.rc:33
msgid "File not found"
msgstr ""
#: comdlg32.rc:33
#: comdlg32.rc:34
msgid "Please verify that the correct file name was given"
msgstr ""
#: comdlg32.rc:34
#: comdlg32.rc:35
msgid ""
"File does not exist.\n"
"Do you want to create file?"
msgstr ""
#: comdlg32.rc:35
#: comdlg32.rc:36
msgid ""
"File already exists.\n"
"Do you want to replace it?"
msgstr ""
#: comdlg32.rc:36
#: comdlg32.rc:37
msgid "Invalid character(s) in path"
msgstr ""
#: comdlg32.rc:37
#: comdlg32.rc:38
msgid ""
"A filename cannot contain any of the following characters:\n"
" / : < > |"
msgstr ""
#: comdlg32.rc:38
#: comdlg32.rc:39
msgid "Path does not exist"
msgstr ""
#: comdlg32.rc:39
#: comdlg32.rc:40
msgid "File does not exist"
msgstr ""
#: comdlg32.rc:40
#: comdlg32.rc:41
msgid "The selection contains a non-folder object"
msgstr ""
#: comdlg32.rc:45
#: comdlg32.rc:46
msgid "Up One Level"
msgstr ""
#: comdlg32.rc:46
#: comdlg32.rc:47
msgid "Create New Folder"
msgstr ""
#: comdlg32.rc:47
#: comdlg32.rc:48
msgid "List"
msgstr ""
#: comdlg32.rc:48 cryptui.rc:201
#: comdlg32.rc:49 cryptui.rc:201
msgid "Details"
msgstr ""
#: comdlg32.rc:49
#: comdlg32.rc:50
msgid "Browse to Desktop"
msgstr ""
#: comdlg32.rc:113
#: comdlg32.rc:114
msgid "Regular"
msgstr ""
#: comdlg32.rc:114
#: comdlg32.rc:115
msgid "Bold"
msgstr ""
#: comdlg32.rc:115
#: comdlg32.rc:116
msgid "Italic"
msgstr ""
#: comdlg32.rc:116
#: comdlg32.rc:117
msgid "Bold Italic"
msgstr ""
#: comdlg32.rc:121 wordpad.rc:125
#: comdlg32.rc:122 wordpad.rc:125
msgid "Black"
msgstr "கருப்பு"
#: comdlg32.rc:122 wordpad.rc:126
#: comdlg32.rc:123 wordpad.rc:126
msgid "Maroon"
msgstr "மெரூன்"
#: comdlg32.rc:123 wordpad.rc:127
#: comdlg32.rc:124 wordpad.rc:127
msgid "Green"
msgstr "பச்சை"
#: comdlg32.rc:124 wordpad.rc:128
#: comdlg32.rc:125 wordpad.rc:128
msgid "Olive"
msgstr "ஆலிவ்நிறம்"
#: comdlg32.rc:125 wordpad.rc:129
#: comdlg32.rc:126 wordpad.rc:129
msgid "Navy"
msgstr "கடல் நீலம்"
#: comdlg32.rc:126 wordpad.rc:130
#: comdlg32.rc:127 wordpad.rc:130
msgid "Purple"
msgstr "ஊதா"
#: comdlg32.rc:127 wordpad.rc:131
#: comdlg32.rc:128 wordpad.rc:131
msgid "Teal"
msgstr "பசும்நீலம்"
#: comdlg32.rc:128 wordpad.rc:132
#: comdlg32.rc:129 wordpad.rc:132
msgid "Gray"
msgstr "சாம்பல்"
#: comdlg32.rc:129 wordpad.rc:133
#: comdlg32.rc:130 wordpad.rc:133
msgid "Silver"
msgstr "வெள்ளி"
#: comdlg32.rc:130 wordpad.rc:134
#: comdlg32.rc:131 wordpad.rc:134
msgid "Red"
msgstr "சிவப்பு"
#: comdlg32.rc:131 wordpad.rc:135
#: comdlg32.rc:132 wordpad.rc:135
msgid "Lime"
msgstr "எலுமிச்சை"
#: comdlg32.rc:132 wordpad.rc:136
#: comdlg32.rc:133 wordpad.rc:136
msgid "Yellow"
msgstr "மஞ்சள்"
#: comdlg32.rc:133 wordpad.rc:137
#: comdlg32.rc:134 wordpad.rc:137
msgid "Blue"
msgstr "நீல"
#: comdlg32.rc:134 wordpad.rc:138
#: comdlg32.rc:135 wordpad.rc:138
msgid "Fuchsia"
msgstr "ஆழ்ந்த சிவப்பு"
#: comdlg32.rc:135 wordpad.rc:139
#: comdlg32.rc:136 wordpad.rc:139
msgid "Aqua"
msgstr "நீர் வண்ணம்"
#: comdlg32.rc:136 wordpad.rc:140
#: comdlg32.rc:137 wordpad.rc:140
msgid "White"
msgstr "வெள்ளை"
#: comdlg32.rc:56
#: comdlg32.rc:57
msgid "Unreadable Entry"
msgstr ""
#: comdlg32.rc:58
#: comdlg32.rc:59
msgid ""
"This value does not lie within the page range.\n"
"Please enter a value between %1!d! and %2!d!."
msgstr ""
#: comdlg32.rc:60
#: comdlg32.rc:61
msgid "The 'from' entry cannot exceed the 'to' entry."
msgstr ""
#: comdlg32.rc:62
#: comdlg32.rc:63
msgid ""
"Margins overlap or fall outside Paper boundaries.\n"
"Please reenter margins."
msgstr ""
#: comdlg32.rc:64
#: comdlg32.rc:65
msgid "The 'Number of copies' field cannot be empty."
msgstr ""
#: comdlg32.rc:66
#: comdlg32.rc:67
msgid ""
"This large number of copies is not supported by your printer.\n"
"Please enter a value between 1 and %d."
msgstr ""
#: comdlg32.rc:67
#: comdlg32.rc:68
msgid "A printer error occurred."
msgstr ""
#: comdlg32.rc:68
#: comdlg32.rc:69
msgid "No default printer defined."
msgstr ""
#: comdlg32.rc:69
#: comdlg32.rc:70
msgid "Cannot find the printer."
msgstr ""
#: comdlg32.rc:70 progman.rc:76
#: comdlg32.rc:71 progman.rc:76
msgid "Out of memory."
msgstr ""
#: comdlg32.rc:71
#: comdlg32.rc:72
msgid "An error occurred."
msgstr ""
#: comdlg32.rc:72
#: comdlg32.rc:73
msgid "Unknown printer driver."
msgstr ""
#: comdlg32.rc:75
#: comdlg32.rc:76
msgid ""
"Before you can perform printer-related tasks such as page setup or printing "
"a document, you need to install a printer. Please install one and retry."
msgstr ""
#: comdlg32.rc:141
#: comdlg32.rc:142
msgid "Select a font size between %1!d! and %2!d! points."
msgstr ""
#: comdlg32.rc:142 ieframe.rc:35
#: comdlg32.rc:143 ieframe.rc:35
msgid "&Save"
msgstr "சேமி (&S)"
#: comdlg32.rc:143
#: comdlg32.rc:144
msgid "Save &in:"
msgstr ""
#: comdlg32.rc:144
#: comdlg32.rc:145
msgid "Save"
msgstr "சேமி"
#: comdlg32.rc:146
#: comdlg32.rc:147
msgid "Open File"
msgstr ""
#: comdlg32.rc:147
#: comdlg32.rc:148
msgid "Select Folder"
msgstr ""
#: comdlg32.rc:148
#: comdlg32.rc:149
msgid "Font size has to be a number."
msgstr ""
#: comdlg32.rc:83 oleview.rc:98
#: comdlg32.rc:84 oleview.rc:98
msgid "Ready"
msgstr ""
#: comdlg32.rc:84
#: comdlg32.rc:85
msgid "Paused; "
msgstr ""
#: comdlg32.rc:85
#: comdlg32.rc:86
msgid "Error; "
msgstr "பிழை; "
#: comdlg32.rc:86
#: comdlg32.rc:87
msgid "Pending deletion; "
msgstr ""
#: comdlg32.rc:87
#: comdlg32.rc:88
msgid "Paper jam; "
msgstr ""
#: comdlg32.rc:88
#: comdlg32.rc:89
msgid "Out of paper; "
msgstr ""
#: comdlg32.rc:89
#: comdlg32.rc:90
msgid "Feed paper manual; "
msgstr ""
#: comdlg32.rc:90
#: comdlg32.rc:91
msgid "Paper problem; "
msgstr ""
#: comdlg32.rc:91
#: comdlg32.rc:92
msgid "Printer offline; "
msgstr ""
#: comdlg32.rc:92
#: comdlg32.rc:93
msgid "I/O Active; "
msgstr ""
#: comdlg32.rc:93
#: comdlg32.rc:94
msgid "Busy; "
msgstr ""
#: comdlg32.rc:94
#: comdlg32.rc:95
msgid "Printing; "
msgstr ""
#: comdlg32.rc:95
#: comdlg32.rc:96
msgid "Output tray is full; "
msgstr ""
#: comdlg32.rc:96
#: comdlg32.rc:97
msgid "Not available; "
msgstr ""
#: comdlg32.rc:97
#: comdlg32.rc:98
msgid "Waiting; "
msgstr ""
#: comdlg32.rc:98
#: comdlg32.rc:99
msgid "Processing; "
msgstr ""
#: comdlg32.rc:99
#: comdlg32.rc:100
msgid "Initializing; "
msgstr ""
#: comdlg32.rc:100
#: comdlg32.rc:101
msgid "Warming up; "
msgstr ""
#: comdlg32.rc:101
#: comdlg32.rc:102
msgid "Toner low; "
msgstr ""
#: comdlg32.rc:102
#: comdlg32.rc:103
msgid "No toner; "
msgstr ""
#: comdlg32.rc:103
#: comdlg32.rc:104
msgid "Page punt; "
msgstr ""
#: comdlg32.rc:104
#: comdlg32.rc:105
msgid "Interrupted by user; "
msgstr ""
#: comdlg32.rc:105
#: comdlg32.rc:106
msgid "Out of memory; "
msgstr ""
#: comdlg32.rc:106
#: comdlg32.rc:107
msgid "The printer door is open; "
msgstr ""
#: comdlg32.rc:107
#: comdlg32.rc:108
msgid "Print server unknown; "
msgstr ""
#: comdlg32.rc:108
#: comdlg32.rc:109
msgid "Power save mode; "
msgstr ""
#: comdlg32.rc:77
#: comdlg32.rc:78
msgid "Default Printer; "
msgstr ""
#: comdlg32.rc:78
#: comdlg32.rc:79
msgid "There are %d documents in the queue"
msgstr ""
#: comdlg32.rc:79
#: comdlg32.rc:80
msgid "Margins [inches]"
msgstr ""
#: comdlg32.rc:80
#: comdlg32.rc:81
msgid "Margins [mm]"
msgstr ""
#: comdlg32.rc:81 sane.rc:33
#: comdlg32.rc:82 sane.rc:33
msgctxt "unit: millimeters"
msgid "mm"
msgstr ""

403
po/te.po

File diff suppressed because it is too large Load Diff

402
po/th.po

File diff suppressed because it is too large Load Diff

403
po/tr.po

File diff suppressed because it is too large Load Diff

403
po/uk.po

File diff suppressed because it is too large Load Diff

403
po/wa.po

File diff suppressed because it is too large Load Diff

View File

@ -48,9 +48,9 @@ msgstr ""
msgid "Support Information"
msgstr ""
#: appwiz.rc:78 avifil32.rc:54 comctl32.rc:71 comctl32.rc:55 comdlg32.rc:232
#: comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:388 comdlg32.rc:422
#: comdlg32.rc:453 credui.rc:52 cryptui.rc:268 cryptui.rc:280 cryptui.rc:370
#: appwiz.rc:78 avifil32.rc:54 comctl32.rc:71 comctl32.rc:55 comdlg32.rc:233
#: comdlg32.rc:263 comdlg32.rc:307 comdlg32.rc:390 comdlg32.rc:424
#: comdlg32.rc:455 credui.rc:52 cryptui.rc:268 cryptui.rc:280 cryptui.rc:370
#: cryptui.rc:462 dinput.rc:37 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:62
#: oledlg.rc:94 serialui.rc:41 setupapi.rc:59 shell32.rc:276 shell32.rc:300
@ -122,10 +122,10 @@ msgid "&Install"
msgstr ""
#: appwiz.rc:110 appwiz.rc:125 avifil32.rc:55 browseui.rc:45 comctl32.rc:72
#: comctl32.rc:87 comctl32.rc:56 comdlg32.rc:171 comdlg32.rc:193
#: comdlg32.rc:211 comdlg32.rc:233 comdlg32.rc:263 comdlg32.rc:306
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:389 comdlg32.rc:423
#: comdlg32.rc:454 comdlg32.rc:479 comdlg32.rc:505 comdlg32.rc:528 credui.rc:53
#: comctl32.rc:87 comctl32.rc:56 comdlg32.rc:172 comdlg32.rc:194
#: comdlg32.rc:212 comdlg32.rc:234 comdlg32.rc:264 comdlg32.rc:308
#: comdlg32.rc:330 comdlg32.rc:350 comdlg32.rc:391 comdlg32.rc:425
#: comdlg32.rc:456 comdlg32.rc:481 comdlg32.rc:507 comdlg32.rc:530 credui.rc:53
#: cryptui.rc:269 cryptui.rc:281 cryptui.rc:371 cryptui.rc:463 dinput.rc:38
#: ieframe.rc:97 inetcpl.rc:81 localui.rc:45 localui.rc:58 mpr.rc:50
#: msacm32.rc:54 mshtml.rc:48 mshtml.rc:58 msvfw32.rc:37 oledlg.rc:63
@ -304,11 +304,11 @@ msgstr ""
msgid "Properties for %s"
msgstr ""
#: comctl32.rc:73 comdlg32.rc:264
#: comctl32.rc:73 comdlg32.rc:265
msgid "&Apply"
msgstr ""
#: comctl32.rc:74 comctl32.rc:88 comdlg32.rc:307 user32.rc:88
#: comctl32.rc:74 comctl32.rc:88 comdlg32.rc:309 user32.rc:88
msgid "Help"
msgstr ""
@ -341,9 +341,9 @@ msgstr ""
msgid "R&eset"
msgstr ""
#: comctl32.rc:102 comdlg32.rc:172 comdlg32.rc:194 comdlg32.rc:265
#: comdlg32.rc:329 comdlg32.rc:349 comdlg32.rc:390 comdlg32.rc:424
#: comdlg32.rc:480 comdlg32.rc:506 comdlg32.rc:529 ieframe.rc:58 msacm32.rc:52
#: comctl32.rc:102 comdlg32.rc:173 comdlg32.rc:195 comdlg32.rc:266
#: comdlg32.rc:331 comdlg32.rc:351 comdlg32.rc:392 comdlg32.rc:426
#: comdlg32.rc:482 comdlg32.rc:508 comdlg32.rc:531 ieframe.rc:58 msacm32.rc:52
#: oledlg.rc:96 shell32.rc:128 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:202 progman.rc:219 regedit.rc:77
@ -417,755 +417,760 @@ msgstr ""
msgid "Go to today"
msgstr ""
#: comdlg32.rc:157 comdlg32.rc:170 comdlg32.rc:460 comdlg32.rc:485
#: comdlg32.rc:512 shell32.rc:167 oleview.rc:101
#: comdlg32.rc:158 comdlg32.rc:171 comdlg32.rc:462 comdlg32.rc:487
#: comdlg32.rc:514 shell32.rc:167 oleview.rc:101
msgid "Open"
msgstr ""
#: comdlg32.rc:160 comdlg32.rc:182
#: comdlg32.rc:161 comdlg32.rc:183
msgid "File &Name:"
msgstr ""
#: comdlg32.rc:163 comdlg32.rc:185
#: comdlg32.rc:164 comdlg32.rc:186
msgid "&Directories:"
msgstr ""
#: comdlg32.rc:166 comdlg32.rc:188
#: comdlg32.rc:167 comdlg32.rc:189
msgid "List Files of &Type:"
msgstr ""
#: comdlg32.rc:168 comdlg32.rc:190
#: comdlg32.rc:169 comdlg32.rc:191
msgid "Dri&ves:"
msgstr ""
#: comdlg32.rc:173 comdlg32.rc:195 shell32.rc:370 shell32.rc:407
#: comdlg32.rc:174 comdlg32.rc:196 shell32.rc:370 shell32.rc:407
#: winefile.rc:172
msgid "&Read Only"
msgstr ""
#: comdlg32.rc:179
#: comdlg32.rc:180
msgid "Save As..."
msgstr ""
#: comdlg32.rc:192 comdlg32.rc:145
#: comdlg32.rc:193 comdlg32.rc:146
msgid "Save As"
msgstr ""
#: comdlg32.rc:201 comdlg32.rc:210 comdlg32.rc:356 comdlg32.rc:54 hhctrl.rc:49
#: comdlg32.rc:202 comdlg32.rc:211 comdlg32.rc:358 comdlg32.rc:55 hhctrl.rc:49
#: wordpad.rc:173
msgid "Print"
msgstr ""
#: comdlg32.rc:204
#: comdlg32.rc:205
msgid "Printer:"
msgstr ""
#: comdlg32.rc:206 comdlg32.rc:373
#: comdlg32.rc:207 comdlg32.rc:375
msgid "Print range"
msgstr ""
#: comdlg32.rc:207 comdlg32.rc:374 regedit.rc:268
#: comdlg32.rc:208 comdlg32.rc:376 regedit.rc:268
msgid "&All"
msgstr ""
#: comdlg32.rc:208
#: comdlg32.rc:209
msgid "S&election"
msgstr ""
#: comdlg32.rc:209
#: comdlg32.rc:210
msgid "&Pages"
msgstr ""
#: comdlg32.rc:212 comdlg32.rc:234
#: comdlg32.rc:213 comdlg32.rc:235
msgid "&Setup"
msgstr ""
#: comdlg32.rc:213
#: comdlg32.rc:214
msgid "&From:"
msgstr ""
#: comdlg32.rc:214
#: comdlg32.rc:215
msgid "&To:"
msgstr ""
#: comdlg32.rc:215 wineps.rc:42
#: comdlg32.rc:216 wineps.rc:42
msgid "Print &Quality:"
msgstr ""
#: comdlg32.rc:217
#: comdlg32.rc:218
msgid "Print to Fi&le"
msgstr ""
#: comdlg32.rc:218
#: comdlg32.rc:219
msgid "Condensed"
msgstr ""
#: comdlg32.rc:224 comdlg32.rc:395
#: comdlg32.rc:225 comdlg32.rc:397
msgid "Print Setup"
msgstr ""
#: comdlg32.rc:227 comdlg32.rc:359 comdlg32.rc:398
#: comdlg32.rc:228 comdlg32.rc:361 comdlg32.rc:400
msgid "Printer"
msgstr ""
#: comdlg32.rc:228
#: comdlg32.rc:229
msgid "&Default Printer"
msgstr ""
#: comdlg32.rc:229
#: comdlg32.rc:230
msgid "[none]"
msgstr ""
#: comdlg32.rc:230
#: comdlg32.rc:231
msgid "Specific &Printer"
msgstr ""
#: comdlg32.rc:235 comdlg32.rc:417 comdlg32.rc:441 wineps.rc:34
#: comdlg32.rc:236 comdlg32.rc:419 comdlg32.rc:443 wineps.rc:34
msgid "Orientation"
msgstr ""
#: comdlg32.rc:236
#: comdlg32.rc:237
msgid "Po&rtrait"
msgstr ""
#: comdlg32.rc:237 comdlg32.rc:443 wineps.rc:37
#: comdlg32.rc:238 comdlg32.rc:445 wineps.rc:37
msgid "&Landscape"
msgstr ""
#: comdlg32.rc:240 comdlg32.rc:411 comdlg32.rc:436 wineps.rc:28
#: comdlg32.rc:241 comdlg32.rc:413 comdlg32.rc:438 wineps.rc:28
msgid "Paper"
msgstr ""
#: comdlg32.rc:241
#: comdlg32.rc:242
msgid "Si&ze"
msgstr ""
#: comdlg32.rc:242
#: comdlg32.rc:243
msgid "&Source"
msgstr ""
#: comdlg32.rc:250 wineconsole.rc:85
#: comdlg32.rc:251 wineconsole.rc:85
msgid "Font"
msgstr ""
#: comdlg32.rc:253
#: comdlg32.rc:254
msgid "&Font:"
msgstr ""
#: comdlg32.rc:256
#: comdlg32.rc:257
msgid "Font St&yle:"
msgstr ""
#: comdlg32.rc:259 comdlg32.rc:437 winecfg.rc:294
#: comdlg32.rc:260 comdlg32.rc:439 winecfg.rc:294
msgid "&Size:"
msgstr ""
#: comdlg32.rc:266
#: comdlg32.rc:267
msgid "Effects"
msgstr ""
#: comdlg32.rc:267
#: comdlg32.rc:268
msgid "Stri&keout"
msgstr ""
#: comdlg32.rc:268
#: comdlg32.rc:269
msgid "&Underline"
msgstr ""
#: comdlg32.rc:269 winecfg.rc:292
#: comdlg32.rc:270 winecfg.rc:292
msgid "&Color:"
msgstr ""
#: comdlg32.rc:272
#: comdlg32.rc:273
msgid "Sample"
msgstr ""
#: comdlg32.rc:274
#: comdlg32.rc:275
msgid "Scr&ipt:"
msgstr ""
#: comdlg32.rc:282
#: comdlg32.rc:283 comdlg32.rc:288
msgid "Color"
msgstr ""
#: comdlg32.rc:285
#: comdlg32.rc:286
msgid "&Basic Colors:"
msgstr ""
#: comdlg32.rc:286
#: comdlg32.rc:287
msgid "&Custom Colors:"
msgstr ""
#: comdlg32.rc:287 comdlg32.rc:310
msgid "Color | Sol&id"
msgstr ""
#: comdlg32.rc:288
msgid "&Red:"
#: comdlg32.rc:289
msgid "|S&olid"
msgstr ""
#: comdlg32.rc:290
msgid "&Green:"
msgid "&Red:"
msgstr ""
#: comdlg32.rc:292
msgid "&Blue:"
msgid "&Green:"
msgstr ""
#: comdlg32.rc:294
msgid "&Hue:"
msgid "&Blue:"
msgstr ""
#: comdlg32.rc:296
msgid "&Hue:"
msgstr ""
#: comdlg32.rc:298
msgctxt "Saturation"
msgid "&Sat:"
msgstr ""
#: comdlg32.rc:298
#: comdlg32.rc:300
msgctxt "Luminance"
msgid "&Lum:"
msgstr ""
#: comdlg32.rc:308
#: comdlg32.rc:310
msgid "&Add to Custom Colors"
msgstr ""
#: comdlg32.rc:309
#: comdlg32.rc:311
msgid "&Define Custom Colors >>"
msgstr ""
#: comdlg32.rc:316 regedit.rc:275 regedit.rc:285
#: comdlg32.rc:312
msgctxt "Solid"
msgid "&o"
msgstr ""
#: comdlg32.rc:318 regedit.rc:275 regedit.rc:285
msgid "Find"
msgstr ""
#: comdlg32.rc:319 comdlg32.rc:338
#: comdlg32.rc:321 comdlg32.rc:340
msgid "Fi&nd What:"
msgstr ""
#: comdlg32.rc:321 comdlg32.rc:342
#: comdlg32.rc:323 comdlg32.rc:344
msgid "Match &Whole Word Only"
msgstr ""
#: comdlg32.rc:322 comdlg32.rc:343
#: comdlg32.rc:324 comdlg32.rc:345
msgid "Match &Case"
msgstr ""
#: comdlg32.rc:323 joy.rc:71
#: comdlg32.rc:325 joy.rc:71
msgid "Direction"
msgstr ""
#: comdlg32.rc:324 view.rc:42
#: comdlg32.rc:326 view.rc:42
msgid "&Up"
msgstr ""
#: comdlg32.rc:325 view.rc:43
#: comdlg32.rc:327 view.rc:43
msgid "&Down"
msgstr ""
#: comdlg32.rc:327 comdlg32.rc:345
#: comdlg32.rc:329 comdlg32.rc:347
msgid "&Find Next"
msgstr ""
#: comdlg32.rc:335
#: comdlg32.rc:337
msgid "Replace"
msgstr ""
#: comdlg32.rc:340
#: comdlg32.rc:342
msgid "Re&place With:"
msgstr ""
#: comdlg32.rc:346
#: comdlg32.rc:348
msgid "&Replace"
msgstr ""
#: comdlg32.rc:347
#: comdlg32.rc:349
msgid "Replace &All"
msgstr ""
#: comdlg32.rc:361 comdlg32.rc:401 ieframe.rc:42 shdoclc.rc:61 shell32.rc:108
#: comdlg32.rc:363 comdlg32.rc:403 ieframe.rc:42 shdoclc.rc:61 shell32.rc:108
#: clock.rc:31 wineconsole.rc:30
msgid "&Properties"
msgstr ""
#: comdlg32.rc:362
#: comdlg32.rc:364
msgid "Print to fi&le"
msgstr ""
#: comdlg32.rc:363 comdlg32.rc:399 msacm32.rc:34 winefile.rc:137
#: comdlg32.rc:365 comdlg32.rc:401 msacm32.rc:34 winefile.rc:137
msgid "&Name:"
msgstr ""
#: comdlg32.rc:364 comdlg32.rc:402
#: comdlg32.rc:366 comdlg32.rc:404
msgid "Status:"
msgstr ""
#: comdlg32.rc:366 comdlg32.rc:404
#: comdlg32.rc:368 comdlg32.rc:406
msgid "Type:"
msgstr ""
#: comdlg32.rc:368 comdlg32.rc:406
#: comdlg32.rc:370 comdlg32.rc:408
msgid "Where:"
msgstr ""
#: comdlg32.rc:370 comdlg32.rc:408
#: comdlg32.rc:372 comdlg32.rc:410
msgid "Comment:"
msgstr ""
#: comdlg32.rc:375
#: comdlg32.rc:377
msgid "Pa&ges"
msgstr ""
#: comdlg32.rc:376
#: comdlg32.rc:378
msgid "&Selection"
msgstr ""
#: comdlg32.rc:379
#: comdlg32.rc:381
msgid "&from:"
msgstr ""
#: comdlg32.rc:380
#: comdlg32.rc:382
msgid "&to:"
msgstr ""
#: comdlg32.rc:382
#: comdlg32.rc:384
msgid "Copies"
msgstr ""
#: comdlg32.rc:383
#: comdlg32.rc:385
msgid "Number of &copies:"
msgstr ""
#: comdlg32.rc:385
#: comdlg32.rc:387
msgid "C&ollate"
msgstr ""
#: comdlg32.rc:412 winecfg.rc:300
#: comdlg32.rc:414 winecfg.rc:300
msgid "Si&ze:"
msgstr ""
#: comdlg32.rc:414
#: comdlg32.rc:416
msgid "&Source:"
msgstr ""
#: comdlg32.rc:419
#: comdlg32.rc:421
msgid "P&ortrait"
msgstr ""
#: comdlg32.rc:420
#: comdlg32.rc:422
msgid "L&andscape"
msgstr ""
#: comdlg32.rc:430
#: comdlg32.rc:432
msgid "Setup Page"
msgstr ""
#: comdlg32.rc:439
#: comdlg32.rc:441
msgid "&Tray:"
msgstr ""
#: comdlg32.rc:442 wineps.rc:35
#: comdlg32.rc:444 wineps.rc:35
msgid "&Portrait"
msgstr ""
#: comdlg32.rc:445
#: comdlg32.rc:447
msgid "L&eft:"
msgstr ""
#: comdlg32.rc:447 notepad.rc:112
#: comdlg32.rc:449 notepad.rc:112
msgid "&Right:"
msgstr ""
#: comdlg32.rc:449
#: comdlg32.rc:451
msgid "T&op:"
msgstr ""
#: comdlg32.rc:451 notepad.rc:114
#: comdlg32.rc:453 notepad.rc:114
msgid "&Bottom:"
msgstr ""
#: comdlg32.rc:455
#: comdlg32.rc:457
msgid "P&rinter..."
msgstr ""
#: comdlg32.rc:463 comdlg32.rc:488
#: comdlg32.rc:465 comdlg32.rc:490
msgid "Look &in:"
msgstr ""
#: comdlg32.rc:469 comdlg32.rc:495
#: comdlg32.rc:471 comdlg32.rc:497
msgid "File &name:"
msgstr ""
#: comdlg32.rc:473 comdlg32.rc:499
#: comdlg32.rc:475 comdlg32.rc:501
msgid "Files of &type:"
msgstr ""
#: comdlg32.rc:476 comdlg32.rc:502
#: comdlg32.rc:478 comdlg32.rc:504
msgid "Open as &read-only"
msgstr ""
#: comdlg32.rc:478 comdlg32.rc:504 comdlg32.rc:522 shdoclc.rc:127 shell32.rc:99
#: comdlg32.rc:480 comdlg32.rc:506 comdlg32.rc:524 shdoclc.rc:127 shell32.rc:99
msgid "&Open"
msgstr ""
#: comdlg32.rc:515
#: comdlg32.rc:517
msgid "File name:"
msgstr ""
#: comdlg32.rc:518
#: comdlg32.rc:520
msgid "Files of type:"
msgstr ""
#: comdlg32.rc:32
#: comdlg32.rc:33
msgid "File not found"
msgstr ""
#: comdlg32.rc:33
#: comdlg32.rc:34
msgid "Please verify that the correct file name was given"
msgstr ""
#: comdlg32.rc:34
#: comdlg32.rc:35
msgid ""
"File does not exist.\n"
"Do you want to create file?"
msgstr ""
#: comdlg32.rc:35
#: comdlg32.rc:36
msgid ""
"File already exists.\n"
"Do you want to replace it?"
msgstr ""
#: comdlg32.rc:36
#: comdlg32.rc:37
msgid "Invalid character(s) in path"
msgstr ""
#: comdlg32.rc:37
#: comdlg32.rc:38
msgid ""
"A filename cannot contain any of the following characters:\n"
" / : < > |"
msgstr ""
#: comdlg32.rc:38
#: comdlg32.rc:39
msgid "Path does not exist"
msgstr ""
#: comdlg32.rc:39
#: comdlg32.rc:40
msgid "File does not exist"
msgstr ""
#: comdlg32.rc:40
#: comdlg32.rc:41
msgid "The selection contains a non-folder object"
msgstr ""
#: comdlg32.rc:45
#: comdlg32.rc:46
msgid "Up One Level"
msgstr ""
#: comdlg32.rc:46
#: comdlg32.rc:47
msgid "Create New Folder"
msgstr ""
#: comdlg32.rc:47
#: comdlg32.rc:48
msgid "List"
msgstr ""
#: comdlg32.rc:48 cryptui.rc:201
#: comdlg32.rc:49 cryptui.rc:201
msgid "Details"
msgstr ""
#: comdlg32.rc:49
#: comdlg32.rc:50
msgid "Browse to Desktop"
msgstr ""
#: comdlg32.rc:113
#: comdlg32.rc:114
msgid "Regular"
msgstr ""
#: comdlg32.rc:114
#: comdlg32.rc:115
msgid "Bold"
msgstr ""
#: comdlg32.rc:115
#: comdlg32.rc:116
msgid "Italic"
msgstr ""
#: comdlg32.rc:116
#: comdlg32.rc:117
msgid "Bold Italic"
msgstr ""
#: comdlg32.rc:121 wordpad.rc:125
#: comdlg32.rc:122 wordpad.rc:125
msgid "Black"
msgstr ""
#: comdlg32.rc:122 wordpad.rc:126
#: comdlg32.rc:123 wordpad.rc:126
msgid "Maroon"
msgstr ""
#: comdlg32.rc:123 wordpad.rc:127
#: comdlg32.rc:124 wordpad.rc:127
msgid "Green"
msgstr ""
#: comdlg32.rc:124 wordpad.rc:128
#: comdlg32.rc:125 wordpad.rc:128
msgid "Olive"
msgstr ""
#: comdlg32.rc:125 wordpad.rc:129
#: comdlg32.rc:126 wordpad.rc:129
msgid "Navy"
msgstr ""
#: comdlg32.rc:126 wordpad.rc:130
#: comdlg32.rc:127 wordpad.rc:130
msgid "Purple"
msgstr ""
#: comdlg32.rc:127 wordpad.rc:131
#: comdlg32.rc:128 wordpad.rc:131
msgid "Teal"
msgstr ""
#: comdlg32.rc:128 wordpad.rc:132
#: comdlg32.rc:129 wordpad.rc:132
msgid "Gray"
msgstr ""
#: comdlg32.rc:129 wordpad.rc:133
#: comdlg32.rc:130 wordpad.rc:133
msgid "Silver"
msgstr ""
#: comdlg32.rc:130 wordpad.rc:134
#: comdlg32.rc:131 wordpad.rc:134
msgid "Red"
msgstr ""
#: comdlg32.rc:131 wordpad.rc:135
#: comdlg32.rc:132 wordpad.rc:135
msgid "Lime"
msgstr ""
#: comdlg32.rc:132 wordpad.rc:136
#: comdlg32.rc:133 wordpad.rc:136
msgid "Yellow"
msgstr ""
#: comdlg32.rc:133 wordpad.rc:137
#: comdlg32.rc:134 wordpad.rc:137
msgid "Blue"
msgstr ""
#: comdlg32.rc:134 wordpad.rc:138
#: comdlg32.rc:135 wordpad.rc:138
msgid "Fuchsia"
msgstr ""
#: comdlg32.rc:135 wordpad.rc:139
#: comdlg32.rc:136 wordpad.rc:139
msgid "Aqua"
msgstr ""
#: comdlg32.rc:136 wordpad.rc:140
#: comdlg32.rc:137 wordpad.rc:140
msgid "White"
msgstr ""
#: comdlg32.rc:56
#: comdlg32.rc:57
msgid "Unreadable Entry"
msgstr ""
#: comdlg32.rc:58
#: comdlg32.rc:59
msgid ""
"This value does not lie within the page range.\n"
"Please enter a value between %1!d! and %2!d!."
msgstr ""
#: comdlg32.rc:60
#: comdlg32.rc:61
msgid "The 'from' entry cannot exceed the 'to' entry."
msgstr ""
#: comdlg32.rc:62
#: comdlg32.rc:63
msgid ""
"Margins overlap or fall outside Paper boundaries.\n"
"Please reenter margins."
msgstr ""
#: comdlg32.rc:64
#: comdlg32.rc:65
msgid "The 'Number of copies' field cannot be empty."
msgstr ""
#: comdlg32.rc:66
#: comdlg32.rc:67
msgid ""
"This large number of copies is not supported by your printer.\n"
"Please enter a value between 1 and %d."
msgstr ""
#: comdlg32.rc:67
#: comdlg32.rc:68
msgid "A printer error occurred."
msgstr ""
#: comdlg32.rc:68
#: comdlg32.rc:69
msgid "No default printer defined."
msgstr ""
#: comdlg32.rc:69
#: comdlg32.rc:70
msgid "Cannot find the printer."
msgstr ""
#: comdlg32.rc:70 progman.rc:76
#: comdlg32.rc:71 progman.rc:76
msgid "Out of memory."
msgstr ""
#: comdlg32.rc:71
#: comdlg32.rc:72
msgid "An error occurred."
msgstr ""
#: comdlg32.rc:72
#: comdlg32.rc:73
msgid "Unknown printer driver."
msgstr ""
#: comdlg32.rc:75
#: comdlg32.rc:76
msgid ""
"Before you can perform printer-related tasks such as page setup or printing "
"a document, you need to install a printer. Please install one and retry."
msgstr ""
#: comdlg32.rc:141
#: comdlg32.rc:142
msgid "Select a font size between %1!d! and %2!d! points."
msgstr ""
#: comdlg32.rc:142 ieframe.rc:35
#: comdlg32.rc:143 ieframe.rc:35
msgid "&Save"
msgstr ""
#: comdlg32.rc:143
#: comdlg32.rc:144
msgid "Save &in:"
msgstr ""
#: comdlg32.rc:144
#: comdlg32.rc:145
msgid "Save"
msgstr ""
#: comdlg32.rc:146
#: comdlg32.rc:147
msgid "Open File"
msgstr ""
#: comdlg32.rc:147
#: comdlg32.rc:148
msgid "Select Folder"
msgstr ""
#: comdlg32.rc:148
#: comdlg32.rc:149
msgid "Font size has to be a number."
msgstr ""
#: comdlg32.rc:83 oleview.rc:98
#: comdlg32.rc:84 oleview.rc:98
msgid "Ready"
msgstr ""
#: comdlg32.rc:84
#: comdlg32.rc:85
msgid "Paused; "
msgstr ""
#: comdlg32.rc:85
#: comdlg32.rc:86
msgid "Error; "
msgstr ""
#: comdlg32.rc:86
#: comdlg32.rc:87
msgid "Pending deletion; "
msgstr ""
#: comdlg32.rc:87
#: comdlg32.rc:88
msgid "Paper jam; "
msgstr ""
#: comdlg32.rc:88
#: comdlg32.rc:89
msgid "Out of paper; "
msgstr ""
#: comdlg32.rc:89
#: comdlg32.rc:90
msgid "Feed paper manual; "
msgstr ""
#: comdlg32.rc:90
#: comdlg32.rc:91
msgid "Paper problem; "
msgstr ""
#: comdlg32.rc:91
#: comdlg32.rc:92
msgid "Printer offline; "
msgstr ""
#: comdlg32.rc:92
#: comdlg32.rc:93
msgid "I/O Active; "
msgstr ""
#: comdlg32.rc:93
#: comdlg32.rc:94
msgid "Busy; "
msgstr ""
#: comdlg32.rc:94
#: comdlg32.rc:95
msgid "Printing; "
msgstr ""
#: comdlg32.rc:95
#: comdlg32.rc:96
msgid "Output tray is full; "
msgstr ""
#: comdlg32.rc:96
#: comdlg32.rc:97
msgid "Not available; "
msgstr ""
#: comdlg32.rc:97
#: comdlg32.rc:98
msgid "Waiting; "
msgstr ""
#: comdlg32.rc:98
#: comdlg32.rc:99
msgid "Processing; "
msgstr ""
#: comdlg32.rc:99
#: comdlg32.rc:100
msgid "Initializing; "
msgstr ""
#: comdlg32.rc:100
#: comdlg32.rc:101
msgid "Warming up; "
msgstr ""
#: comdlg32.rc:101
#: comdlg32.rc:102
msgid "Toner low; "
msgstr ""
#: comdlg32.rc:102
#: comdlg32.rc:103
msgid "No toner; "
msgstr ""
#: comdlg32.rc:103
#: comdlg32.rc:104
msgid "Page punt; "
msgstr ""
#: comdlg32.rc:104
#: comdlg32.rc:105
msgid "Interrupted by user; "
msgstr ""
#: comdlg32.rc:105
#: comdlg32.rc:106
msgid "Out of memory; "
msgstr ""
#: comdlg32.rc:106
#: comdlg32.rc:107
msgid "The printer door is open; "
msgstr ""
#: comdlg32.rc:107
#: comdlg32.rc:108
msgid "Print server unknown; "
msgstr ""
#: comdlg32.rc:108
#: comdlg32.rc:109
msgid "Power save mode; "
msgstr ""
#: comdlg32.rc:77
#: comdlg32.rc:78
msgid "Default Printer; "
msgstr ""
#: comdlg32.rc:78
#: comdlg32.rc:79
msgid "There are %d documents in the queue"
msgstr ""
#: comdlg32.rc:79
#: comdlg32.rc:80
msgid "Margins [inches]"
msgstr ""
#: comdlg32.rc:80
#: comdlg32.rc:81
msgid "Margins [mm]"
msgstr ""
#: comdlg32.rc:81 sane.rc:33
#: comdlg32.rc:82 sane.rc:33
msgctxt "unit: millimeters"
msgid "mm"
msgstr ""

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff