fusionpbx/app/music_on_hold/app_config.php

144 lines
7.1 KiB
PHP
Raw Normal View History

<?php
2017-02-16 06:49:17 +01:00
//application details
$apps[$x]['name'] = "Music on Hold";
$apps[$x]['uuid'] = "1dafe0f8-c08a-289b-0312-15baf4f20f81";
$apps[$x]['category'] = "Switch";
$apps[$x]['subcategory'] = "";
$apps[$x]['version'] = "1.0";
$apps[$x]['license'] = "Mozilla Public License 1.1";
$apps[$x]['url'] = "http://www.fusionpbx.com";
$apps[$x]['description']['en-us'] = "Add, Delete, or Play Music on hold files.";
$apps[$x]['description']['en-gb'] = "Add, Delete, or Play Music on hold files.";
$apps[$x]['description']['ar-eg'] = "";
$apps[$x]['description']['de-at'] = "Dateien für die Wartemusik hinzufügen, löschen oder abspielen.";
$apps[$x]['description']['de-ch'] = "";
$apps[$x]['description']['de-de'] = "Dateien für die Wartemusik hinzufügen, löschen oder abspielen.";
$apps[$x]['description']['es-cl'] = "Agregar, Eliminar o Reproducir archivos de música en espera";
$apps[$x]['description']['es-mx'] = "";
$apps[$x]['description']['fr-ca'] = "";
$apps[$x]['description']['fr-fr'] = "Ajouter, Supprimer ou Lire les fichiers de Musique de Garde.";
$apps[$x]['description']['he-il'] = "";
$apps[$x]['description']['it-it'] = "";
nl-nl translations next batch. (#4892) * add nl-nl items * Update app_config.php * add nl-nl items * Update app_languages.php * Update app_menu.php * Update app_languages.php * Update app_menu.php * Fix typos inn nl-nl * Add nl-nl items * dd nl-nl items. * Add nl-nl items. * Add nl-nl items (call-flows) * Add nl-nl items * Add nl-nl items * dd nl-nl items (calls) * Add nl-nl items * Add nl-nl items (contacts) * Add nl-nl items (vars) * Add nl-nl items (voicemails) * Add nl-nl items (xml_cdr) * Add nl-nl items (xml_cdr) * This reverts commit 41afeb4796ca9868ea69db55decb7e4df048e5e9. * Add nl-nl items (voicemail_greetings) * Add nl-nl items (system) * Add nl-nl items (sip_profiles) * Add nl-nl items (sip_status) * Add nl-nl items (settings) * Add nl-nl items (database_transactions) * Add nl-nl items (destinations) * Add nl-nl (devices) * Add nl-nl (conferences) * Add nl-nl (conferences_active) * Add nl-nl (conference_centers) * Update nl-nl (conference_centers) * Add nl-nl (conference_controls) * Add nl-nl items (conference_profiles) * Add nl-nl items (dialplan_inbound) * Add nl-nl items (dialplan_inbound) * Add nl-nl items (dialplan_outbound) * Add nl-nl items (dialplans) * Add nl-nl items (edit) * Add nl-nl items (email_logs) * Add nl-nl items (errors) * Add nl-nl items (exec) * Add nl-nl items (access_controls) * some skipped entries * add nl-nl items (extensions) * add nl-nl items (fifo) * fixed translation, better fitting word kenmerk instead of etiket * add nl-nl items (fifo_list) * add nl-nl items (follow_me) * add nl-nl items (gateways) * add nl-nl items (ivr_menus) * add nl-nl items (meetings) * add nl-nl items (log_viewer) * add nl-nl items (ring_groups) * add nl-nl items (messages) * add nl-nl items (modules) * add nl-nl items (music_on_hold) * add nl-nl items (number_translations) * fix merge conflict (gateways)
2019-11-23 01:37:36 +01:00
$apps[$x]['description']['nl-nl'] = "Voeg toe, verwijder of speel wachtmuziek bestanden.";
$apps[$x]['description']['pl-pl'] = "";
$apps[$x]['description']['pt-br'] = "";
$apps[$x]['description']['pt-pt'] = "Adicionar, excluir ou reproduzir música em arquivos de espera.";
$apps[$x]['description']['ro-ro'] = "";
$apps[$x]['description']['ru-ru'] = "";
$apps[$x]['description']['sv-se'] = "";
$apps[$x]['description']['uk-ua'] = "";
//permission details
2017-02-16 06:49:17 +01:00
$y=0;
$apps[$x]['permissions'][$y]['name'] = "music_on_hold_view";
$apps[$x]['permissions'][$y]['menu']['uuid'] = "1cd1d6cb-912d-db32-56c3-e0d5699feb9d";
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
$y++;
$apps[$x]['permissions'][$y]['name'] = "music_on_hold_add";
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
$y++;
$apps[$x]['permissions'][$y]['name'] = "music_on_hold_edit";
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
$y++;
$apps[$x]['permissions'][$y]['name'] = "music_on_hold_delete";
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
$y++;
$apps[$x]['permissions'][$y]['name'] = "music_on_hold_all";
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
$y++;
$apps[$x]['permissions'][$y]['name'] = "music_on_hold_name";
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
$y++;
$apps[$x]['permissions'][$y]['name'] = "music_on_hold_domain";
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
$y++;
$apps[$x]['permissions'][$y]['name'] = "music_on_hold_path";
$apps[$x]['permissions'][$y]['groups'][] = "superadmin";
2016-05-11 03:09:45 +02:00
//schema details
2017-02-16 06:49:17 +01:00
$y=0;
$apps[$x]['db'][$y]['table']['name'] = "v_music_on_hold";
$apps[$x]['db'][$y]['table']['parent'] = "";
$z=0;
2016-05-11 03:09:45 +02:00
$apps[$x]['db'][$y]['fields'][$z]['name'] = "music_on_hold_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'] = "";
$z++;
2016-05-11 03:09:45 +02:00
$apps[$x]['db'][$y]['fields'][$z]['name'] = "music_on_hold_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'] = "music_on_hold_path";
$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'] = "music_on_hold_rate";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "8000,16000,32000,48000";
$z++;
2016-05-11 03:09:45 +02:00
$apps[$x]['db'][$y]['fields'][$z]['name'] = "music_on_hold_shuffle";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "true/false";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "music_on_hold_channels";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "1-mono, 2-stereo";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "music_on_hold_interval";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "milliseconds";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "music_on_hold_timer_name";
2016-05-11 03:09:45 +02:00
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "soft";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "music_on_hold_chime_list";
$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'] = "music_on_hold_chime_freq";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric";
2016-05-11 03:09:45 +02:00
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "music_on_hold_chime_max";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric";
2016-05-11 03:09:45 +02:00
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "insert_date";
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'timestamptz';
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'date';
$apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'date';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "insert_user";
$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]['description']['en-us'] = "";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "update_date";
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'timestamptz';
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'date';
$apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'date';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "update_user";
$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]['description']['en-us'] = "";
2016-05-11 03:09:45 +02:00
?>