[Libreoffice-commits] .: sw/source

Thorsten Behrens thorsten at kemper.freedesktop.org
Mon Mar 14 12:32:04 PDT 2011


 sw/source/ui/misc/numberingtypelistbox.src |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 4f7ac54dcb0eabb2faabf578de8518a08029084f
Author: Pantelis Koukousoulas <pktoss at gmail.com>
Date:   Mon Mar 14 20:13:13 2011 +0100

    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 at gmail.com>
    License: LGPLv3 / MPL
    
    Signed-off-by: Pantelis Koukousoulas <pktoss at gmail.com>

diff --git a/sw/source/ui/misc/numberingtypelistbox.src b/sw/source/ui/misc/numberingtypelistbox.src
index 96bf914..ff8de9a 100644
--- a/sw/source/ui/misc/numberingtypelistbox.src
+++ b/sw/source/ui/misc/numberingtypelistbox.src
@@ -57,6 +57,8 @@ Resource STRRES_NUMTYPES
             < "а, б, .., аа, аб, ... (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           */; > ;
         };
     };
 };


More information about the Libreoffice-commits mailing list