Skip to content

Commit fea8fdc

Browse files
committed
Add japanese as english to avoid chinese translation
1 parent 33e9ae8 commit fea8fdc

File tree

5 files changed

+474
-0
lines changed

5 files changed

+474
-0
lines changed

BookPlayer.xcodeproj/project.pbxproj

+9
Original file line numberDiff line numberDiff line change
@@ -1191,6 +1191,10 @@
11911191
6350E4712CF4D0220077CDC1 /* PlayerControlsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PlayerControlsView.swift; sourceTree = "<group>"; };
11921192
6350E4732CF4D2660077CDC1 /* PlayerToolbarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PlayerToolbarView.swift; sourceTree = "<group>"; };
11931193
6350E4752CF4F6E90077CDC1 /* PlaybackFullControlsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PlaybackFullControlsView.swift; sourceTree = "<group>"; };
1194+
635390BC2D0DEB1500FE6E45 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = ja; path = ja.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
1195+
635390BD2D0DEB1500FE6E45 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = "<group>"; };
1196+
635390BE2D0DEB1500FE6E45 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/AppShortcuts.strings; sourceTree = "<group>"; };
1197+
635390BF2D0DEB1500FE6E45 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = "<group>"; };
11941198
6354CD9B2B4902CE006D9551 /* DebugInformationActivityItemSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DebugInformationActivityItemSource.swift; sourceTree = "<group>"; };
11951199
6356D48B2C584EFD00994B71 /* CustomSkipForwardIntent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomSkipForwardIntent.swift; sourceTree = "<group>"; };
11961200
6356F9B42AC7CC5600B7A027 /* CancelSleepTimerIntent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CancelSleepTimerIntent.swift; sourceTree = "<group>"; };
@@ -3309,6 +3313,7 @@
33093313
nb,
33103314
"pt-PT",
33113315
el,
3316+
ja,
33123317
);
33133318
mainGroup = 418B6CEF1D2707F700F974FB;
33143319
packageReferences = (
@@ -4238,6 +4243,7 @@
42384243
9F5011F32A62027C0075FEBA /* nb */,
42394244
630584E32ADEB88500FBFA6F /* pt-PT */,
42404245
636086022C5B589900341D78 /* el */,
4246+
635390BC2D0DEB1500FE6E45 /* ja */,
42414247
);
42424248
name = Localizable.stringsdict;
42434249
sourceTree = "<group>";
@@ -4309,6 +4315,7 @@
43094315
9F5011F42A62027C0075FEBA /* nb */,
43104316
630584E42ADEB88500FBFA6F /* pt-PT */,
43114317
636086032C5B589900341D78 /* el */,
4318+
635390BD2D0DEB1500FE6E45 /* ja */,
43124319
);
43134320
name = Localizable.strings;
43144321
sourceTree = "<group>";
@@ -4340,6 +4347,7 @@
43404347
9F5011F52A62027C0075FEBA /* nb */,
43414348
630584E22ADEB88500FBFA6F /* pt-PT */,
43424349
636086052C5B589900341D78 /* el */,
4350+
635390BF2D0DEB1500FE6E45 /* ja */,
43434351
);
43444352
name = Localizable.strings;
43454353
sourceTree = "<group>";
@@ -4378,6 +4386,7 @@
43784386
6376092F2ADCD83D00A01D5D /* uk */,
43794387
633BE3E12AE43D1300F983AC /* pt-PT */,
43804388
636086042C5B589900341D78 /* el */,
4389+
635390BE2D0DEB1500FE6E45 /* ja */,
43814390
);
43824391
name = AppShortcuts.strings;
43834392
sourceTree = "<group>";
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
"Play the current book in ${applicationName}" = "Play the current book in ${applicationName}";
2+
"Play the last book in ${applicationName}" = "Play the last book in ${applicationName}";
3+
"Continue the last played book in ${applicationName}" = "Continue the last played book in ${applicationName}";
4+
"Pause the current book in ${applicationName}" = "Pause the current book in ${applicationName}";
5+
"Pause playback in ${applicationName}" = "Pause playback in ${applicationName}";
6+
"Stop ${applicationName}" = "Stop ${applicationName}";
7+
"Stop playback in ${applicationName}" = "Stop playback in ${applicationName}";
8+
"Set the sleep timer to the End of Chapter in ${applicationName}" = "Set the sleep timer to the End of Chapter in ${applicationName}";
9+
"Set the sleep timer to the End of the current Chapter in ${applicationName}" = "Set the sleep timer to the End of the current Chapter in ${applicationName}";
10+
"Cancel the sleep timer in ${applicationName}" = "Cancel the sleep timer in ${applicationName}";
11+
"Turn off the sleep timer in ${applicationName}" = "Turn off the sleep timer in ${applicationName}";
12+
"Set the sleep timer in ${applicationName}" = "Set the sleep timer in ${applicationName}";
13+
"Turn on the sleep timer in ${applicationName}" = "Turn on the sleep timer in ${applicationName}";
14+
"Enable the sleep timer in ${applicationName}" = "Enable the sleep timer in ${applicationName}";
15+
"Rewind in ${applicationName}" = "Rewind in ${applicationName}";
16+
"Jump back in ${applicationName}" = "Jump back in ${applicationName}";
17+
"Skip back in ${applicationName}" = "Skip back in ${applicationName}";
18+
"Go back in ${applicationName}" = "Go back in ${applicationName}";
19+
"Fast forward in ${applicationName}" = "Fast forward in ${applicationName}";
20+
"Skip forward in ${applicationName}" = "Skip forward in ${applicationName}";
21+
"Jump forward in ${applicationName}" = "Jump forward in ${applicationName}";

0 commit comments

Comments
 (0)