8bc4ec0115
FossilOrigin-Name: 0789f1476e6e7c83eba78a04c7f3691fd0c1c287f729c406a7d9c873c0f0b2da
323 lines
6.8 KiB
C
323 lines
6.8 KiB
C
/*
|
|
* Treebird - Lightweight frontend for Pleroma
|
|
* Copyright (C) 2022 Nekobit
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef TREEBIRD_L10N_H
|
|
#define TREEBIRD_L10N_H
|
|
|
|
enum l10n_locale
|
|
{
|
|
L10N_EN_US = 0,
|
|
L10N_ES_ES,
|
|
};
|
|
|
|
enum l10n_string
|
|
{
|
|
/* GENERAL */
|
|
L10N_APP_NAME = 0,
|
|
L10N_HOME,
|
|
L10N_LOCAL,
|
|
L10N_FEDERATED,
|
|
L10N_NOTIFICATIONS,
|
|
L10N_LISTS,
|
|
L10N_FAVOURITES,
|
|
L10N_BOOKMARKS,
|
|
L10N_DIRECT,
|
|
L10N_CONFIG,
|
|
L10N_SEARCH_PLACEHOLDER,
|
|
L10N_SEARCH_BUTTON,
|
|
|
|
/* CONFIG */
|
|
L10N_GENERAL,
|
|
L10N_ACCOUNT,
|
|
L10N_JAVASCRIPT,
|
|
L10N_CFG_QUICK_ACTIONS,
|
|
L10N_CFG_QUICK_REPLY,
|
|
L10N_CFG_LIVE_STATUSES,
|
|
L10N_APPEARANCE,
|
|
L10N_THEME_VARIANT,
|
|
L10N_THEME_TREEBIRD20,
|
|
L10N_THEME_TREEBIRD30,
|
|
L10N_COLOR_SCHEME,
|
|
L10N_LIGHT,
|
|
L10N_DARK,
|
|
L10N_SAVE,
|
|
|
|
/* ACCOUNT */
|
|
L10N_ACCT_MENU,
|
|
L10N_SUBSCRIBE,
|
|
L10N_UNSUBSCRIBE,
|
|
L10N_BLOCK,
|
|
L10N_UNBLOCK,
|
|
L10N_MUTE,
|
|
L10N_UNMUTE,
|
|
L10N_TAB_STATUSES,
|
|
L10N_TAB_FOLLOWING,
|
|
L10N_TAB_FOLLOWERS,
|
|
L10N_TAB_SCROBBLES,
|
|
L10N_TAB_MEDIA,
|
|
L10N_TAB_PINNED,
|
|
L10N_FOLLOWS_YOU,
|
|
L10N_FOLLOW,
|
|
L10N_FOLLOW_PENDING,
|
|
L10N_FOLLOWING,
|
|
L10N_BLOCKED,
|
|
|
|
/* STATUS */
|
|
L10N_REPLY,
|
|
L10N_REPEAT,
|
|
L10N_LIKE,
|
|
L10N_QUICK,
|
|
L10N_VIEW,
|
|
L10N_IN_REPLY_TO,
|
|
|
|
/* ERRORS */
|
|
L10N_PAGE_NOT_FOUND,
|
|
L10N_STATUS_NOT_FOUND,
|
|
L10N_ACCOUNT_NOT_FOUND,
|
|
|
|
/* VISIBILITIES */
|
|
L10N_VIS_PUBLIC,
|
|
L10N_VIS_UNLISTED,
|
|
L10N_VIS_PRIVATE,
|
|
L10N_VIS_DIRECT,
|
|
L10N_VIS_LOCAL,
|
|
|
|
/* LOGIN */
|
|
L10N_LOGIN,
|
|
L10N_REGISTER,
|
|
L10N_USERNAME,
|
|
L10N_PASSWORD,
|
|
L10N_LOGIN_BTN,
|
|
L10N_LOGIN_HEADER,
|
|
L10N_LOGIN_FAIL,
|
|
|
|
/* NOTIFICATIONS */
|
|
L10N_NOTIF_LIKED,
|
|
L10N_NOTIF_REACTED_WITH,
|
|
L10N_NOTIF_REPEATED,
|
|
L10N_NOTIF_FOLLOW,
|
|
L10N_NOTIF_FOLLOW_REQUEST,
|
|
L10N_NOTIF_POLL,
|
|
|
|
L10N_NOTIF_COMPACT_LIKED,
|
|
L10N_NOTIF_COMPACT_REACTED_WITH,
|
|
L10N_NOTIF_COMPACT_REPEATED,
|
|
L10N_NOTIF_COMPACT_FOLLOW,
|
|
L10N_NOTIF_COMPACT_FOLLOW_REQUEST,
|
|
L10N_NOTIF_COMPACT_POLL,
|
|
|
|
_L10N_LEN,
|
|
};
|
|
|
|
static const char* const L10N[][_L10N_LEN] = {
|
|
// EN_US
|
|
{
|
|
/* GENERAL */
|
|
"Treebird", // L10N_APP_NAME
|
|
"Home",
|
|
"Local",
|
|
"Federated",
|
|
"Notifications",
|
|
"Lists",
|
|
"Favorites",
|
|
"Bookmarks",
|
|
"Direct",
|
|
"Config",
|
|
"Search",
|
|
"Search",
|
|
|
|
/* CONFIG */
|
|
"General",
|
|
"Account",
|
|
"JavaScript",
|
|
"Quick actions - Likes, Boosts, etc done in background",
|
|
"Quick reply - Replies don't require redirects",
|
|
"Live statuses - Statuses fetch on the fly",
|
|
"Appearance",
|
|
"Theme variant",
|
|
"Treebird 2.0 - Default, simple theme",
|
|
"Treebird 3.0 - Flat, modern theme",
|
|
"Color Scheme",
|
|
"Light",
|
|
"Dark",
|
|
"Save",
|
|
|
|
/* ACCOUNT */
|
|
"Menu",
|
|
"Subscribe",
|
|
"Unsubscribe",
|
|
"Block",
|
|
"Unblock",
|
|
"Mute",
|
|
"Unmute",
|
|
"Statuses",
|
|
"Following",
|
|
"Followers",
|
|
"Scrobbles",
|
|
"Media",
|
|
"Pinned",
|
|
"Follows you!",
|
|
"Follow",
|
|
"Follow pending",
|
|
"Following!",
|
|
"You are blocked by this user.",
|
|
|
|
/* STATUS */
|
|
"Reply",
|
|
"Repeat",
|
|
"Like",
|
|
"Quick",
|
|
"View",
|
|
"In reply to",
|
|
|
|
/* ERRORS */
|
|
"Content not found",
|
|
"Status not found",
|
|
"Account not found",
|
|
|
|
/* VISIBILITIES */
|
|
"Public",
|
|
"Unlisted",
|
|
"Private",
|
|
"Direct",
|
|
"Local",
|
|
|
|
/* LOGIN */
|
|
"Login",
|
|
"Register",
|
|
"Username",
|
|
"Password",
|
|
"Login",
|
|
"Login / Register",
|
|
"Couldn't login",
|
|
|
|
/* NOTIFICATIONS */
|
|
"liked your status",
|
|
"reacted with",
|
|
"repeated your status",
|
|
"followed you",
|
|
"wants to follow you",
|
|
"poll results",
|
|
|
|
"liked",
|
|
"reacted",
|
|
"repeated",
|
|
"followed",
|
|
"follows?",
|
|
"poll",
|
|
},
|
|
|
|
// ES_ES
|
|
{
|
|
/* GENERAL */
|
|
"Treebird", // L10N_APP_NAME
|
|
"Inicio",
|
|
"Local",
|
|
"Federado",
|
|
"Notificaciones",
|
|
"Listas",
|
|
"Favourites",
|
|
"Bookmarks",
|
|
"Directo",
|
|
"Configuración",
|
|
"Búsqueda",
|
|
"Búsqueda",
|
|
|
|
/* CONFIG */
|
|
"General",
|
|
"Account",
|
|
"JavaScript",
|
|
"Acciones rápidas - Me gusta, Impulsos, etc. se hacen en segundo plano",
|
|
"Respuesta rápidas - Las respuestas no requieren redirección",
|
|
"Estados en vivo - Los estados se obtienen sobre la marcha",
|
|
"Apariencia",
|
|
"Variante de tema",
|
|
"Treebird 2.0 - Tema simple predeterminado",
|
|
"Treebird 3.0 - Tema plano y moderno",
|
|
"Esquema de colores",
|
|
"Claro",
|
|
"Oscuro",
|
|
"Guardar",
|
|
|
|
/* ACCOUNT */
|
|
"Menu",
|
|
"Subscribe",
|
|
"Unsubscribe",
|
|
"Block",
|
|
"Unblock",
|
|
"Mute",
|
|
"Unmute",
|
|
"Statuses",
|
|
"Following",
|
|
"Followers",
|
|
"Scrobbles",
|
|
"Media",
|
|
"Pinned",
|
|
"Follows you!",
|
|
"Follow",
|
|
"Follow pending",
|
|
"Following!",
|
|
"You are blocked by this user.",
|
|
|
|
/* STATUS */
|
|
"Respuesta",
|
|
"Impulso",
|
|
"Me gusta",
|
|
"Rápido",
|
|
"View",
|
|
"In reply to",
|
|
|
|
/* ERRORS */
|
|
"Content not found",
|
|
"Status not found",
|
|
"Account not found",
|
|
|
|
/* VISIBILITIES */
|
|
"Public",
|
|
"Unlisted",
|
|
"Private",
|
|
"Direct",
|
|
"Local",
|
|
|
|
/* LOGIN */
|
|
"Login",
|
|
"Register",
|
|
"Username",
|
|
"Password",
|
|
"Login",
|
|
"Login / Register",
|
|
"Couldn't login",
|
|
|
|
/* NOTIFICATIONS */
|
|
"liked your status",
|
|
"reacted with",
|
|
"repeated your status",
|
|
"followed you",
|
|
"wants to follow you",
|
|
"poll results",
|
|
|
|
"liked",
|
|
"reacted",
|
|
"repeated",
|
|
"followed",
|
|
"follows?",
|
|
"poll",
|
|
},
|
|
};
|
|
|
|
#endif // TREEBIRD_L10N_H
|