Kaynağa Gözat

add moar l10n

Felix Paul Kühne 10 yıl önce
ebeveyn
işleme
b4e8b43d81

BIN
Resources/en.lproj/Localizable.strings


+ 2 - 0
VLC for iOS WatchKit Extension/VLCDetailInterfaceController.m

@@ -30,6 +30,8 @@
 }
 
 - (void)willActivate {
+    [self.playNowButton setTitle:NSLocalizedString(@"Play now", nil)];
+    [self setTitle:NSLocalizedString(@"DETAIL", nil)];
     // This method is called when watch view controller is about to be visible to user
     [super willActivate];
 }

+ 2 - 0
VLC for iOS WatchKit Extension/VLCNowPlayingInterfaceController.m

@@ -33,6 +33,8 @@
 - (void)willActivate {
     // This method is called when watch view controller is about to be visible to user
     [super willActivate];
+    [self setTitle:NSLocalizedString(@"PLAYING", nil)];
+
     [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(requestNowPlayingInfo) name:@"nowPlayingInfoUpdate" object:nil];
     [self requestNowPlayingInfo];