12345678910111213141516171819202122232425 |
- /*****************************************************************************
- * 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);
- }
|