diff options
author | Pantelis Koukousoulas <pktoss@gmail.com> | 2011-03-14 20:10:54 +0100 |
---|---|---|
committer | Thorsten Behrens <tbehrens@novell.com> | 2011-03-14 20:30:58 +0100 |
commit | 3f3b9cecfb6e04a1ef382f7c4c5a074fb9b4c8fb (patch) | |
tree | 0d8a5d5599089d77406e7f76256efde220137695 | |
parent | a913e6e5c23c00efe20dd3821ca0e8e7db854662 (diff) |
Support for greek numerals
References:
http://www.spinellis.gr/blog/20090625/ (Greek Numerals in OpenOffice.org)
http://user.services.openoffice.org/en/forum/viewtopic.php?f=7&t=7269
([Issue+Workaround] Custom Numbering in Bullets and Numbering)
http://www.opengr.net/forum/viewtopic.php?f=13&t=51
And the references transitively mentioned in the above.
This functionality was implemented during Greek Coding Camp 2009.
NOTE: the present implementation uses the (modern) two-letter version of '6'
(sigma taf) instead of the ancient greek / katharevousa version that uses
the 'stigma' character.
OTOH, we do use the katharevousa 'qoppa' and 'sampi' because there is no
standard modern version that replaces them. If you have that many bullets
so that these symbols are needed, then you had it comin' anyway :p
Author: Pantelis Koukousoulas <pktoss@gmail.com>
License: LGPLv3 / MPL
Signed-off-by: Pantelis Koukousoulas <pktoss@gmail.com>
-rw-r--r-- | cui/source/tabpages/numpages.src | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cui/source/tabpages/numpages.src b/cui/source/tabpages/numpages.src index 323b5cdd6ba6..0057c77147a3 100644 --- a/cui/source/tabpages/numpages.src +++ b/cui/source/tabpages/numpages.src @@ -213,7 +213,8 @@ TabPage RID_SVXPAGE_NUM_OPTIONS < "а, б, .., аа, аб, ... (Serbian)" ; 49 /*CHARS_CYRILLIC_LOWER_LETTER_SR */; > ; < "А, Б, .., Аа, Бб, ... (Serbian)" ; 50 /*CHARS_CYRILLIC_UPPER_LETTER_N_SR */; > ; < "а, б, .., аа, бб, ... (Serbian)" ; 51 /*CHARS_CYRILLIC_LOWER_LETTER_N_SR */; > ; - + < "Α, Β, Γ, ... (Greek Upper Letter)"; 52 /*CHARS_GREEK_UPPER_LETTER */; > ; + < "α, β, γ, ... (Greek Lower Letter)"; 53 /*CHARS_GREEK_LOWER_LETTER */; > ; }; }; FixedText FT_PREFIX |