mirror of
https://github.com/joel16/NX-Shell.git
synced 2024-11-23 03:39:49 +00:00
87 lines
1.9 KiB
C++
87 lines
1.9 KiB
C++
#pragma once
|
|
|
|
namespace Lang {
|
|
typedef enum {
|
|
// Prompt/Message buttons
|
|
ButtonOK = 0,
|
|
ButtonCancel,
|
|
|
|
// Options dialog
|
|
OptionsTitle,
|
|
OptionsSelectAll,
|
|
OptionsClearAll,
|
|
OptionsProperties,
|
|
OptionsRename,
|
|
OptionsNewFolder,
|
|
OptionsNewFile,
|
|
OptionsCopy,
|
|
OptionsMove,
|
|
OptionsPaste,
|
|
OptionsDelete,
|
|
OptionsSetArchiveBit,
|
|
OptionsRenamePrompt,
|
|
OptionsFolderPrompt,
|
|
OptionsFilePrompt,
|
|
OptionsCopying,
|
|
|
|
// Properties dialog
|
|
PropertiesName,
|
|
PropertiesSize,
|
|
PropertiesCreated,
|
|
PropertiesModified,
|
|
PropertiesAccessed,
|
|
PropertiesWidth,
|
|
PropertiesHeight,
|
|
|
|
// Delete dialog
|
|
DeleteMessage,
|
|
DeleteMultiplePrompt,
|
|
DeletePrompt,
|
|
|
|
// Archive dialog
|
|
ArchiveTitle,
|
|
ArchiveMessage,
|
|
ArchivePrompt,
|
|
ArchiveExtracting,
|
|
|
|
// SettingsWindow
|
|
SettingsTitle,
|
|
SettingsSortTitle,
|
|
SettingsLanguageTitle,
|
|
SettingsUSBTitle,
|
|
SettingsUSBUnmount,
|
|
SettingsImageViewTitle,
|
|
SettingsDevOptsTitle,
|
|
SettingsMultiLangTitle,
|
|
SettingsAboutTitle,
|
|
SettingsCheckForUpdates,
|
|
SettingsImageViewFilenameToggle,
|
|
SettingsDevOptsLogsToggle,
|
|
SettingsMultiLangLogsToggle,
|
|
SettingsAboutVersion,
|
|
SettingsAboutAuthor,
|
|
SettingsAboutBanner,
|
|
|
|
// Updates Dialog
|
|
UpdateTitle,
|
|
UpdateNetworkError,
|
|
UpdateAvailable,
|
|
UpdatePrompt,
|
|
UpdateSuccess,
|
|
UpdateRestart,
|
|
UpdateNotAvailable,
|
|
|
|
// USB Dialog
|
|
USBUnmountPrompt,
|
|
USBUnmountSuccess,
|
|
|
|
// Keyboard
|
|
KeyboardEmpty,
|
|
|
|
// Max
|
|
Max
|
|
} StringID;
|
|
}
|
|
|
|
extern const char **strings[Lang::Max];
|