I found 2 small bugs.

1. There is no t() in line 299 of locale.inc.

    '#description' => t('Generate a gettext Portable Object Template (.pot) file with all the interface strings from the Drupal locale database.'),

2. and lost "Volapuk" in line 1532.

        "vo" => array("Volapuk", "Volapuk"),
CommentFileSizeAuthor
#6 locale.inc_3.patch948 byteswulff
#1 locale.inc_1.patch921 byteswulff
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

wulff’s picture

FileSize
921 bytes

Attached patch for missing call to t().

Judging from the rest of the array, I don't think the missing "Volapuk" is an error.

killes@www.drop.org’s picture

Status: Active » Fixed

applied

Takafumi’s picture

Status: Fixed » Active

Please stare at "u" in the first array. It's multi-byte character.
The first array should be single-byte character.

wulff’s picture

Correct me if I'm wrong, but isn't the first element in the array simply the English name of the language?

Takafumi’s picture

Priority: Normal » Minor

No, the first element is already translated "Volap\xC3\xBCk". I think it's necessary to define "Volap\x75k" there accurately.

wulff’s picture

FileSize
948 bytes

According to my dictionary, Volap\xC3\xBCk is allowed in English.

However, this is not something I feel very strongly about, so here's a patch adding Volap\x75k (it also adds the native name of Danish).

killes@www.drop.org’s picture

Volapük is an artificial language that fell out of fashion. I propose to remove it. I added Dansk as native term.

wulff’s picture

That's probably a good idea. It's not worth wasting too much time discussing it.

killes@www.drop.org’s picture

Status: Active » Fixed

done

Anonymous’s picture

Status: Fixed » Closed (fixed)