From 9f7b4e7cd5a29f299a89ccff1720652f98874310 Mon Sep 17 00:00:00 2001 From: "me@ow.nekobit.net" Date: Wed, 23 Mar 2022 14:52:04 +0000 Subject: [PATCH] More L10N FossilOrigin-Name: a1bfb271839d1231982cbfcf28c3d738c8bd19e4332f786b0f240eafbca67272 --- src/l10n.h | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 89 insertions(+), 2 deletions(-) diff --git a/src/l10n.h b/src/l10n.h index 60de8a0..39b31ce 100644 --- a/src/l10n.h +++ b/src/l10n.h @@ -61,6 +61,35 @@ enum l10n_string L10N_QUICK, L10N_VIEW, + /* 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_HEADER, + L10N_LOGIN_FAIL, + + /* NOTIFICATIONS */ + L10N_NOTIF_LIKED, + L10N_NOTIF_REACTED_WITH, + L10N_NOTIF_REPEATED, + L10N_NOTIF_FOLLOW, + L10N_NOTIF_FOLLOW_REQUEST, + + L10N_NOTIF_COMPACT_LIKED, + L10N_NOTIF_COMPACT_REACTED_WITH, + L10N_NOTIF_COMPACT_REPEATED, + L10N_NOTIF_COMPACT_FOLLOW, + L10N_NOTIF_COMPACT_FOLLOW_REQUEST, + _L10N_LEN, }; @@ -99,7 +128,36 @@ static const char* const L10N[][_L10N_LEN] = { "Repeat", "Like", "Quick", - "View" + "View", + + /* ERRORS */ + "Content not found", + "Status not found", + "Account not found", + + /* VISIBILITIES */ + "Public", + "Unlisted", + "Private", + "Direct", + "Local", + + /* LOGIN */ + "Login / Register", + "Couldn't login", + + /* NOTIFICATIONS */ + "liked your status", + "reacted with", + "repeated your status", + "followed you", + "wants to follow you", + + "liked", + "reacted", + "repeated", + "followed", + "follows?" }, // ES_ES @@ -136,7 +194,36 @@ static const char* const L10N[][_L10N_LEN] = { "Impulso", "Me gusta", "RĂ¡pido", - "View (Untranslated)" + "View (Translate me)", + + /* ERRORS */ + "Content not found", + "Status not found", + "Account not found", + + /* VISIBILITIES */ + "Public", + "Unlisted", + "Private", + "Direct", + "Local", + + /* LOGIN */ + "Login / Register", + "Couldn't login", + + /* NOTIFICATIONS */ + "liked your status", + "reacted with", + "repeated your status", + "followed you", + "wants to follow you", + + "liked", + "reacted", + "repeated", + "followed", + "follows?", }, };