All Downloads are FREE. Search and download functionalities are using the official Maven repository.

client.js.otp.locale.Portuguese.js Maven / Gradle / Ivy

/* This program is free software: you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public License
   as published by the Free Software Foundation, either version 3 of
   the License, or (at your option) any later version.
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see . 
*/

otp.namespace("otp.locale");

/**
  * @class
  */
otp.locale.Portuguese = {

    config :
    {
        //Name of a language written in a language itself (Used in Frontend to
        //choose a language)
        name: 'Portuguese',
        //FALSE-imperial units are used
        //TRUE-Metric units are used
        metric : true, 
        //Name of localization file (*.po file) in src/client/i18n
        locale_short : "pt",
        //Name of datepicker localization in
        //src/client/js/lib/jquery-ui/i18n (usually
        //same as locale_short)
        //this is index in $.datepicker.regional array
        //If file for your language doesn't exist download it from here
        //https://github.com/jquery/jquery-ui/tree/1-9-stable/ui/i18n
        //into src/client/js/lib/jquery-ui/i18n
        //and add it in index.html after other localizations
        //It will be used automatically when UI is switched to this locale
        datepicker_locale_short: "pt" //Doesn't use localization

    },

    /**
     * Info Widgets: a list of the non-module-specific "information widgets"
     * that can be accessed from the top bar of the client display. Expressed as
     * an array of objects, where each object has the following fields:
     * - content:  the HTML content of the widget
     * - [title]:  the title of the widget
     * - [cssClass]:  the name of a CSS class to apply to the widget.
     * If not specified, the default styling is used.
     */
    infoWidgets : [
            {
                title: 'Acerca',
                content: '

Acerca do site...

', //cssClass: 'otp-contactWidget', }, { title: 'Contactos', content: '

Contacta-nos em...

' }, ], time : { format : "DD.MM.YY [à] H:mm", //moment.js date_format : "DD/MM/YYYY", //momentjs must be same as date_picker format which is by default: mm/dd/yy time_format : "HH:mm", //momentjs time_format_picker : "HH:mm", //http://trentrichardson.com/examples/timepicker/#tp-formatting }, CLASS_NAME : "otp.locale.Portugues" };




© 2015 - 2024 Weber Informatics LLC | Privacy Policy