1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /*****************************************************************************
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2017 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Carola Nitz <nitz.carola # googlemail.com>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- //This file is there to avoid key deletion by the update_strings.py script.
- //Add Keys here with text that we need translation for but are not directly used within the App
- void _notAMethod()
- {
- NSLocalizedString(@"STORE_DESCRIPTION", nil);
- NSLocalizedString(@"STORE_DESCRIPTION_TV", nil);
- NSLocalizedString(@"ABOUT_APP", nil);
- NSLocalizedString(@"SECTION_HEADER_NETWORK", nil);
- NSLocalizedString(@"THIS_FILE", nil);
- NSLocalizedString(@"NOT_SUPPORTED_FILETYPE", nil);
- NSLocalizedString(@"FILE_EXISTS", nil);
- NSLocalizedString(@"BIOMETRIC_UNLOCK", nil);
- //These Strings are in PAPasscode and we need to translate them
- NSLocalizedString(@"Set Passcode", nil);
- NSLocalizedString(@"Enter a passcode", nil);
- NSLocalizedString(@"Re-enter your passcode", nil);
- NSLocalizedString(@"Enter Passcode", nil);
- NSLocalizedString(@"Enter your passcode", nil);
- NSLocalizedString(@"Passcodes did not match. Try again.", nil);
- NSLocalizedString(@"Change Passcode", nil);
- NSLocalizedString(@"Enter your old passcode", nil);
- NSLocalizedString(@"Enter your new passcode", nil);
- NSLocalizedString(@"Re-enter your new passcode", nil);
- NSLocalizedString(@"Passcodes did not match. Try again.", nil);
- NSLocalizedString(@"1 Failed Passcode Attempt", nil);
- NSLocalizedString(@"%d Failed Passcode Attempts", nil);
- NSLocalizedString(@"Next", nil);
- }
|