https://git.reactos.org/?p=reactos.git;a=commitdiff;h=57eb2a6bf469383848a55…
commit 57eb2a6bf469383848a559feedc1eed7fc13dd5c
Author: Doug Lyons <douglyons(a)douglyons.com>
AuthorDate: Mon Feb 13 08:27:40 2023 -0600
Commit: GitHub <noreply(a)github.com>
CommitDate: Mon Feb 13 15:27:40 2023 +0100
[NTUSER] Missing "X" on "Folder" pane when Right Click > Explore from Desktop icons & Rapps toolbar errors (#5068)
Fix for right-clicking on 'My Computer' and selecting 'explore' and there is no 'X' for the title bar in the Folders pane
Also fixes Rapps missing toolbar combo box and edit box controls that were not displayed.
This is a complete revert of #4995 (commit 7866eb2) while still retaining its fixes.
CORE-18830, CORE-18817
Co-authored-by: I_Kill_Bugs
---
win32ss/user/ntuser/winpos.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/win32ss/user/ntuser/winpos.c b/win32ss/user/ntuser/winpos.c
index c0251ccc6a5..f95da850077 100644
--- a/win32ss/user/ntuser/winpos.c
+++ b/win32ss/user/ntuser/winpos.c
@@ -1979,7 +1979,7 @@ co_WinPosSetWindowPos(
Window->state |= WNDS_SENDNCPAINT;
}
- if (!(WinPos.flags & SWP_NOREDRAW))
+ if (!(WinPos.flags & SWP_NOREDRAW) && ((WinPos.flags & SWP_AGG_STATUSFLAGS) != SWP_AGG_NOPOSCHANGE))
{
/* Determine the new visible region */
VisAfter = VIS_ComputeVisibleRegion(Window, FALSE, FALSE,
@@ -2100,8 +2100,7 @@ co_WinPosSetWindowPos(
}
/* We need to redraw what wasn't visible before or force a redraw */
- if ((WinPos.flags & (SWP_FRAMECHANGED | SWP_SHOWWINDOW)) ||
- (((WinPos.flags & SWP_AGG_NOGEOMETRYCHANGE) != SWP_AGG_NOGEOMETRYCHANGE) && VisAfter != NULL))
+ if (VisAfter != NULL)
{
PREGION DirtyRgn = IntSysCreateRectpRgn(0, 0, 0, 0);
if (DirtyRgn)
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=a050be089509335047128…
commit a050be0895093350471280c93cf5dd047a25b2c8
Author: Doug Lyons <douglyons(a)douglyons.com>
AuthorDate: Sun Feb 12 12:17:55 2023 -0600
Commit: GitHub <noreply(a)github.com>
CommitDate: Sun Feb 12 19:17:55 2023 +0100
Fix Wine Internet Explorer Print hang (#5064)
When using wine internet explorer it crashes if you click print even if you click cancel, this fixes that issue.
nsIWebBrowserPrint_Print apparently causes issues for unknown reasons.
JIRA issue: CORE-16884
By returning S_OK print doesn't cause a crash.
Use ERR and S_OK return before hitting nsIWebBrowserPrint_Print
---
dll/win32/mshtml/olecmd.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/dll/win32/mshtml/olecmd.c b/dll/win32/mshtml/olecmd.c
index 96b3f4bb6b7..6c419f8761f 100644
--- a/dll/win32/mshtml/olecmd.c
+++ b/dll/win32/mshtml/olecmd.c
@@ -241,6 +241,13 @@ static HRESULT exec_print(HTMLDocument *This, DWORD nCmdexecopt, VARIANT *pvaIn,
return S_OK;
}
+#ifdef __REACTOS__
+ // returning here fixes CORE-16884. Maybe use this until printing works.
+ ERR("Aborting print, to work around CORE-16884\n");
+ nsIWebBrowserPrint_Release(nsprint);
+ return S_OK;
+#endif
+
nsres = nsIWebBrowserPrint_GetGlobalPrintSettings(nsprint, &settings);
if(NS_FAILED(nsres))
ERR("GetCurrentPrintSettings failed: %08x\n", nsres);
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=a38d19ebce7eae86a4931…
commit a38d19ebce7eae86a49311611115cb4c9de74dcc
Author: Joachim Henze <Joachim.Henze(a)reactos.org>
AuthorDate: Sat Feb 11 21:35:57 2023 +0100
Commit: Joachim Henze <Joachim.Henze(a)reactos.org>
CommitDate: Sat Feb 11 21:35:57 2023 +0100
[BROWSEUI] Update de-DE.rc German translation
German accelerator for "&Datei" collided with "A&dresse".
Fix by switching to what MS uses in german XPSP3.
see the before-state with the [BROWSEUI] collision here:
https://jira.reactos.org/secure/attachment/65116/ros.png
Please note that in current master head the accelerators in
[BROWSEUI] filebrowser are generally broken for other reasons.
So this commit will not entirely fix CORE-18824
Also update to new-style header (inspired by es-ES.rc) and
https://reactos.org/wiki/Coding_Style
and add a missing translation.
---
dll/win32/browseui/lang/de-DE.rc | 23 ++++++-----------------
1 file changed, 6 insertions(+), 17 deletions(-)
diff --git a/dll/win32/browseui/lang/de-DE.rc b/dll/win32/browseui/lang/de-DE.rc
index 2670095c0e8..02020fd4843 100644
--- a/dll/win32/browseui/lang/de-DE.rc
+++ b/dll/win32/browseui/lang/de-DE.rc
@@ -1,19 +1,8 @@
/*
- * Copyright 2009 Andrew Hill
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ * PROJECT: ReactOS Win32 BrowseUI
+ * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
+ * PURPOSE: German resource file
+ * TRANSLATORS: Copyright 2023 Joachim Henze <Joachim.Henze(a)reactos.org>
*/
LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
@@ -306,7 +295,7 @@ END
STRINGTABLE
BEGIN
IDS_SEARCHLABEL "Suchen"
- IDS_ADDRESSBANDLABEL "A&dresse"
+ IDS_ADDRESSBANDLABEL "Adre&sse"
END
STRINGTABLE
@@ -360,5 +349,5 @@ END
STRINGTABLE
BEGIN
IDS_PARSE_ADDR_ERR_TITLE "ReactOS Explorer"
- IDS_PARSE_ADDR_ERR_TEXT "ReactOS Explorer cannot find '%1'. Check the spelling and try again."
+ IDS_PARSE_ADDR_ERR_TEXT "'%1' kann nicht gefunden werden."
END
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=cc54ecd779eeb178ceeed…
commit cc54ecd779eeb178ceeed1777cb1776f50c43593
Author: Joachim Henze <joachim.henze(a)reactos.org>
AuthorDate: Sat Feb 11 21:09:47 2023 +0100
Commit: GitHub <noreply(a)github.com>
CommitDate: Sat Feb 11 21:09:47 2023 +0100
[SYSSETUP] Fix a space-typo in IDS_WZD_PASSWORDEMPTY for *.rc (#5049)
Also update any existing old-school-headers to more compact newstyle.
---
dll/win32/syssetup/lang/da-DK.rc | 23 ++++++-----------------
dll/win32/syssetup/lang/el-GR.rc | 2 +-
dll/win32/syssetup/lang/en-GB.rc | 2 +-
dll/win32/syssetup/lang/en-US.rc | 23 ++++++-----------------
dll/win32/syssetup/lang/fi-FI.rc | 23 ++++++-----------------
dll/win32/syssetup/lang/he-IL.rc | 2 +-
dll/win32/syssetup/lang/it-IT.rc | 2 +-
dll/win32/syssetup/lang/lt-LT.rc | 23 ++++++-----------------
dll/win32/syssetup/lang/nl-NL.rc | 2 +-
dll/win32/syssetup/lang/sq-AL.rc | 23 ++++++-----------------
dll/win32/syssetup/lang/sv-SE.rc | 23 ++++++-----------------
dll/win32/syssetup/lang/th-TH.rc | 23 ++++++-----------------
dll/win32/syssetup/lang/uk-UA.rc | 4 ++--
13 files changed, 49 insertions(+), 126 deletions(-)
diff --git a/dll/win32/syssetup/lang/da-DK.rc b/dll/win32/syssetup/lang/da-DK.rc
index 68dd8941f2a..0c76f80322f 100644
--- a/dll/win32/syssetup/lang/da-DK.rc
+++ b/dll/win32/syssetup/lang/da-DK.rc
@@ -1,20 +1,9 @@
/*
- * Copyright (C) 2004 Filip Navara
- * Copyright (C) 2004 Eric Kohl
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * PROJECT: ReactOS System Setup Library
+ * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
+ * PURPOSE: Danish resource file
+ * TRANSLATORS: Copyright 2004 Filip Navara
+ * Copyright 2004 Eric Kohl
*/
LANGUAGE LANG_DANISH, SUBLANG_DEFAULT
@@ -232,7 +221,7 @@ BEGIN
IDS_WZD_NAME "Setup cannot continue until you enter your name."
IDS_WZD_SETCOMPUTERNAME "Setup failed to set the computer name."
IDS_WZD_COMPUTERNAME "Setup cannot continue until you enter the name of your computer."
- IDS_WZD_PASSWORDEMPTY "You must enter a password !"
+ IDS_WZD_PASSWORDEMPTY "You must enter a password!"
IDS_WZD_PASSWORDMATCH "The passwords you entered do not match. Please enter the desired password again."
IDS_WZD_PASSWORDCHAR "The password you entered contains invalid characters. Please enter a cleaned password."
IDS_WZD_LOCALTIME "Setup was unable to set the local time."
diff --git a/dll/win32/syssetup/lang/el-GR.rc b/dll/win32/syssetup/lang/el-GR.rc
index 2bf8ae5c3f6..758afb2ebc2 100644
--- a/dll/win32/syssetup/lang/el-GR.rc
+++ b/dll/win32/syssetup/lang/el-GR.rc
@@ -213,7 +213,7 @@ BEGIN
IDS_WZD_NAME "Για να συνεχίσει η εγκατάσταση, πρέπει να εισάγετε το όνομά σας."
IDS_WZD_SETCOMPUTERNAME "Η εγκατάσταση απέτυχε να ορίσει το όνομα του υπολογιστή σας."
IDS_WZD_COMPUTERNAME "Για να συνεχίσει η εγκατάσταση, πρέπει να εισάγετε το όνομά του υπολογιστή."
- IDS_WZD_PASSWORDEMPTY "Πρέπει να εισάγετε έναν κωδικό πρόσβασης !"
+ IDS_WZD_PASSWORDEMPTY "Πρέπει να εισάγετε έναν κωδικό πρόσβασης!"
IDS_WZD_PASSWORDMATCH "Οι κωδικοί πρόσβασης που εισαγάγατε δεν είναι ίδιοι. Εισάγετε ξανά τον κωδικό προσβασης."
IDS_WZD_PASSWORDCHAR "Ο κωδικός πρόσβασης που εισαγάγατε περιέχει μη έγκυρους χαρακτήρες. Παρακαλώ εισάγετε έναν άλλο κωδικό πρόσβασης."
IDS_WZD_LOCALTIME "Η εγκατάσταση απέτυχε να ρυθμίσει την ώρα του υπολογιστή σας."
diff --git a/dll/win32/syssetup/lang/en-GB.rc b/dll/win32/syssetup/lang/en-GB.rc
index 645db548e77..cac3c294b4f 100644
--- a/dll/win32/syssetup/lang/en-GB.rc
+++ b/dll/win32/syssetup/lang/en-GB.rc
@@ -213,7 +213,7 @@ BEGIN
IDS_WZD_NAME "Setup cannot continue until you enter your name."
IDS_WZD_SETCOMPUTERNAME "Setup failed to set the computer name."
IDS_WZD_COMPUTERNAME "Setup cannot continue until you enter the name of your computer."
- IDS_WZD_PASSWORDEMPTY "You must enter a password !"
+ IDS_WZD_PASSWORDEMPTY "You must enter a password!"
IDS_WZD_PASSWORDMATCH "The passwords you entered do not match. Please enter the desired password again."
IDS_WZD_PASSWORDCHAR "The password you entered contains invalid characters. Please enter a cleaned password."
IDS_WZD_LOCALTIME "Setup was unable to set the local time."
diff --git a/dll/win32/syssetup/lang/en-US.rc b/dll/win32/syssetup/lang/en-US.rc
index 153bb0be53b..c4606839be8 100644
--- a/dll/win32/syssetup/lang/en-US.rc
+++ b/dll/win32/syssetup/lang/en-US.rc
@@ -1,20 +1,9 @@
/*
- * Copyright (C) 2004 Filip Navara
- * Copyright (C) 2004 Eric Kohl
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * PROJECT: ReactOS System Setup Library
+ * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
+ * PURPOSE: English resource file
+ * TRANSLATORS: Copyright 2004 Filip Navara
+ * Copyright 2004 Eric Kohl
*/
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
@@ -232,7 +221,7 @@ BEGIN
IDS_WZD_NAME "Setup cannot continue until you enter your name."
IDS_WZD_SETCOMPUTERNAME "Setup failed to set the computer name."
IDS_WZD_COMPUTERNAME "Setup cannot continue until you enter the name of your computer."
- IDS_WZD_PASSWORDEMPTY "You must enter a password !"
+ IDS_WZD_PASSWORDEMPTY "You must enter a password!"
IDS_WZD_PASSWORDMATCH "The passwords you entered do not match. Please enter the desired password again."
IDS_WZD_PASSWORDCHAR "The password you entered contains invalid characters. Please enter a cleaned password."
IDS_WZD_LOCALTIME "Setup was unable to set the local time."
diff --git a/dll/win32/syssetup/lang/fi-FI.rc b/dll/win32/syssetup/lang/fi-FI.rc
index 3530dac77e2..277d6c66f9f 100644
--- a/dll/win32/syssetup/lang/fi-FI.rc
+++ b/dll/win32/syssetup/lang/fi-FI.rc
@@ -1,20 +1,9 @@
/*
- * Copyright (C) 2004 Filip Navara
- * Copyright (C) 2004 Eric Kohl
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * PROJECT: ReactOS System Setup Library
+ * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
+ * PURPOSE: English resource file
+ * TRANSLATORS: Copyright 2004 Filip Navara
+ * Copyright 2004 Eric Kohl
*/
LANGUAGE LANG_FINNISH, SUBLANG_DEFAULT
@@ -232,7 +221,7 @@ BEGIN
IDS_WZD_NAME "Setup cannot continue until you enter your name."
IDS_WZD_SETCOMPUTERNAME "Setup failed to set the computer name."
IDS_WZD_COMPUTERNAME "Setup cannot continue until you enter the name of your computer."
- IDS_WZD_PASSWORDEMPTY "You must enter a password !"
+ IDS_WZD_PASSWORDEMPTY "You must enter a password!"
IDS_WZD_PASSWORDMATCH "The passwords you entered do not match. Please enter the desired password again."
IDS_WZD_PASSWORDCHAR "The password you entered contains invalid characters. Please enter a cleaned password."
IDS_WZD_LOCALTIME "Setup was unable to set the local time."
diff --git a/dll/win32/syssetup/lang/he-IL.rc b/dll/win32/syssetup/lang/he-IL.rc
index 42a9e548d6b..88b9575c2e6 100644
--- a/dll/win32/syssetup/lang/he-IL.rc
+++ b/dll/win32/syssetup/lang/he-IL.rc
@@ -213,7 +213,7 @@ BEGIN
IDS_WZD_NAME "Setup cannot continue until you enter your name."
IDS_WZD_SETCOMPUTERNAME "Setup failed to set the computer name."
IDS_WZD_COMPUTERNAME "Setup cannot continue until you enter the name of your computer."
- IDS_WZD_PASSWORDEMPTY "You must enter a password !"
+ IDS_WZD_PASSWORDEMPTY "You must enter a password!"
IDS_WZD_PASSWORDMATCH "The passwords you entered do not match. Please enter the desired password again."
IDS_WZD_PASSWORDCHAR "The password you entered contains invalid characters. Please enter a cleaned password."
IDS_WZD_LOCALTIME "Setup was unable to set the local time."
diff --git a/dll/win32/syssetup/lang/it-IT.rc b/dll/win32/syssetup/lang/it-IT.rc
index 0af48b7ad99..d3c16f093e4 100644
--- a/dll/win32/syssetup/lang/it-IT.rc
+++ b/dll/win32/syssetup/lang/it-IT.rc
@@ -213,7 +213,7 @@ BEGIN
IDS_WZD_NAME "La procedura di installazione non può proseguire se non indicate il vostro nome."
IDS_WZD_SETCOMPUTERNAME "La procedura di installazione non ha potuto impostare il nome del computer."
IDS_WZD_COMPUTERNAME "La procedura di installazione non può proseguire se non indicate il nome del computer."
- IDS_WZD_PASSWORDEMPTY "E' obbligatorio impostare la password !"
+ IDS_WZD_PASSWORDEMPTY "E' obbligatorio impostare la password!"
IDS_WZD_PASSWORDMATCH "Le due password digitate non corrispondono. Digitate di nuovo le password."
IDS_WZD_PASSWORDCHAR "La password contiene caratteri non validi. Digitate una password diversa."
IDS_WZD_LOCALTIME "La procedura di installazione non ha potuto impostare l'ora locale."
diff --git a/dll/win32/syssetup/lang/lt-LT.rc b/dll/win32/syssetup/lang/lt-LT.rc
index 4b91d334e95..a5152697c96 100644
--- a/dll/win32/syssetup/lang/lt-LT.rc
+++ b/dll/win32/syssetup/lang/lt-LT.rc
@@ -1,20 +1,9 @@
/*
- * Copyright (C) 2004 Filip Navara
- * Copyright (C) 2004 Eric Kohl
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * PROJECT: ReactOS System Setup Library
+ * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
+ * PURPOSE: Lithuanian resource file
+ * TRANSLATORS: Copyright 2004 Filip Navara
+ * Copyright 2004 Eric Kohl
*/
LANGUAGE LANG_LITHUANIAN, SUBLANG_DEFAULT
@@ -232,7 +221,7 @@ BEGIN
IDS_WZD_NAME "Setup cannot continue until you enter your name."
IDS_WZD_SETCOMPUTERNAME "Setup failed to set the computer name."
IDS_WZD_COMPUTERNAME "Setup cannot continue until you enter the name of your computer."
- IDS_WZD_PASSWORDEMPTY "You must enter a password !"
+ IDS_WZD_PASSWORDEMPTY "You must enter a password!"
IDS_WZD_PASSWORDMATCH "The passwords you entered do not match. Please enter the desired password again."
IDS_WZD_PASSWORDCHAR "The password you entered contains invalid characters. Please enter a cleaned password."
IDS_WZD_LOCALTIME "Setup was unable to set the local time."
diff --git a/dll/win32/syssetup/lang/nl-NL.rc b/dll/win32/syssetup/lang/nl-NL.rc
index 19bebcee246..dc68051a598 100644
--- a/dll/win32/syssetup/lang/nl-NL.rc
+++ b/dll/win32/syssetup/lang/nl-NL.rc
@@ -213,7 +213,7 @@ BEGIN
IDS_WZD_NAME "Setup cannot continue until you enter your name."
IDS_WZD_SETCOMPUTERNAME "Setup failed to set the computer name."
IDS_WZD_COMPUTERNAME "Setup cannot continue until you enter the name of your computer."
- IDS_WZD_PASSWORDEMPTY "You must enter a password !"
+ IDS_WZD_PASSWORDEMPTY "You must enter a password!"
IDS_WZD_PASSWORDMATCH "The passwords you entered do not match. Please enter the desired password again."
IDS_WZD_PASSWORDCHAR "The password you entered contains invalid characters. Please enter a cleaned password."
IDS_WZD_LOCALTIME "Setup was unable to set the local time."
diff --git a/dll/win32/syssetup/lang/sq-AL.rc b/dll/win32/syssetup/lang/sq-AL.rc
index 1bdd0c1242f..7d339527e0f 100644
--- a/dll/win32/syssetup/lang/sq-AL.rc
+++ b/dll/win32/syssetup/lang/sq-AL.rc
@@ -1,20 +1,9 @@
/*
- * Copyright (C) 2004 Filip Navara
- * Copyright (C) 2004 Eric Kohl
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * PROJECT: ReactOS System Setup Library
+ * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
+ * PURPOSE: Albanian resource file
+ * TRANSLATORS: Copyright 2004 Filip Navara
+ * Copyright 2004 Eric Kohl
*/
LANGUAGE LANG_ALBANIAN, SUBLANG_NEUTRAL
@@ -232,7 +221,7 @@ BEGIN
IDS_WZD_NAME "Ndërtimi nuk mund të vazhdojë deri sa të shkruani emrin tuaj."
IDS_WZD_SETCOMPUTERNAME "Ndërtuesi dështoj për të vendosur emrin e kompjuterit."
IDS_WZD_COMPUTERNAME "Ndërtuesi nuk mund të vazhdojë deri sa të shkruani emrin e kompjuterit tuaj."
- IDS_WZD_PASSWORDEMPTY "Ju duhet të fusni një fjalëkalim !"
+ IDS_WZD_PASSWORDEMPTY "Ju duhet të fusni një fjalëkalim!"
IDS_WZD_PASSWORDMATCH "Fjalëkalimet që shkruat nuk përputhet. Ju lutem shkruani fjalëkalimin e dëshiruar përsëri."
IDS_WZD_PASSWORDCHAR "Fjalëkalimi që dhatë përmban shenja të pavlefshme. Ju lutemi shkruani një fjalëkalim të qartë."
IDS_WZD_LOCALTIME "Ndërtuesi nuk ishte në gjendje për të vendosur kohën lokale."
diff --git a/dll/win32/syssetup/lang/sv-SE.rc b/dll/win32/syssetup/lang/sv-SE.rc
index ada1f682b8e..ca4f4eb697f 100644
--- a/dll/win32/syssetup/lang/sv-SE.rc
+++ b/dll/win32/syssetup/lang/sv-SE.rc
@@ -1,20 +1,9 @@
/*
- * Copyright (C) 2004 Filip Navara
- * Copyright (C) 2004 Eric Kohl
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * PROJECT: ReactOS System Setup Library
+ * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
+ * PURPOSE: Swedish resource file
+ * TRANSLATORS: Copyright 2004 Filip Navara
+ * Copyright 2004 Eric Kohl
*/
LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
@@ -232,7 +221,7 @@ BEGIN
IDS_WZD_NAME "Setup cannot continue until you enter your name."
IDS_WZD_SETCOMPUTERNAME "Setup failed to set the computer name."
IDS_WZD_COMPUTERNAME "Setup cannot continue until you enter the name of your computer."
- IDS_WZD_PASSWORDEMPTY "You must enter a password !"
+ IDS_WZD_PASSWORDEMPTY "You must enter a password!"
IDS_WZD_PASSWORDMATCH "The passwords you entered do not match. Please enter the desired password again."
IDS_WZD_PASSWORDCHAR "The password you entered contains invalid characters. Please enter a cleaned password."
IDS_WZD_LOCALTIME "Setup was unable to set the local time."
diff --git a/dll/win32/syssetup/lang/th-TH.rc b/dll/win32/syssetup/lang/th-TH.rc
index 85e0f6c3d90..33ae67d0d12 100644
--- a/dll/win32/syssetup/lang/th-TH.rc
+++ b/dll/win32/syssetup/lang/th-TH.rc
@@ -1,20 +1,9 @@
/*
- * Copyright (C) 2004 Filip Navara
- * Copyright (C) 2004 Eric Kohl
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * PROJECT: ReactOS System Setup Library
+ * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
+ * PURPOSE: Thai resource file
+ * TRANSLATORS: Copyright 2004 Filip Navara
+ * Copyright 2004 Eric Kohl
*/
LANGUAGE LANG_THAI, SUBLANG_DEFAULT
@@ -232,7 +221,7 @@ BEGIN
IDS_WZD_NAME "Setup cannot continue until you enter your name."
IDS_WZD_SETCOMPUTERNAME "Setup failed to set the computer name."
IDS_WZD_COMPUTERNAME "Setup cannot continue until you enter the name of your computer."
- IDS_WZD_PASSWORDEMPTY "You must enter a password !"
+ IDS_WZD_PASSWORDEMPTY "You must enter a password!"
IDS_WZD_PASSWORDMATCH "The passwords you entered do not match. Please enter the desired password again."
IDS_WZD_PASSWORDCHAR "The password you entered contains invalid characters. Please enter a cleaned password."
IDS_WZD_LOCALTIME "Setup was unable to set the local time."
diff --git a/dll/win32/syssetup/lang/uk-UA.rc b/dll/win32/syssetup/lang/uk-UA.rc
index b06863d0c87..c3e57b46e63 100644
--- a/dll/win32/syssetup/lang/uk-UA.rc
+++ b/dll/win32/syssetup/lang/uk-UA.rc
@@ -1,7 +1,7 @@
/*
* PROJECT: ReactOS System Setup Library
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
- * PURPOSE: Ukraianian resource file
+ * PURPOSE: Ukrainian resource file
* TRANSLATORS: Copyright 2007 Artem Reznikov <temarez(a)yandex.ru>
* Copyright 2010-2011 Igor Paliychuk <mansonigor(a)gmail.com>
* Copyright 2018-2021 Yaroslav Kibysh <yanet.prod(a)gmail.com>
@@ -222,7 +222,7 @@ BEGIN
IDS_WZD_NAME "Для продовження встановлення необхідно ввести ваше ім'я."
IDS_WZD_SETCOMPUTERNAME "Програмі інсталяції не вдалося встановити ім'я комп'ютера."
IDS_WZD_COMPUTERNAME "Для продовження встановлення необхідно ввести ім'я комп'ютера."
- IDS_WZD_PASSWORDEMPTY "Ви маєте ввести пароль !"
+ IDS_WZD_PASSWORDEMPTY "Ви маєте ввести пароль!"
IDS_WZD_PASSWORDMATCH "Паролі, які ви ввели, не співпадають. Будь ласка введіть потрібний пароль знову."
IDS_WZD_PASSWORDCHAR "Пароль, який ви ввели, містить заборонені символи. Будь ласка введіть інший пароль."
IDS_WZD_LOCALTIME "Програмі інсталяції не вдалося встановити місцевий час."