Update app_config.php (#5334)

* Update app_config.php

* change type to text for pin in conferences

in conference centers you can not save
a pin as 0123 it will save as 123 due in data base it was saved to numeric vrs text

* Update conference_edit.php

* Update app_languages.php

updated hebrew name for title

* Update app_languages.php

hebrew language for title conference_center

* Update app_languages.php

active_conferences he-il
This commit is contained in:
phoneben 2020-07-07 17:17:22 +03:00 committed by GitHub
parent 71854ba40e
commit 91f2f67fc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 13 additions and 13 deletions

View File

@ -11,7 +11,7 @@ $text['title-conference_centers']['es-cl'] = "Centro de Conferencias";
$text['title-conference_centers']['es-mx'] = "Centro de Conferencias"; //copied from es-cl
$text['title-conference_centers']['fr-ca'] = "Centre de conférence"; //copied from fr-fr
$text['title-conference_centers']['fr-fr'] = "Centre de conférence";
$text['title-conference_centers']['he-il'] = "";
$text['title-conference_centers']['he-il'] = "מרכזי ועידה";
$text['title-conference_centers']['it-it'] = "Centri Conferenza";
$text['title-conference_centers']['nl-nl'] = "Cenferentie centra";
$text['title-conference_centers']['pl-pl'] = "Centra Konferencyjne";

View File

@ -640,7 +640,7 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
echo " <tr>";
echo " <td class='vncell' valign='top'>".$text['label-moderator-pin']."</td>";
echo " <td class='vtable' align='left'>";
echo " <input class='formfld' type='text' name='moderator_pin' maxlength='255' value='".escape($moderator_pin)."'>\n";
echo " <input class='formfld' type='number' name='moderator_pin' maxlength='255' value='".escape($moderator_pin)."'>\n";
echo " <br />\n";
echo " ".$text['description-moderator_pin']."\n";
echo " </td>";
@ -649,7 +649,7 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
echo " <tr>";
echo " <td class='vncell' valign='top'>".$text['label-participant-pin']."</td>";
echo " <td class='vtable' align='left'>";
echo " <input class='formfld' type='text' name='participant_pin' maxlength='255' value='".escape($participant_pin)."'>\n";
echo " <input class='formfld' type='number' name='participant_pin' maxlength='255' value='".escape($participant_pin)."'>\n";
echo " <br />\n";
echo " ".$text['description-participant-pin']."\n";
echo " </td>";

View File

@ -11,7 +11,7 @@ $text['title-conferences']['es-cl'] = "Conferencias";
$text['title-conferences']['es-mx'] = "Conferencias"; //copied from es-cl
$text['title-conferences']['fr-ca'] = "Conférences"; //copied from fr-fr
$text['title-conferences']['fr-fr'] = "Conférences";
$text['title-conferences']['he-il'] = "";
$text['title-conferences']['he-il'] = "חדר ועידה";
$text['title-conferences']['it-it'] = "Conferenze";
$text['title-conferences']['nl-nl'] = "Conferenties";
$text['title-conferences']['pl-pl'] = "";

View File

@ -370,7 +370,7 @@
echo " ".$text['label-pin']."\n";
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
echo " <input class='formfld' type='text' name='conference_pin_number' maxlength='255' value=\"".escape($conference_pin_number)."\">\n";
echo " <input class='formfld' type='number' name='conference_pin_number' maxlength='255' value=\"".escape($conference_pin_number)."\">\n";
echo "<br />\n";
echo "".$text['description-pin']."\n";
echo "</td>\n";

View File

@ -11,7 +11,7 @@ $text['title-active_conferences']['es-cl'] = "Conferencias Activas";
$text['title-active_conferences']['es-mx'] = "Conferencias Activas"; //copied from es-cl
$text['title-active_conferences']['fr-ca'] = "Conférences Avtives"; //copied from fr-fr
$text['title-active_conferences']['fr-fr'] = "Conférences Avtives";
$text['title-active_conferences']['he-il'] = "";
$text['title-active_conferences']['he-il'] = "ניהול חדרי ועידה";
$text['title-active_conferences']['it-it'] = "Conferenze Attive";
$text['title-active_conferences']['nl-nl'] = "Aktieve conferenties";
$text['title-active_conferences']['pl-pl'] = "Aktywne konferencje";
@ -528,18 +528,18 @@ $text['label-mute']['uk-ua'] = "";
$text['label-hand_raised']['en-us'] = "Hand Raised";
$text['label-hand_raised']['ar-eg'] = "";
$text['label-hand_raised']['de-at'] = "";
$text['label-hand_raised']['de-ch'] = "";
$text['label-hand_raised']['de-at'] = "";
$text['label-hand_raised']['de-ch'] = "";
$text['label-hand_raised']['de-de'] = "";
$text['label-hand_raised']['es-cl'] = "";
$text['label-hand_raised']['es-mx'] = "";
$text['label-hand_raised']['fr-ca'] = "";
$text['label-hand_raised']['es-mx'] = "";
$text['label-hand_raised']['fr-ca'] = "";
$text['label-hand_raised']['fr-fr'] = "";
$text['label-hand_raised']['he-il'] = "";
$text['label-hand_raised']['it-it'] = "";
$text['label-hand_raised']['nl-nl'] = "";
$text['label-hand_raised']['pl-pl'] = "";
$text['label-hand_raised']['pt-br'] = "";
$text['label-hand_raised']['pt-br'] = "";
$text['label-hand_raised']['pt-pt'] = "";
$text['label-hand_raised']['ro-ro'] = "";
$text['label-hand_raised']['ru-ru'] = "";

View File

@ -83,11 +83,11 @@
$apps[$x]['db'][$y]['fields'][$z]['key']['type'] = "primary";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "moderator_pin";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the moderator PIN number.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "participant_pin";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the participant PIN number.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "enabled";