1 /* 2 * Copyright 2020, The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 /* Generated by generate_translations - DO NOT EDIT */ 18 19 #pragma once 20 21 #include <stddef.h> 22 #include <stdint.h> 23 24 namespace teeui { 25 namespace localization { 26 27 struct Languages { 28 size_t size; 29 const char* const* list; 30 }; 31 32 const char* selectLangId(const char* lang_id); 33 34 enum class TranslationId : uint32_t { 35 CANCEL, 36 CANCEL_VOL, 37 CANCEL_VOL_DOWN, 38 CANCEL_VOL_UP, 39 CONFIRM, 40 CONFIRM_PWR_BUTTON, 41 CONFIRM_PWR_BUTTON_DOUBLE_PRESS, 42 DESCRIPTION, 43 TITLE, 44 __COUNT__, 45 }; 46 47 const char* lookup(TranslationId translation_id); 48 49 Languages getLanguages(void); 50 51 52 } // namespace localization 53 } // namespace teeui 54