mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
update swedish .rc and rename it from sw to sv, remove the german part in swedish rc. all swedish rc should have sv,
svn path=/trunk/; revision=16580
This commit is contained in:
parent
97d546c77a
commit
03a11e092f
6 changed files with 5 additions and 44 deletions
|
@ -15,45 +15,6 @@
|
|||
/////////////////////////////////////////////////////////////////////////////
|
||||
#undef APSTUDIO_READONLY_SYMBOLS
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// German (Germany) resources
|
||||
|
||||
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_DEU)
|
||||
#ifdef _WIN32
|
||||
LANGUAGE LANG_GERMAN, SUBLANG_GERMAN
|
||||
#pragma code_page(1252)
|
||||
#endif //_WIN32
|
||||
|
||||
#ifdef APSTUDIO_INVOKED
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// TEXTINCLUDE
|
||||
//
|
||||
|
||||
1 TEXTINCLUDE DISCARDABLE
|
||||
BEGIN
|
||||
"resource.h\0"
|
||||
END
|
||||
|
||||
2 TEXTINCLUDE DISCARDABLE
|
||||
BEGIN
|
||||
"#include ""resource.h""\r\n"
|
||||
"#define APSTUDIO_HIDDEN_SYMBOLS\r\n"
|
||||
"#include ""windows.h""\r\n"
|
||||
"#undef APSTUDIO_HIDDEN_SYMBOLS\r\n"
|
||||
"\0"
|
||||
END
|
||||
|
||||
3 TEXTINCLUDE DISCARDABLE
|
||||
BEGIN
|
||||
"\r\n"
|
||||
"\0"
|
||||
END
|
||||
|
||||
#endif // APSTUDIO_INVOKED
|
||||
|
||||
#endif // German (Germany) resources
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -460,7 +421,7 @@ BEGIN
|
|||
IDS_NOTIFY_AUTOHIDE "dölj automatiskt"
|
||||
IDS_SHOW_HIDDEN_ICONS "Visa dolda ikoner"
|
||||
IDS_HIDE_ICONS "Dölj ikoner"
|
||||
IDS_TERMINATE "Logga ut"
|
||||
IDS_TERMINATE "Avsluta Explorer"
|
||||
END
|
||||
|
||||
STRINGTABLE DISCARDABLE
|
|
@ -104,7 +104,7 @@ BEGIN
|
|||
"#include ""explorer-en.rc""\r\n"
|
||||
"#include ""explorer-de.rc""\r\n"
|
||||
"#include ""explorer-es.rc""\r\n"
|
||||
"#include ""explorer-sw.rc""\r\n"
|
||||
"#include ""explorer-sv.rc""\r\n"
|
||||
"#include ""explorer-pt.rc""\r\n"
|
||||
"#include ""explorer-cz.rc""\r\n"
|
||||
"#include ""explorer-ro.rc""\r\n"
|
||||
|
@ -187,7 +187,7 @@ END
|
|||
#include "explorer-de.rc"
|
||||
#include "explorer-es.rc"
|
||||
#include "explorer-fr.rc"
|
||||
#include "explorer-sw.rc"
|
||||
#include "explorer-sv.rc"
|
||||
#include "explorer-pt.rc"
|
||||
#include "explorer-cz.rc"
|
||||
#include "explorer-ro.rc"
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 27 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
Binary file not shown.
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 10 KiB |
|
@ -1795,14 +1795,14 @@ void StartMenuRoot::Paint(PaintCanvas& canvas)
|
|||
ClientRect clnt(_hwnd);
|
||||
int h = min(_logo_size.cy, clnt.bottom);
|
||||
|
||||
RECT rect = {0, 0, _logo_size.cx, clnt.bottom-h};
|
||||
RECT rect = {0, clnt.bottom-h, _logo_size.cx, clnt.bottom};
|
||||
HBRUSH hbr = CreateSolidBrush(GetPixel(mem_dc, 0, 0));
|
||||
FillRect(canvas, &rect, hbr);
|
||||
DeleteObject(hbr);
|
||||
|
||||
PatBlt(canvas, _logo_size.cx, 0, 1, clnt.bottom, WHITENESS);
|
||||
|
||||
BitBlt(canvas, 0, clnt.bottom-h, _logo_size.cx, h, mem_dc, 0, 0, SRCCOPY);
|
||||
BitBlt(canvas, 0, clnt.bottom, _logo_size.cx, h, mem_dc, 0, clnt.bottom-h, SRCCOPY);
|
||||
|
||||
super::Paint(canvas);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue