-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[misc] add some more Windows edition names
* Closes #2380 * Also fix a typo in the Norwegian translation, with thanks to @Legendarion * Closes #2397
- Loading branch information
Showing
4 changed files
with
20 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ msgstr "" | |
"Project-Id-Version: 3.22\n" | ||
"Report-Msgid-Bugs-To: [email protected]\n" | ||
"POT-Creation-Date: 2023-04-17 13:44+0100\n" | ||
"PO-Revision-Date: 2023-04-17 13:46+0100\n" | ||
"PO-Revision-Date: 2024-01-10 12:20+0000\n" | ||
"Last-Translator: \n" | ||
"Language-Team: \n" | ||
"Language: nb_NO\n" | ||
|
@@ -13,7 +13,7 @@ msgstr "" | |
"X-Poedit-SourceCharset: UTF-8\n" | ||
"X-Rufus-LanguageName: Norwegian (Norsk)\n" | ||
"X-Rufus-LCID: 0x0414\n" | ||
"X-Generator: Poedit 3.2.2\n" | ||
"X-Generator: Poedit 3.4.2\n" | ||
|
||
#. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT | ||
msgid "Drive Properties" | ||
|
@@ -803,7 +803,7 @@ msgstr "" | |
|
||
#. • MSG_117 | ||
msgid "Standard Windows installation" | ||
msgstr "Standard Windows instalasjon" | ||
msgstr "Standard Windows installasjon" | ||
|
||
#. • MSG_118 | ||
#. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* Rufus: The Reliable USB Formatting Utility | ||
* Standard Windows function calls | ||
* Copyright © 2013-2023 Pete Batard <[email protected]> | ||
* Copyright © 2013-2024 Pete Batard <[email protected]> | ||
* | ||
* 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 | ||
|
@@ -302,10 +302,18 @@ static const char* GetEdition(DWORD ProductType) | |
case 0x000000A5: return "Pro for Education N"; | ||
case 0x000000AB: return "Enterprise G"; // I swear Microsoft are just making up editions... | ||
case 0x000000AC: return "Enterprise G N"; | ||
case 0x000000B2: return "Cloud"; | ||
case 0x000000B3: return "Cloud N"; | ||
case 0x000000B6: return "Home OS"; | ||
case 0x000000B7: return "Cloud E"; | ||
case 0x000000B8: return "Cloud E N"; | ||
case 0x000000B7: case 0x000000CB: return "Cloud E"; | ||
case 0x000000B9: return "IoT OS"; | ||
case 0x000000BA: case 0x000000CA: return "Cloud E N"; | ||
case 0x000000BB: return "IoT Edge OS"; | ||
case 0x000000BC: return "IoT Enterprise"; | ||
case 0x000000BD: return "Lite"; | ||
case 0x000000BF: return "IoT Enterprise S"; | ||
case 0x000000C0: case 0x000000C2: case 0x000000C3: case 0x000000C4: case 0x000000C5: case 0x000000C6: return "XBox"; | ||
case 0x000000C7: case 0x000000C8: case 0x00000196: case 0x00000197: case 0x00000198: return "Azure Server"; | ||
case 0xABCDABCD: return "(Unlicensed)"; | ||
default: | ||
static_sprintf(unknown_edition_str, "(Unknown Edition 0x%02X)", (uint32_t)ProductType); | ||
|