From 326c937dc8c3384a1d2a2218d1ed1bac3eee23cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Wed, 26 Apr 2017 17:24:45 +0200 Subject: [PATCH] [i18n] Add "alpha" and "ALPHA" Change-Id: I3d360802bee977f6274c2e1ce63af0b6d493b906 --- apps/i18n.cpp | 4 +++- apps/i18n.h | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/i18n.cpp b/apps/i18n.cpp index 353243f83..466e2f131 100644 --- a/apps/i18n.cpp +++ b/apps/i18n.cpp @@ -275,8 +275,10 @@ constexpr static char leftIntegralFirstLegend[] = {'P', '(', 'X', Ion::Charset:: constexpr static char finiteIntegralLegend[] = {Ion::Charset::LessEqual, 'X', Ion::Charset::LessEqual, 0}; -const char * universalMessages[200] { +const char * universalMessages[202] { "", + "Alpha", + "ALPHA", "x", "y", "n", diff --git a/apps/i18n.h b/apps/i18n.h index a4b624d39..c488a0250 100644 --- a/apps/i18n.h +++ b/apps/i18n.h @@ -239,6 +239,8 @@ namespace I18n { /* UNIVERSAL MESSAGES */ Default = 0x8000, + Alpha, + CapitalAlpha, X, Y, N,