VLCStringsForLocalization.m 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*****************************************************************************
  2. * VLC for iOS
  3. *****************************************************************************
  4. * Copyright (c) 2017 VideoLAN. All rights reserved.
  5. * $Id$
  6. *
  7. * Authors: Carola Nitz <nitz.carola # googlemail.com>
  8. *
  9. * Refer to the COPYING file of the official project for license.
  10. *****************************************************************************/
  11. //This file is there to avoid key deletion by the update_strings.py script.
  12. //Add Keys here with text that we need translation for but are not directly used within the App
  13. void _notAMethod()
  14. {
  15. NSLocalizedString(@"STORE_DESCRIPTION", nil);
  16. NSLocalizedString(@"STORE_DESCRIPTION_TV", nil);
  17. NSLocalizedString(@"ABOUT_APP", nil);
  18. NSLocalizedString(@"SECTION_HEADER_NETWORK", nil);
  19. NSLocalizedString(@"THIS_FILE", nil);
  20. NSLocalizedString(@"NOT_SUPPORTED_FILETYPE", nil);
  21. NSLocalizedString(@"FILE_EXISTS", nil);
  22. NSLocalizedString(@"BIOMETRIC_UNLOCK", nil);
  23. //These Strings are in PAPasscode and we need to translate them
  24. NSLocalizedString(@"Set Passcode", nil);
  25. NSLocalizedString(@"Enter a passcode", nil);
  26. NSLocalizedString(@"Re-enter your passcode", nil);
  27. NSLocalizedString(@"Enter Passcode", nil);
  28. NSLocalizedString(@"Enter your passcode", nil);
  29. NSLocalizedString(@"Passcodes did not match. Try again.", nil);
  30. NSLocalizedString(@"Change Passcode", nil);
  31. NSLocalizedString(@"Enter your old passcode", nil);
  32. NSLocalizedString(@"Enter your new passcode", nil);
  33. NSLocalizedString(@"Re-enter your new passcode", nil);
  34. NSLocalizedString(@"Passcodes did not match. Try again.", nil);
  35. NSLocalizedString(@"1 Failed Passcode Attempt", nil);
  36. NSLocalizedString(@"%d Failed Passcode Attempts", nil);
  37. NSLocalizedString(@"Next", nil);
  38. }