~vcs-imports/balsa/master

« back to all changes in this revision

Viewing changes to libbalsa/misc.c

  • Committer: Peter Bloomfield
  • Author(s): Piotr Drąg
  • Date: 2016-11-23 01:07:26 UTC
  • Revision ID: git-v1:55746ccf7e59a9f001eb797cc38808b9bbb94af6
Clean some translatable strings

Typo fixes, correct capitalization, double spaces, etc.

Signed-off-by: Peter Bloomfield <PeterBloomfield@bellsouth.net>

Show diffs side-by-side

added added

removed removed

Lines of Context:
593
593
/* The LibBalsaCodeset enum is not used for anything currently, but this
594
594
 * list must be the same length, and should probably be kept consistent: */
595
595
LibBalsaCodesetInfo libbalsa_codeset_info[LIBBALSA_NUM_CODESETS] = {
596
 
    {N_("west european"),       /* WEST_EUROPE          */
 
596
    {N_("West European"),       /* WEST_EUROPE          */
597
597
     "iso-8859-1", "windows-1252"} ,
598
 
    {N_("east european"),       /* EAST_EUROPE          */
 
598
    {N_("East European"),       /* EAST_EUROPE          */
599
599
     "iso-8859-2", "windows-1250"} ,
600
 
    {N_("south european"),      /* SOUTH_EUROPE         */
 
600
    {N_("South European"),      /* SOUTH_EUROPE         */
601
601
     "iso-8859-3"} ,
602
 
    {N_("north european"),      /* NORTH_EUROPE         */
 
602
    {N_("North European"),      /* NORTH_EUROPE         */
603
603
     "iso-8859-4"} ,
604
 
    {N_("cyrillic"),            /* CYRILLIC             */
 
604
    {N_("Cyrillic"),            /* CYRILLIC             */
605
605
     "iso-8859-5", "windows-1251"} ,
606
 
    {N_("arabic"),              /* ARABIC               */
 
606
    {N_("Arabic"),              /* ARABIC               */
607
607
     "iso-8859-6", "windows-1256"} ,
608
 
    {N_("greek"),               /* GREEK                */
 
608
    {N_("Greek"),               /* GREEK                */
609
609
     "iso-8859-7", "windows-1253"} ,
610
 
    {N_("hebrew"),              /* HEBREW               */
 
610
    {N_("Hebrew"),              /* HEBREW               */
611
611
     "iso-8859-8", "windows-1255"} ,
612
 
    {N_("turkish"),             /* TURKISH              */
 
612
    {N_("Turkish"),             /* TURKISH              */
613
613
     "iso-8859-9", "windows-1254"} ,
614
 
    {N_("nordic"),              /* NORDIC               */
 
614
    {N_("Nordic"),              /* NORDIC               */
615
615
     "iso-8859-10"} ,
616
 
    {N_("thai"),                /* THAI                 */
 
616
    {N_("Thai"),                /* THAI                 */
617
617
     "iso-8859-11"} ,
618
 
    {N_("baltic"),              /* BALTIC               */
 
618
    {N_("Baltic"),              /* BALTIC               */
619
619
     "iso-8859-13", "windows-1257"} ,
620
 
    {N_("celtic"),              /* CELTIC               */
 
620
    {N_("Celtic"),              /* CELTIC               */
621
621
     "iso-8859-14"} ,
622
 
    {N_("west europe (euro)"),  /* WEST_EUROPE_EURO     */
 
622
    {N_("West European (euro)"),  /* WEST_EUROPE_EURO     */
623
623
     "iso-8859-15"} ,
624
 
    {N_("russian"),             /* RUSSIAN              */
 
624
    {N_("Russian"),             /* RUSSIAN              */
625
625
     "koi-8r"} ,
626
 
    {N_("ukrainian"),           /* UKRAINE              */
 
626
    {N_("Ukrainian"),           /* UKRAINE              */
627
627
     "koi-8u"} ,
628
 
    {N_("japanese"),            /* JAPAN                */
 
628
    {N_("Japanese"),            /* JAPAN                */
629
629
     "iso-2022-jp"} ,
630
 
    {N_("korean"),              /* KOREA                */
 
630
    {N_("Korean"),              /* KOREA                */
631
631
     "euc-kr"} ,
632
 
    {N_("east european"),       /* EAST_EUROPE_WIN      */
 
632
    {N_("East European"),       /* EAST_EUROPE_WIN      */
633
633
     "windows-1250"} ,
634
 
    {N_("cyrillic"),            /* CYRILLIC_WIN         */
 
634
    {N_("Cyrillic"),            /* CYRILLIC_WIN         */
635
635
     "windows-1251"} ,
636
 
    {N_("greek"),               /* GREEK_WIN            */
 
636
    {N_("Greek"),               /* GREEK_WIN            */
637
637
     "windows-1253"} ,
638
 
    {N_("hebrew"),              /* HEBREW_WIN           */
 
638
    {N_("Hebrew"),              /* HEBREW_WIN           */
639
639
     "windows-1255"} ,
640
 
    {N_("arabic"),              /* ARABIC_WIN           */
 
640
    {N_("Arabic"),              /* ARABIC_WIN           */
641
641
     "windows-1256"} ,
642
 
    {N_("baltic"),              /* BALTIC_WIN           */
 
642
    {N_("Baltic"),              /* BALTIC_WIN           */
643
643
     "windows-1257"} ,
644
644
};
645
645