generated from JetBrains/compose-multiplatform-template
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathStringEnglish.kt
More file actions
190 lines (188 loc) · 10.7 KB
/
StringEnglish.kt
File metadata and controls
190 lines (188 loc) · 10.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
package ui.string
import const.APP_NAME
import ui.string.Strings.*
fun Strings.en(): String =
when (this) {
CommonOkay -> "OK"
CommonCancel -> "Cancel"
CommonYes -> "Yes"
CommonNo -> "No"
CommonBack -> "Back"
CommonMore -> "More"
CommonError -> "Error"
CommonEdit -> "Edit"
CommonCheck -> "Check"
CommonImport -> "Import"
CommonDoNotShowAgain -> "Do not show again"
CommonNoMatch -> "No match."
AlertNeedManualPermissionGrantTitle -> "Permission Required"
AlertNeedManualPermissionGrantMessage ->
"The app needs your permission to record audio. Please grant the permission in system settings."
ErrorReadFileFailedMessage -> "Failed to read file."
ErrorExportDataFailedMessage -> "Failed to export data."
ExceptionRenameSessionExisting -> "Session named {0} already exists."
ExceptionRenameSessionInvalid -> "Invalid session name: {0}"
ExceptionRenameSessionUnexpected -> "Failed to rename session."
ExceptionUnsupportedAudioFormat ->
"Could not find any audio device that supports the current audio format: {0}, " +
"please check and adjust the audio settings, especially the sample rate and bit depth."
ExceptionUnsupportedAudioDevice ->
"The selected audio device is not usable, please check audio settings on your " +
"system side. If this error keeps happening, please try selecting the system default audio devices " +
"in the settings of RecStar, and select your desired audio devices in the system settings."
ExceptionReclistNotFound ->
"Could not open the session because the reclist ({0}) or its comment file used in this session " +
"is not found. Please reimport them to use this session."
ExceptionReclistNoValidLine ->
"The reclist file does not contain any valid line. " +
"Please ensure the lines do not contain any invalid characters that cannot be used in file names."
ExceptionTextDecodeFailure ->
"Failed to decode text. Please turn on `Ask Text Encoding` in settings and try again with correct encoding."
AlertExportTips ->
"Your reclist contains sentences with Japanese voice marked characters " +
"which will be saved in a special encoding, " +
"making it unable to be recognized correctly on other platforms, " +
"due to the specification of MacOS/iOS. " +
"Before using them on other platforms with other software, " +
"please normalize the file names to NFC form. " +
"You can use the \"File Name Normalizer\" tool in the \"Tools\" menu of \"vLabeler\" app to do this."
AlertExportNoData -> "No data to export"
ToastExportDataSuccess -> "Exported successfully"
ToastExportDataCancel -> "Export cancelled"
ToastImportSuccess -> "Imported successfully"
ToastImportFailure -> "Failed to import"
AlertUnexpectedErrorOpenLog -> "An error occurred. Please report to the developer with the error log file."
AlertUnexpectedErrorOpenLogButton -> "Open Log Folder"
AlertUnexpectedErrorCopyLogToClipboard ->
"An error occurred. Please report to the developer with the error info."
AlertUnexpectedErrorCopyLogToClipboardButton -> "Copy Error Info"
MainScreenAllSessions -> "Sessions"
MainScreenNewSession -> "Start New Session"
MainScreenEmpty -> "No sessions yet."
MainScreenDeleteItemsTitle -> "Delete Sessions"
MainScreenDeleteItemsMessage ->
"Are you sure you want to delete {0} session(s)? The recordings will be completely removed from the device."
SessionScreenCurrentSentenceLabel -> "Current Recording: "
SessionScreenCommentEmpty -> "No comment."
SessionScreenNoData -> "No data."
SessionScreenActionOpenDirectory -> "Open Directory"
SessionScreenActionExport -> "Export"
SessionScreenActionRenameSession -> "Rename Session"
SessionScreenActionConfigureGuideAudio -> "Configure Guide BGM"
SessionScreenActionSkipFinishedSentence -> "Skip Recorded Sentences"
SessionScreenTogglePlaying -> "Toggle Playback"
SessionScreenNoGuideAudio -> "Not Set"
SessionScreenAlertGuideAudioNotFoundMessage ->
"The guide BGM file is not found. Please configure the guide BGM again."
CreateSessionReclistScreenTitle -> "Select reclist to record"
CreateSessionReclistScreenActionImport -> "Import Reclist"
CreateSessionReclistScreenActionImportCommentAlertMessage ->
"Do you want to import the corresponding comment file (-comment.txt)?"
CreateSessionReclistScreenAllReclists -> "Reclists"
CreateSessionReclistScreenEmpty -> "Please import a reclist first."
CreateSessionReclistScreenContinue -> "Finish"
CreateSessionReclistScreenFailure -> "Failed to create session."
CreateSessionReclistScreenDeleteItemsTitle -> "Delete Reclists"
CreateSessionReclistScreenDeleteItemsMessage -> "Are you sure you want to delete {0} reclist(s)?"
GuideAudioScreenTitle -> "Configure guide BGM"
GuideAudioScreenActionImport -> "Import Guide BGM"
GuideAudioScreenActionImportConfigAlertMessage ->
"Do you want to import the corresponding guide BGM config file (.txt)?"
GuideAudioScreenAllGuideAudios -> "Guide BGMs"
GuideAudioScreenEmpty -> "Please import a guide BGM first."
GuideAudioScreenDeleteItemsTitle -> "Delete Guide BGMs"
GuideAudioScreenDeleteItemsMessage -> "Are you sure you want to delete {0} guide BGM(s)?"
ItemSelectingTitle -> "Selecting {0} items"
SelectedLabel -> "Selected"
SearchBar -> "Search"
SearchBarClear -> "Clear"
SortingMethod -> "Sorting Method"
SortingMethodNameAsc -> "Name (Asc)"
SortingMethodNameDesc -> "Name (Desc)"
SortingMethodUsedAsc -> "Last Used (Asc)"
SortingMethodUsedDesc -> "Last Used (Desc)"
PreferenceScreenTitle -> "Settings"
PreferenceGroupAppearance -> "Appearance"
PreferenceLanguage -> "Language"
PreferenceLanguageAuto -> "Auto"
PreferenceTheme -> "Theme"
PreferenceThemeSystem -> "Follow System"
PreferenceThemeLight -> "Light"
PreferenceThemeDark -> "Dark"
PreferenceOrientation -> "Screen Orientation"
PreferenceOrientationAuto -> "Auto"
PreferenceOrientationPortrait -> "Portrait"
PreferenceOrientationLandscape -> "Landscape"
PreferenceGroupRecording -> "Recording"
PreferenceContinuousRecording -> "Continuous Recording"
PreferenceContinuousRecordingDescription -> "Based on the guide BGM"
PreferenceTrimRecording -> "Trim Recording"
PreferenceTrimRecordingDescription -> "Based on the guide BGM"
PreferenceRecordWhileHolding -> "Hold to Record"
PreferenceRecordingShortKey -> "Shortcut for Recording"
PreferenceRecordingShortKeyEnter -> "Enter"
PreferenceRecordingShortKeyR -> "R"
PreferenceAutoListenBack -> "Auto Listen Back After Recording"
PreferenceAutoListenBackDescription -> "Unavailable in continuous mode"
PreferenceAutoNext -> "Auto Go to Next After Recording"
PreferenceAutoNextDescription -> "Unavailable in continuous mode"
PreferenceGroupAudio -> "Audio"
PreferenceGroupAudioDescription ->
"It is recommended to always use the system default audio devices, and " +
"select your desired audio devices in the system settings, " +
"rather than modifying the audio device settings here."
PreferenceInputDeviceName -> "Input Device"
PreferenceOutputDeviceName -> "Output Device"
PreferencePreferBuiltInMicrophone -> "Prefer Built-in Microphone"
PreferenceSampleRate -> "Sample Rate"
PreferenceBitDepth -> "Bit Depth"
PreferenceDeviceNameNotFoundTemplate -> "{0} (Not Found)"
PreferenceGroupView -> "View"
PreferenceTitleBarStyle -> "Title Bar Style"
PreferenceTitleBarStyleFileName -> "Only File Name"
PreferenceTitleBarStyleFileNameWithComment -> "File Name with Comment (small)"
PreferenceTitleBarStyleCommentWithFileName -> "Comment with File Name (small)"
PreferenceTitleBarStyleComment -> "Only Comment"
PreferenceGroupMisc -> "Misc"
PreferenceAlwaysConfirmTextEncoding -> "Ask Text Encoding"
PreferenceContentRootLocation -> "Location of Content Directory"
PreferenceAbout -> "About $APP_NAME"
AboutScreenPrivacyPolicy -> "Privacy Policy"
AboutScreenCopyDeviceInfo -> "Copy Device Info"
AboutScreenDeviceInfoCopied -> "Device info copied to clipboard"
AboutScreenViewLicenses -> "View Licenses"
AboutScreenViewOnGithub -> "View on GitHub"
LicenseScreenTitle -> "Licenses"
MenuFile -> "File"
MenuFileNewSession -> "Start New Session"
MenuFileImportReclist -> "Import Reclist"
MenuFileImportGuideAudio -> "Import Guide BGM"
MenuFileOpenDirectory -> "Open Directory"
MenuFileBack -> "Back"
MenuEdit -> "Edit"
MenuEditRenameSession -> "Rename Session"
MenuEditConfigureGuideAudio -> "Configure Guide BGM"
MenuEditEditList -> "Edit List"
MenuAction -> "Action"
MenuActionNextSentence -> "Next Sentence"
MenuActionPreviousSentence -> "Previous Sentence"
MenuActionToggleRecording -> "Toggle Recording"
MenuActionToggleRecordingHoldingMode -> "Toggle Recording (Only shortcut is available)"
MenuSettings -> "Settings"
MenuSettingsOpenSettings -> "Open Settings"
MenuSettingsClearSettings -> "Reset All Settings"
MenuSettingsClearSettingsAlertMessage -> "Are you sure you want to reset all settings?"
MenuSettingsClearAppData -> "Clear App Data"
MenuSettingsClearAppDataAlertMessage ->
"Are you sure you want to clear all app data (including settings and usage records)? " +
"This will not delete your sessions and imported resources. " +
"The App will be closed after clearing."
MenuHelp -> "Help"
MenuHelpOpenContentDirectory -> "Open Content Directory"
MenuHelpOpenAppDirectory -> "Open App Directory"
MenuHelpAbout -> "About"
TextEncodingDialogTitle -> "Encoding Setting"
TextEncodingDialogEncodingLabel -> "Encoding"
TextEncodingDialogEncodingAuto -> "Auto"
TextEncodingDialogEncodingError -> "Decode Error"
}