remove schema translations (#2638)

the schema should not have any translations on it as they are present
for reference only.
This removes the extra descriptions found and corrects some of the en to
en-us ones
This commit is contained in:
Mafoo
2017-06-03 19:34:19 +01:00
committed by FusionPBX
parent b7c8230e78
commit b2841c4a8c
10 changed files with 49 additions and 134 deletions

View File

@@ -69,17 +69,14 @@
$apps[$x]['db'][$y]['fields'][$z]['name'] = "access_control_name";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the name.";
$apps[$x]['db'][$y]['fields'][$z]['description']['pt-br'] = "Insira o nome";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "access_control_default";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Select the default type.";
$apps[$x]['db'][$y]['fields'][$z]['description']['pt-br'] = "Selecione o tipo padrão.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "access_control_description";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the description";
$apps[$x]['db'][$y]['fields'][$z]['description']['pt-br'] = "Insira com uma descrição";
$y++;
$apps[$x]['db'][$y]['table']['name'] = "v_access_control_nodes";
@@ -102,21 +99,17 @@
$apps[$x]['db'][$y]['fields'][$z]['name'] = "node_type";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Select the type.";
$apps[$x]['db'][$y]['fields'][$z]['description']['pt-br'] = "Selecione o tipo.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "node_cidr";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the IP CIDR range.";
$apps[$x]['db'][$y]['fields'][$z]['description']['pt-br'] = "Insira o intervalo IP CIDR.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "node_domain";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the domain.";
$apps[$x]['db'][$y]['fields'][$z]['description']['pt-br'] = "Insira com o domínio.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "node_description";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the description.";
$apps[$x]['db'][$y]['fields'][$z]['description']['pt-br'] = "Insira a descrição.";
?>