Android-cuttlefish cvd tool
ConfirmationUITranslations.h
Go to the documentation of this file.
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
24namespace teeui {
25namespace localization {
26
27struct Languages {
28 size_t size;
29 const char* const* list;
30};
31
32const char* selectLangId(const char* lang_id);
33
34enum class TranslationId : uint32_t {
35 CANCEL,
39 CONFIRM,
43 TITLE,
45};
46
47const char* lookup(TranslationId translation_id);
48
49Languages getLanguages(void);
50
51
52} // namespace localization
53} // namespace teeui
Languages getLanguages(void)
Definition: ConfirmationUITranslations.cpp:1381
const char * selectLangId(const char *lang_id)
Definition: ConfirmationUITranslations.cpp:1353
TranslationId
Definition: ConfirmationUITranslations.h:34
const char * lookup(TranslationId translation_id)
Definition: ConfirmationUITranslations.cpp:1367
Definition: layout.h:28
Definition: ConfirmationUITranslations.h:27
size_t size
Definition: ConfirmationUITranslations.h:28
const char *const * list
Definition: ConfirmationUITranslations.h:29