mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-06 19:53:56 +00:00
changed single quote to double quotes everywhere
This commit is contained in:
@@ -1,108 +1,108 @@
|
||||
<?php
|
||||
//application details
|
||||
$apps[$x]['name'] = "Variables";
|
||||
$apps[$x]['uuid'] = '54e08402-c1b8-0a9d-a30a-f569fc174dd8';
|
||||
$apps[$x]['category'] = 'Switch';;
|
||||
$apps[$x]['subcategory'] = '';
|
||||
$apps[$x]['version'] = '';
|
||||
$apps[$x]['license'] = 'Mozilla Public License 1.1';
|
||||
$apps[$x]['url'] = 'http://www.fusionpbx.com';
|
||||
$apps[$x]['description']['en-us'] = 'Define variables that are used by the switch, provisioning, and more.';
|
||||
$apps[$x]['description']['es-mx'] = '';
|
||||
$apps[$x]['description']['de-de'] = '';
|
||||
$apps[$x]['description']['de-ch'] = '';
|
||||
$apps[$x]['description']['de-at'] = '';
|
||||
$apps[$x]['uuid'] = "54e08402-c1b8-0a9d-a30a-f569fc174dd8";
|
||||
$apps[$x]['category'] = "Switch";;
|
||||
$apps[$x]['subcategory'] = "";
|
||||
$apps[$x]['version'] = "";
|
||||
$apps[$x]['license'] = "Mozilla Public License 1.1";
|
||||
$apps[$x]['url'] = "http://www.fusionpbx.com";
|
||||
$apps[$x]['description']['en-us'] = "Define variables that are used by the switch, provisioning, and more.";
|
||||
$apps[$x]['description']['es-mx'] = "";
|
||||
$apps[$x]['description']['de-de'] = "";
|
||||
$apps[$x]['description']['de-ch'] = "";
|
||||
$apps[$x]['description']['de-at'] = "";
|
||||
$apps[$x]['description']['fr-fr'] = "Définr les variables utilisées par le switch, le provisioning et plus.";
|
||||
$apps[$x]['description']['fr-ca'] = '';
|
||||
$apps[$x]['description']['fr-ch'] = '';
|
||||
$apps[$x]['description']['pt-pt'] = 'Definir variáveis que são usadas pela chave, provisionamento, e muito mais.';
|
||||
$apps[$x]['description']['pt-br'] = '';
|
||||
$apps[$x]['description']['fr-ca'] = "";
|
||||
$apps[$x]['description']['fr-ch'] = "";
|
||||
$apps[$x]['description']['pt-pt'] = "Definir variáveis que são usadas pela chave, provisionamento, e muito mais.";
|
||||
$apps[$x]['description']['pt-br'] = "";
|
||||
|
||||
//menu details
|
||||
$apps[$x]['menu'][0]['title']['en-us'] = 'Variables';
|
||||
$apps[$x]['menu'][0]['title']['es-mx'] = '';
|
||||
$apps[$x]['menu'][0]['title']['de-de'] = '';
|
||||
$apps[$x]['menu'][0]['title']['de-ch'] = '';
|
||||
$apps[$x]['menu'][0]['title']['de-at'] = '';
|
||||
$apps[$x]['menu'][0]['title']['en-us'] = "Variables";
|
||||
$apps[$x]['menu'][0]['title']['es-mx'] = "";
|
||||
$apps[$x]['menu'][0]['title']['de-de'] = "";
|
||||
$apps[$x]['menu'][0]['title']['de-ch'] = "";
|
||||
$apps[$x]['menu'][0]['title']['de-at'] = "";
|
||||
$apps[$x]['menu'][0]['title']['fr-fr'] = "Variables";
|
||||
$apps[$x]['menu'][0]['title']['fr-ca'] = '';
|
||||
$apps[$x]['menu'][0]['title']['fr-ch'] = '';
|
||||
$apps[$x]['menu'][0]['title']['fr-ca'] = "";
|
||||
$apps[$x]['menu'][0]['title']['fr-ch'] = "";
|
||||
$apps[$x]['menu'][0]['title']['pt-pt'] = "Variaveis";
|
||||
$apps[$x]['menu'][0]['title']['pt-br'] = '';
|
||||
$apps[$x]['menu'][0]['uuid'] = '7a4e9ec5-24b9-7200-89b8-d70bf8afdd8f';
|
||||
$apps[$x]['menu'][0]['parent_uuid'] = '02194288-6d56-6d3e-0b1a-d53a2bc10788';
|
||||
$apps[$x]['menu'][0]['category'] = 'internal';
|
||||
$apps[$x]['menu'][0]['path'] = '/app/vars/vars.php';
|
||||
$apps[$x]['menu'][0]['groups'][] = 'superadmin';
|
||||
$apps[$x]['menu'][0]['title']['pt-br'] = "";
|
||||
$apps[$x]['menu'][0]['uuid'] = "7a4e9ec5-24b9-7200-89b8-d70bf8afdd8f";
|
||||
$apps[$x]['menu'][0]['parent_uuid'] = "02194288-6d56-6d3e-0b1a-d53a2bc10788";
|
||||
$apps[$x]['menu'][0]['category'] = "internal";
|
||||
$apps[$x]['menu'][0]['path'] = "/app/vars/vars.php";
|
||||
$apps[$x]['menu'][0]['groups'][] = "superadmin";
|
||||
|
||||
//permission details
|
||||
$y = 0;
|
||||
$apps[$x]['permissions'][$y]['name'] = 'var_view';
|
||||
$apps[$x]['permissions'][$y]['groups'][] = 'superadmin';
|
||||
$apps[$x]['permissions'][$y]['name'] = "var_view";
|
||||
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
||||
$y++;
|
||||
$apps[$x]['permissions'][$y]['name'] = 'var_add';
|
||||
$apps[$x]['permissions'][$y]['groups'][] = 'superadmin';
|
||||
$apps[$x]['permissions'][$y]['name'] = "var_add";
|
||||
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
||||
$y++;
|
||||
$apps[$x]['permissions'][$y]['name'] = 'var_edit';
|
||||
$apps[$x]['permissions'][$y]['groups'][] = 'superadmin';
|
||||
$apps[$x]['permissions'][$y]['name'] = "var_edit";
|
||||
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
||||
$y++;
|
||||
$apps[$x]['permissions'][$y]['name'] = 'var_delete';
|
||||
$apps[$x]['permissions'][$y]['groups'][] = 'superadmin';
|
||||
$apps[$x]['permissions'][$y]['name'] = "var_delete";
|
||||
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
|
||||
|
||||
//schema details
|
||||
$apps[$x]['db'][$y]['table'] = 'v_vars';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = 'id';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = 'var_id';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'serial';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'integer';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'INT NOT NULL AUTO_INCREMENT';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = '';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['deprecated'] = 'true';
|
||||
$apps[$x]['db'][$y]['table'] = "v_vars";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "id";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "var_id";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "serial";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "integer";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "INT NOT NULL AUTO_INCREMENT";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['deprecated'] = "true";
|
||||
$z++;
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'var_uuid';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'uuid';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'text';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'char(36)';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['key']['type'] = 'primary';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = '';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = "var_uuid";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['key']['type'] = "primary";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||
$z++;
|
||||
//$apps[$x]['db'][$y]['fields'][$z]['name'] = 'domain_uuid';
|
||||
//$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'uuid';
|
||||
//$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'text';
|
||||
//$apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'char(36)';
|
||||
//$apps[$x]['db'][$y]['fields'][$z]['key']['type'] = 'foreign';
|
||||
//$apps[$x]['db'][$y]['fields'][$z]['key']['reference']['table'] = 'v_domains';
|
||||
//$apps[$x]['db'][$y]['fields'][$z]['key']['reference']['field'] = 'domain_uuid';
|
||||
//$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = '';
|
||||
//$apps[$x]['db'][$y]['fields'][$z]['name'] = "domain_uuid";
|
||||
//$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
|
||||
//$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
||||
//$apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)";
|
||||
//$apps[$x]['db'][$y]['fields'][$z]['key']['type'] = "foreign";
|
||||
//$apps[$x]['db'][$y]['fields'][$z]['key']['reference']['table'] = "v_domains";
|
||||
//$apps[$x]['db'][$y]['fields'][$z]['key']['reference']['field'] = "domain_uuid";
|
||||
//$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||
//$z++;
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'v_id';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = '';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['deprecated'] = 'true';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = "v_id";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['deprecated'] = "true";
|
||||
$z++;
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'var_name';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = '';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = "var_name";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||
$z++;
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'var_value';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = '';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = "var_value";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||
$z++;
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'var_cat';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = '';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = "var_cat";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||
$z++;
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'var_enabled';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = '';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = "var_enabled";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||
$z++;
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'var_order';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'numeric';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = '';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = "var_order";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||
$z++;
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = 'var_description';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = 'var_desc';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = '';
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "var_description";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "var_desc";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||
|
||||
?>
|
||||
|
||||
@@ -2,80 +2,80 @@
|
||||
|
||||
//Variables
|
||||
|
||||
$text['title-variables']['en-us'] = 'Switch Variables';
|
||||
$text['title-variables']['fr-fr'] = 'Variables Système';
|
||||
$text['title-variable_add']['en-us'] = 'Variable Add';
|
||||
$text['title-variable_add']['fr-fr'] = 'Ajouter une Variable';
|
||||
$text['title-variable_edit']['en-us'] = 'Variable Edit';
|
||||
$text['title-variable_edit']['fr-fr'] = 'Editer la Variable';
|
||||
$text['title-variables_advanced']['en-us'] = 'Switch Variables: Advanced';
|
||||
$text['title-variables_advanced']['fr-fr'] = 'Variables Système: Avancé';
|
||||
$text['title-variables']['en-us'] = "Switch Variables";
|
||||
$text['title-variables']['fr-fr'] = "Variables Système";
|
||||
$text['title-variable_add']['en-us'] = "Variable Add";
|
||||
$text['title-variable_add']['fr-fr'] = "Ajouter une Variable";
|
||||
$text['title-variable_edit']['en-us'] = "Variable Edit";
|
||||
$text['title-variable_edit']['fr-fr'] = "Editer la Variable";
|
||||
$text['title-variables_advanced']['en-us'] = "Switch Variables: Advanced";
|
||||
$text['title-variables_advanced']['fr-fr'] = "Variables Système: Avancé";
|
||||
|
||||
$text['header-variables']['en-us'] = 'Switch Variables';
|
||||
$text['header-variables']['fr-fr'] = 'Variables Système';
|
||||
$text['header-variable_add']['en-us'] = 'Variable Add';
|
||||
$text['header-variable_add']['fr-fr'] = 'Ajouter une Variable';
|
||||
$text['header-variable_edit']['en-us'] = 'Variable Edit';
|
||||
$text['header-variable_edit']['fr-fr'] = 'Editer la Variable';
|
||||
$text['header-variables_advanced']['en-us'] = 'Switch Variables: Advanced';
|
||||
$text['header-variables_advanced']['fr-fr'] = 'Variables Système: Avancé';
|
||||
$text['header-variables']['en-us'] = "Switch Variables";
|
||||
$text['header-variables']['fr-fr'] = "Variables Système";
|
||||
$text['header-variable_add']['en-us'] = "Variable Add";
|
||||
$text['header-variable_add']['fr-fr'] = "Ajouter une Variable";
|
||||
$text['header-variable_edit']['en-us'] = "Variable Edit";
|
||||
$text['header-variable_edit']['fr-fr'] = "Editer la Variable";
|
||||
$text['header-variables_advanced']['en-us'] = "Switch Variables: Advanced";
|
||||
$text['header-variables_advanced']['fr-fr'] = "Variables Système: Avancé";
|
||||
|
||||
$text['description-variables']['en-us'] = 'Define preprocessor variables here.';
|
||||
$text['description-variables']['fr-fr'] = 'Définir ici les variables préprocessées.';
|
||||
$text['description-variables_advanced']['en-us'] = 'Define preprocessor variables here. Can be accessed in the xml configation with $${var_name}.';
|
||||
$text['description-variables_advanced']['fr-fr'] = 'Définir ici les variables préprocessées. Se retrouve dans la configuration XML avec $${var_name}.';
|
||||
$text['description-variables']['en-us'] = "Define preprocessor variables here.";
|
||||
$text['description-variables']['fr-fr'] = "Définir ici les variables préprocessées.";
|
||||
$text['description-variables_advanced']['en-us'] = "Define preprocessor variables here. Can be accessed in the xml configation with $${var_name}.";
|
||||
$text['description-variables_advanced']['fr-fr'] = "Définir ici les variables préprocessées. Se retrouve dans la configuration XML avec $${var_name}.";
|
||||
|
||||
|
||||
$text['label-name']['en-us'] = 'Name';
|
||||
$text['label-name']['fr-fr'] = 'Nom';
|
||||
$text['label-value']['en-us'] = 'Value';
|
||||
$text['label-value']['fr-fr'] = 'Valeur';
|
||||
$text['label-category']['en-us'] = 'Category';
|
||||
$text['label-category']['fr-fr'] = 'Cateégorie';
|
||||
$text['label-enabled']['en-us'] = 'Enabled';
|
||||
$text['label-enabled']['fr-fr'] = 'Actif';
|
||||
$text['label-order']['en-us'] = 'Order';
|
||||
$text['label-order']['fr-fr'] = 'Ordre';
|
||||
$text['label-description']['en-us'] = 'Description';
|
||||
$text['label-description']['fr-fr'] = 'Description';
|
||||
$text['label-codec_information']['en-us'] = 'Codec Information';
|
||||
$text['label-codec_information']['fr-fr'] = 'Codec Information';
|
||||
$text['label-name']['en-us'] = "Name";
|
||||
$text['label-name']['fr-fr'] = "Nom";
|
||||
$text['label-value']['en-us'] = "Value";
|
||||
$text['label-value']['fr-fr'] = "Valeur";
|
||||
$text['label-category']['en-us'] = "Category";
|
||||
$text['label-category']['fr-fr'] = "Cateégorie";
|
||||
$text['label-enabled']['en-us'] = "Enabled";
|
||||
$text['label-enabled']['fr-fr'] = "Actif";
|
||||
$text['label-order']['en-us'] = "Order";
|
||||
$text['label-order']['fr-fr'] = "Ordre";
|
||||
$text['label-description']['en-us'] = "Description";
|
||||
$text['label-description']['fr-fr'] = "Description";
|
||||
$text['label-codec_information']['en-us'] = "Codec Information";
|
||||
$text['label-codec_information']['fr-fr'] = "Codec Information";
|
||||
|
||||
$text['description-name']['en-us'] = 'Enter the variable name.';
|
||||
$text['description-name']['fr-fr'] = '';
|
||||
$text['description-value']['en-us'] = 'Enter the variable value.';
|
||||
$text['description-value']['fr-fr'] = '';
|
||||
$text['description-category']['en-us'] = 'Select the category.';
|
||||
$text['description-category']['fr-fr'] = '';
|
||||
$text['description-name']['en-us'] = "Enter the variable name.";
|
||||
$text['description-name']['fr-fr'] = "";
|
||||
$text['description-value']['en-us'] = "Enter the variable value.";
|
||||
$text['description-value']['fr-fr'] = "";
|
||||
$text['description-category']['en-us'] = "Select the category.";
|
||||
$text['description-category']['fr-fr'] = "";
|
||||
|
||||
$text['option-true']['en-us'] = 'True';
|
||||
$text['option-true']['fr-fr'] = 'Oui';
|
||||
$text['option-false']['en-us'] = 'False';
|
||||
$text['option-false']['fr-fr'] = 'Non';
|
||||
$text['option-true']['en-us'] = "True";
|
||||
$text['option-true']['fr-fr'] = "Oui";
|
||||
$text['option-false']['en-us'] = "False";
|
||||
$text['option-false']['fr-fr'] = "Non";
|
||||
|
||||
$text['button-add']['en-us'] = 'Add';
|
||||
$text['button-add']['fr-fr'] = 'Ajouter';
|
||||
$text['button-edit']['en-us'] = 'Edit';
|
||||
$text['button-edit']['fr-fr'] = 'Editer';
|
||||
$text['button-delete']['en-us'] = 'Delete';
|
||||
$text['button-delete']['fr-fr'] = 'Supprimer';
|
||||
$text['button-back']['en-us'] = 'Back';
|
||||
$text['button-back']['fr-fr'] = 'Retour';
|
||||
$text['button-save']['en-us'] = 'Save';
|
||||
$text['button-save']['fr-fr'] = 'Sauvegarder';
|
||||
$text['button-restore']['en-us'] = 'Restore Default';
|
||||
$text['button-restore']['fr-fr'] = 'Restaurer';
|
||||
$text['button-add']['en-us'] = "Add";
|
||||
$text['button-add']['fr-fr'] = "Ajouter";
|
||||
$text['button-edit']['en-us'] = "Edit";
|
||||
$text['button-edit']['fr-fr'] = "Editer";
|
||||
$text['button-delete']['en-us'] = "Delete";
|
||||
$text['button-delete']['fr-fr'] = "Supprimer";
|
||||
$text['button-back']['en-us'] = "Back";
|
||||
$text['button-back']['fr-fr'] = "Retour";
|
||||
$text['button-save']['en-us'] = "Save";
|
||||
$text['button-save']['fr-fr'] = "Sauvegarder";
|
||||
$text['button-restore']['en-us'] = "Restore Default";
|
||||
$text['button-restore']['fr-fr'] = "Restaurer";
|
||||
|
||||
$text['confirm-delete']['en-us'] = 'Do you really want to delete this?';
|
||||
$text['confirm-delete']['en-us'] = "Do you really want to delete this?";
|
||||
$text['confirm-delete']['fr-fr'] = "Voulez-vous vraiment supprimer cela?";
|
||||
|
||||
$text['message-add']['en-us'] = 'Add Completed';
|
||||
$text['message-add']['fr-fr'] = 'Ajouté';
|
||||
$text['message-update']['en-us'] = 'Update Completed';
|
||||
$text['message-update']['fr-fr'] = 'Mis à jour';
|
||||
$text['message-delete']['en-us'] = 'Delete Completed';
|
||||
$text['message-delete']['fr-fr'] = 'Supprimé';
|
||||
$text['message-required']['en-us'] = 'Please provide: ';
|
||||
$text['message-add']['en-us'] = "Add Completed";
|
||||
$text['message-add']['fr-fr'] = "Ajouté";
|
||||
$text['message-update']['en-us'] = "Update Completed";
|
||||
$text['message-update']['fr-fr'] = "Mis à jour";
|
||||
$text['message-delete']['en-us'] = "Delete Completed";
|
||||
$text['message-delete']['fr-fr'] = "Supprimé";
|
||||
$text['message-required']['en-us'] = "Please provide: ";
|
||||
$text['message-required']['fr-fr'] = "Merci d'indiquer: ";
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user