1c2c66affSColin FinckLANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
2c2c66affSColin Finck
3c2c66affSColin FinckSTRINGTABLE
4c2c66affSColin Finck{
51a6f523eSThomas Csovcsity    STRING_USAGE, "Usage:\n\
61a6f523eSThomas Csovcsity  REG [operation] [parameters]\n\n\
71a6f523eSThomas CsovcsitySupported operations:\n\
81a6f523eSThomas Csovcsity  ADD | COPY | DELETE | EXPORT | IMPORT | QUERY\n\n\
91a6f523eSThomas CsovcsityFor help on a specific operation, type:\n\
101a6f523eSThomas Csovcsity  REG [operation] /?\n\n"
111a6f523eSThomas Csovcsity
121a6f523eSThomas Csovcsity    STRING_ADD_USAGE, "REG ADD <key> [/v value_name | /ve] [/t type] [/s separator] [/d data] [/f]\n\n\
131a6f523eSThomas Csovcsity  Adds a key to the registry or adds a new value to a given registry key.\n\n\
141a6f523eSThomas Csovcsity  <key>\n\
151a6f523eSThomas Csovcsity     The registry key to add or, if either [/v] or [/ve] is specified,\n\
161a6f523eSThomas Csovcsity     the key in which to add the new registry data.\n\n\
171a6f523eSThomas Csovcsity     Format: ROOT\\Subkey\n\n\
181a6f523eSThomas Csovcsity     ROOT: A predefined registry key. This must be one of the following:\n\n\
191a6f523eSThomas Csovcsity         HKEY_LOCAL_MACHINE  | HKLM\n\
201a6f523eSThomas Csovcsity         HKEY_CURRENT_USER   | HKCU\n\
211a6f523eSThomas Csovcsity         HKEY_CLASSES_ROOT   | HKCR\n\
221a6f523eSThomas Csovcsity         HKEY_USERS          | HKU\n\
231a6f523eSThomas Csovcsity         HKEY_CURRENT_CONFIG | HKCC\n\n\
241a6f523eSThomas Csovcsity     Subkey: The full path to a registry key under a given ROOT key.\n\n\
251a6f523eSThomas Csovcsity  /v <value_name>\n\
261a6f523eSThomas Csovcsity     The name of the registry value to add.\n\n\
271a6f523eSThomas Csovcsity  /ve\n\
281a6f523eSThomas Csovcsity     Add an unnamed registry value. This option modifies the (Default)\n\
291a6f523eSThomas Csovcsity     registry value.\n\n\
301a6f523eSThomas Csovcsity  /t <type>\n\
311a6f523eSThomas Csovcsity     The type of data to add to the registry. If [/t] is specified,\n\
321a6f523eSThomas Csovcsity     <type> must be one of the following:\n\n\
331a6f523eSThomas Csovcsity         REG_SZ    | REG_MULTI_SZ | REG_EXPAND_SZ\n\
341a6f523eSThomas Csovcsity         REG_DWORD | REG_BINARY   | REG_NONE\n\n\
351a6f523eSThomas Csovcsity     If [/t] is not specified, the default data type is REG_SZ.\n\n\
361a6f523eSThomas Csovcsity  /s <separator>\n\
371a6f523eSThomas Csovcsity     The character used to separate strings in REG_MULTI_SZ data.\n\
381a6f523eSThomas Csovcsity     If [/s] is not specified, the default separator is \\0.\n\n\
391a6f523eSThomas Csovcsity  /d <data>\n\
401a6f523eSThomas Csovcsity     The data to add to the new registry value.\n\n\
411a6f523eSThomas Csovcsity  /f\n\
421a6f523eSThomas Csovcsity     Modify the registry without prompting for confirmation.\n\n"
431a6f523eSThomas Csovcsity
441a6f523eSThomas Csovcsity    STRING_DELETE_USAGE, "REG DELETE <key> [/v value_name | /ve | /va] [/f]\n\n\
451a6f523eSThomas Csovcsity  Deletes a registry key (including all subkeys and values), or deletes\n\
461a6f523eSThomas Csovcsity  one or more values from a given registry key.\n\n\
471a6f523eSThomas Csovcsity  <key>\n\
481a6f523eSThomas Csovcsity     The registry key to delete or, if one of [/v], [/ve] or [/va] is\n\
491a6f523eSThomas Csovcsity     specified, the registry key in which to delete one or more values.\n\n\
501a6f523eSThomas Csovcsity     Format: ROOT\\Subkey\n\n\
511a6f523eSThomas Csovcsity     ROOT: A predefined registry key. This must be one of the following:\n\n\
521a6f523eSThomas Csovcsity         HKEY_LOCAL_MACHINE  | HKLM\n\
531a6f523eSThomas Csovcsity         HKEY_CURRENT_USER   | HKCU\n\
541a6f523eSThomas Csovcsity         HKEY_CLASSES_ROOT   | HKCR\n\
551a6f523eSThomas Csovcsity         HKEY_USERS          | HKU\n\
561a6f523eSThomas Csovcsity         HKEY_CURRENT_CONFIG | HKCC\n\n\
571a6f523eSThomas Csovcsity     Subkey: The full path to a registry key under a given ROOT key.\n\n\
581a6f523eSThomas Csovcsity  /v <value_name>\n\
591a6f523eSThomas Csovcsity     The name of the registry value to delete.\n\n\
601a6f523eSThomas Csovcsity  /ve\n\
611a6f523eSThomas Csovcsity     Delete an unnamed registry value. This option deletes the (Default)\n\
621a6f523eSThomas Csovcsity     registry value.\n\n\
631a6f523eSThomas Csovcsity  /va\n\
641a6f523eSThomas Csovcsity     Delete all values from a registry key.\n\n\
651a6f523eSThomas Csovcsity  /f\n\
661a6f523eSThomas Csovcsity     Delete a registry key (including all subkeys and values) without\n\
671a6f523eSThomas Csovcsity     prompting for confirmation.\n\n"
681a6f523eSThomas Csovcsity
691a6f523eSThomas Csovcsity    STRING_QUERY_USAGE, "REG QUERY <key> [/v value_name | /ve] [/s]\n\n\
701a6f523eSThomas Csovcsity  Queries a specified registry key and lists all immediate subkeys, values\n\
711a6f523eSThomas Csovcsity  and data within that key. Use [/s] to recursively query each subkey.\n\n\
721a6f523eSThomas Csovcsity  <key>\n\
731a6f523eSThomas Csovcsity     The registry key to query.\n\n\
741a6f523eSThomas Csovcsity     Format: ROOT\\Subkey\n\n\
751a6f523eSThomas Csovcsity     ROOT: A predefined registry key. This must be one of the following:\n\n\
761a6f523eSThomas Csovcsity         HKEY_LOCAL_MACHINE  | HKLM\n\
771a6f523eSThomas Csovcsity         HKEY_CURRENT_USER   | HKCU\n\
781a6f523eSThomas Csovcsity         HKEY_CLASSES_ROOT   | HKCR\n\
791a6f523eSThomas Csovcsity         HKEY_USERS          | HKU\n\
801a6f523eSThomas Csovcsity         HKEY_CURRENT_CONFIG | HKCC\n\n\
811a6f523eSThomas Csovcsity     Subkey: The full path to a registry key under a given ROOT key.\n\n\
821a6f523eSThomas Csovcsity  /v <value_name>\n\
831a6f523eSThomas Csovcsity     The name of the registry value to query. If neither [/v] nor [/ve] is\n\
841a6f523eSThomas Csovcsity     specified, all values under <key> are listed.\n\n\
851a6f523eSThomas Csovcsity /ve\n\
861a6f523eSThomas Csovcsity     Query an unnamed registry value. This option queries the (Default)\n\
871a6f523eSThomas Csovcsity     registry value.\n\n\
881a6f523eSThomas Csovcsity  /s\n\
891a6f523eSThomas Csovcsity     List all registry entries under <key> and its subkeys.\n\n"
901a6f523eSThomas Csovcsity
91c2c66affSColin Finck    STRING_SUCCESS, "Operasjonen ble utført\n"
92c2c66affSColin Finck    STRING_INVALID_KEY, "Feil: Ugyldig nøkkelnavn\n"
93c2c66affSColin Finck    STRING_INVALID_CMDLINE, "Feil: Ugyldige parametere på kommandolinjen\n"
94c2c66affSColin Finck    STRING_NO_REMOTE, "Feil: Kan ikke legge til nøkler på ekstern maskin\n"
951a6f523eSThomas Csovcsity    STRING_VALUE_NONEXIST, "Feil: Systemet klarte ikke finne den angitte registernøkkelen eller -verdien\n"
96c2c66affSColin Finck    STRING_UNSUPPORTED_TYPE, "reg: Unsupported registry data type [%1]\n"
971a6f523eSThomas Csovcsity    STRING_MISSING_NUMBER, "reg: The option [/d] must be followed by a valid numeric value\n"
98c2c66affSColin Finck    STRING_MISSING_HEXDATA, "reg: The option [/d] must be followed by a valid hexadecimal value\n"
99c2c66affSColin Finck    STRING_UNHANDLED_TYPE, "reg: Unhandled registry data type [/t 0x%1!x!, /d %2]\n"
100c2c66affSColin Finck    STRING_OVERWRITE_VALUE, "The registry value '%1' already exists. Do you want to overwrite it?"
101*068fcd38SHermès Bélusca-Maïto    STRING_YES, "Y"
102*068fcd38SHermès Bélusca-Maïto    STRING_NO, "N"
103*068fcd38SHermès Bélusca-Maïto    STRING_ALL, "A"
104c2c66affSColin Finck    STRING_YESNO, " (Yes|No)"
1051a6f523eSThomas Csovcsity    STRING_YESNOALL, " (Yes|No|All)"
1061a6f523eSThomas Csovcsity    STRING_CANCELLED, "reg: The registry operation was cancelled\n"
107c2c66affSColin Finck    STRING_DEFAULT_VALUE, "(Default)"
108c2c66affSColin Finck    STRING_DELETE_VALUE, "Are you sure you want to delete the registry value '%1'?"
109c2c66affSColin Finck    STRING_DELETE_VALUEALL, "Are you sure you want to delete all registry values in '%1'?"
110c2c66affSColin Finck    STRING_DELETE_SUBKEY, "Are you sure you want to delete the registry key '%1'?"
111c2c66affSColin Finck    STRING_INVALID_STRING, "reg: The option [/d] must be followed by a valid string\n"
1121a6f523eSThomas Csovcsity    STRING_VALUEALL_FAILED, "reg: Unable to delete all registry values in '%1'\n"
113c2c66affSColin Finck    STRING_MATCHES_FOUND, "Search complete. Number of matches found: %1!d!\n"
114c2c66affSColin Finck    STRING_INVALID_SYNTAX, "reg: Invalid syntax. "
115c2c66affSColin Finck    STRING_INVALID_OPTION, "reg: Invalid option [%1]. "
116c2c66affSColin Finck    STRING_REG_HELP, "Type ""REG /?"" for help.\n"
117c2c66affSColin Finck    STRING_FUNC_HELP, "Type ""REG %1 /?"" for help.\n"
118c2c66affSColin Finck    STRING_VALUE_NOT_SET, "(value not set)"
1191a6f523eSThomas Csovcsity
1201a6f523eSThomas Csovcsity    STRING_IMPORT_USAGE, "REG IMPORT <file>\n\n\
1211a6f523eSThomas Csovcsity  Imports keys, values and data from a given file into the registry.\n\n\
1221a6f523eSThomas Csovcsity  <file>\n\
1231a6f523eSThomas Csovcsity     The name and path of the registry file to import.\n\n"
1241a6f523eSThomas Csovcsity
125c2c66affSColin Finck    STRING_FILE_NOT_FOUND, "reg: The file '%1' was not found.\n"
126c2c66affSColin Finck    STRING_ESCAPE_SEQUENCE, "reg: Unrecognized escape sequence [\\%1!c!]\n"
1271a6f523eSThomas Csovcsity
1281a6f523eSThomas Csovcsity    STRING_EXPORT_USAGE, "REG EXPORT <key> <file> [/y]\n\n\
1291a6f523eSThomas Csovcsity  Exports a specified registry key (including all subkeys and values)\n\
1301a6f523eSThomas Csovcsity  to a file.\n\n\
1311a6f523eSThomas Csovcsity  <key>\n\
1321a6f523eSThomas Csovcsity     The registry key to export.\n\n\
1331a6f523eSThomas Csovcsity     Format: ROOT\\Subkey\n\n\
1341a6f523eSThomas Csovcsity     ROOT: A predefined registry key. This must be one of the following:\n\n\
1351a6f523eSThomas Csovcsity         HKEY_LOCAL_MACHINE  | HKLM\n\
1361a6f523eSThomas Csovcsity         HKEY_CURRENT_USER   | HKCU\n\
1371a6f523eSThomas Csovcsity         HKEY_CLASSES_ROOT   | HKCR\n\
1381a6f523eSThomas Csovcsity         HKEY_USERS          | HKU\n\
1391a6f523eSThomas Csovcsity         HKEY_CURRENT_CONFIG | HKCC\n\n\
1401a6f523eSThomas Csovcsity     Subkey: The full path to a registry key under a given ROOT key.\n\n\
1411a6f523eSThomas Csovcsity  <file>\n\
1421a6f523eSThomas Csovcsity     The name and path of the registry file that will be created.\n\
1431a6f523eSThomas Csovcsity     This file must have a .reg extension.\n\n\
1441a6f523eSThomas Csovcsity  /y\n\
1451a6f523eSThomas Csovcsity     Overwrite <file> without prompting for confirmation.\n\n"
1461a6f523eSThomas Csovcsity
1471a6f523eSThomas Csovcsity    STRING_INVALID_SYSTEM_KEY, "reg: Invalid system key\n"
148b50acff2SAmine Khaldi    STRING_OVERWRITE_FILE, "The file '%1' already exists. Do you want to overwrite it?"
1491a6f523eSThomas Csovcsity    STRING_KEY_NONEXIST, "reg: Unable to find the specified registry key\n"
1501a6f523eSThomas Csovcsity    STRING_KEY_IMPORT_FAILED, "reg: Unable to import the registry key '%1'\n"
1511a6f523eSThomas Csovcsity
1521a6f523eSThomas Csovcsity    STRING_REG_VIEW_USAGE, "  /reg:32\n\
1531a6f523eSThomas Csovcsity     Access the registry using the 32-bit view.\n\n\
1541a6f523eSThomas Csovcsity  /reg:64\n\
1551a6f523eSThomas Csovcsity     Access the registry using the 64-bit view.\n\n"
1561a6f523eSThomas Csovcsity    STRING_ACCESS_DENIED, "reg: Unable to access or create the specified registry key\n"
1571a6f523eSThomas Csovcsity
1581a6f523eSThomas Csovcsity    STRING_COPY_USAGE, "REG COPY <key1> <key2> [/s] [/f]\n\n\
1591a6f523eSThomas Csovcsity  Copies the contents of a specified registry key to another location.\n\
1601a6f523eSThomas Csovcsity  By default, this operation only copies registry values. Use [/s] to\n\
1611a6f523eSThomas Csovcsity  recursively copy all subkeys and values.\n\n\
1621a6f523eSThomas Csovcsity  <key1>, <key2>\n\
1631a6f523eSThomas Csovcsity     Registry keys specifying the source (<key1>) and destination (<key2>)\n\
1641a6f523eSThomas Csovcsity     of the data. If <key2> does not exist, it is created.\n\n\
1651a6f523eSThomas Csovcsity     Format: ROOT\\Subkey\n\n\
1661a6f523eSThomas Csovcsity     ROOT: A predefined registry key. This must be one of the following:\n\n\
1671a6f523eSThomas Csovcsity         HKEY_LOCAL_MACHINE  | HKLM\n\
1681a6f523eSThomas Csovcsity         HKEY_CURRENT_USER   | HKCU\n\
1691a6f523eSThomas Csovcsity         HKEY_CLASSES_ROOT   | HKCR\n\
1701a6f523eSThomas Csovcsity         HKEY_USERS          | HKU\n\
1711a6f523eSThomas Csovcsity         HKEY_CURRENT_CONFIG | HKCC\n\n\
1721a6f523eSThomas Csovcsity     Subkey: The full path to a registry key under a given ROOT key.\n\n\
1731a6f523eSThomas Csovcsity  /s\n\
1741a6f523eSThomas Csovcsity     Copy all subkeys and values from <key1> to <key2>.\n\n\
1751a6f523eSThomas Csovcsity  /f\n\
1761a6f523eSThomas Csovcsity     Overwrite all registry data in <key2> without prompting for confirmation.\n\
1771a6f523eSThomas Csovcsity     This option does not modify subkeys and values that only exist in <key2>.\n\n"
1781a6f523eSThomas Csovcsity
1791a6f523eSThomas Csovcsity    STRING_COPY_SRC_DEST_SAME, "reg: The source and destination keys cannot be the same\n"
1801a6f523eSThomas Csovcsity    STRING_COPY_CONFIRM, "The value '%1\\%2' already exists in the destination key. Do you want to overwrite it?"
181c2c66affSColin Finck}
182