Index: templates/ja/option-conflict.tmpl =================================================================== --- templates/ja/option-conflict.tmpl (revision 8900) +++ templates/ja/option-conflict.tmpl (working copy) @@ -1,7 +1,7 @@

エラー: 以下のオプションは競合します:

競合を解決するために、1 つ以上のオプションを変更してください。

Index: templates/option-conflict.tmpl =================================================================== --- templates/option-conflict.tmpl (revision 8900) +++ templates/option-conflict.tmpl (working copy) @@ -1,7 +1,7 @@

Error: The following options are conflicting:

Please change one or more of the options to resolve the conflicts.

Index: templates/ru/option-conflict.tmpl =================================================================== --- templates/ru/option-conflict.tmpl (revision 8900) +++ templates/ru/option-conflict.tmpl (working copy) @@ -1,7 +1,7 @@

Ошибка: следующие параметры конфликтуют:

Измените один или несколько параметров для того, чтобы избежать конфликта.

Index: templates/de/option-conflict.tmpl =================================================================== --- templates/de/option-conflict.tmpl (revision 8900) +++ templates/de/option-conflict.tmpl (working copy) @@ -1,7 +1,7 @@

Error: The following options are conflicting:

Bitte ändern sie eine oder mehrere Einstellungen um die Konflikte zu lösen.

Index: templates/pl/option-conflict.tmpl =================================================================== --- templates/pl/option-conflict.tmpl (revision 8900) +++ templates/pl/option-conflict.tmpl (working copy) @@ -1,7 +1,7 @@

Błąd: następujące opcje są w konflikcie ze sobą:

Proszę zmienić jedną lub więcej opcji, aby rozwiązać konflikt.

Index: templates/id/option-conflict.tmpl =================================================================== --- templates/id/option-conflict.tmpl (revision 8900) +++ templates/id/option-conflict.tmpl (working copy) @@ -1,7 +1,7 @@

Kesalahan: Opsi berikut ini konflik:

Silakan ubah satu atau lebih opsi yang ada untuk memperbaiki masalah ini.

Index: templates/es/option-conflict.tmpl =================================================================== --- templates/es/option-conflict.tmpl (revision 8900) +++ templates/es/option-conflict.tmpl (working copy) @@ -1,7 +1,7 @@

Error: Las siguientes opciones están en conflicto:

Cambie una o más de las opciones para resolver el problema.

Index: templates/eu/option-conflict.tmpl =================================================================== --- templates/eu/option-conflict.tmpl (revision 8900) +++ templates/eu/option-conflict.tmpl (working copy) @@ -1,7 +1,7 @@

Errorea: honako aukerak gatazkan daude:

Aldatu aukera bat edo gehiago gatazkak ebazteko.

Index: cgi-bin/admin.c =================================================================== --- cgi-bin/admin.c (revision 8908) +++ cgi-bin/admin.c (working copy) @@ -3413,6 +3413,16 @@ { cgiSetArray("ckeyword", k, option->keyword); cgiSetArray("ckeytext", k, option->text); + + for (m = 0; m < option->num_choices; m ++) + { + if (option->choices[m].marked) + { + cgiSetArray("cchoice", k, option->choices[m].text); + break; + } + } + k ++; }