Commit a815b654 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

SO friendliness

parent 4ac6e6df
......@@ -29,11 +29,11 @@
struct iso639_lang_t
{
const char * psz_eng_name; /* Description in English */
const char * psz_native_name; /* Description in native language */
const char * psz_iso639_1; /* ISO-639-1 (2 characters) code */
const char * psz_iso639_2T; /* ISO-639-2/T (3 characters) English code */
const char * psz_iso639_2B; /* ISO-639-2/B (3 characters) native code */
const char *psz_eng_name; /* Description in English */
const char *psz_native_name; /* Description in native language */
const char psz_iso639_1[3]; /* ISO-639-1 (2 characters) code */
const char psz_iso639_2T[4]; /* ISO-639-2/T (3 characters) English code */
const char psz_iso639_2B[4]; /* ISO-639-2/B (3 characters) native code */
};
#if defined( __cplusplus )
......
......@@ -201,6 +201,6 @@ static const iso639_lang_t p_languages[] =
{ N_( "Yoruba" ), "", "yo", "yor", "yor" },
{ N_( "Zhuang" ), "", "za", "zha", "zha" },
{ N_( "Zulu" ), "", "zu", "zul", "zul" },
{ NULL, NULL, NULL, NULL, NULL }
{ NULL, NULL, "", "", "" }
};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment