Initial Upload
This commit is contained in:
22
locale/README.md
Normal file
22
locale/README.md
Normal file
@@ -0,0 +1,22 @@
|
||||
# Xibo Translations
|
||||
Translations are managed in [Launchpad](https://translations.launchpad.net/xibo) and will updated to this folder before each release.
|
||||
|
||||
# Translators
|
||||
We greatly appreciate any translation contributions. There are two options.
|
||||
|
||||
## Translating Online
|
||||
Translations can be done using the Launchpad Web User Interface.
|
||||
|
||||
## Translating Offline
|
||||
1. Request a download of the language translation you are interested in doing from Launchpad.
|
||||
2. Download it when you receive the email
|
||||
3. Download and Install [PoEdit](http://poedit.net/)
|
||||
4. Open the PO file you downloaded in POEdit
|
||||
5. Make the translations
|
||||
6. Upload the file to Launchpad (making sure you are on the same language translation page)
|
||||
|
||||
Alternatively get the PO files from the translation export branch:
|
||||
|
||||
```bash
|
||||
bzr pull lp:~dangarner/xibo/swift-translations
|
||||
```
|
||||
BIN
locale/af.mo
Normal file
BIN
locale/af.mo
Normal file
Binary file not shown.
BIN
locale/ar.mo
Normal file
BIN
locale/ar.mo
Normal file
Binary file not shown.
BIN
locale/bg.mo
Normal file
BIN
locale/bg.mo
Normal file
Binary file not shown.
BIN
locale/ca.mo
Normal file
BIN
locale/ca.mo
Normal file
Binary file not shown.
BIN
locale/cs.mo
Normal file
BIN
locale/cs.mo
Normal file
Binary file not shown.
BIN
locale/da.mo
Normal file
BIN
locale/da.mo
Normal file
Binary file not shown.
170
locale/dbtranslate.php
Normal file
170
locale/dbtranslate.php
Normal file
@@ -0,0 +1,170 @@
|
||||
<?php
|
||||
/*
|
||||
* Xibo - Digital Signage - http://www.xibo.org.uk
|
||||
* Copyright (C) 2009-12 Daniel Garner
|
||||
*
|
||||
* This file is part of Xibo.
|
||||
*
|
||||
* Xibo is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* any later version.
|
||||
*
|
||||
* Xibo 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 Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
|
||||
/* Translations from the Database that need to be registered with Gettext */
|
||||
|
||||
// Transitions
|
||||
echo __('Fade In');
|
||||
echo __('Fade Out');
|
||||
echo __('Fly');
|
||||
|
||||
// Data Sets
|
||||
echo __('String');
|
||||
echo __('Number');
|
||||
echo __('Date');
|
||||
echo __('External Image');
|
||||
echo __('Library Image');
|
||||
|
||||
echo __('Value');
|
||||
echo __('Formula');
|
||||
|
||||
// Module names
|
||||
echo __('Data Set');
|
||||
echo __('DataSet View');
|
||||
echo __('A view on a DataSet');
|
||||
echo __('DataSet Ticker');
|
||||
echo __('Ticker with a DataSet providing the items');
|
||||
echo __('Ticker');
|
||||
echo __('RSS Ticker.');
|
||||
echo __('Text');
|
||||
echo __('Text. With Directional Controls.');
|
||||
echo __('Embedded');
|
||||
echo __('Embedded HTML');
|
||||
echo __('Image');
|
||||
echo __('Images. PNG, JPG, BMP, GIF');
|
||||
echo __('Video');
|
||||
echo __('Videos - support varies depending on the client hardware you are using.');
|
||||
echo __('Video In');
|
||||
echo __('A module for displaying Video and Audio from an external source');
|
||||
echo __('Flash');
|
||||
echo __('PowerPoint');
|
||||
echo __('Powerpoint. PPT, PPS');
|
||||
echo __('Webpage');
|
||||
echo __('Webpages.');
|
||||
echo __('Counter');
|
||||
echo __('Shell Command');
|
||||
echo __('Execute a shell command on the client');
|
||||
echo __('Local Video');
|
||||
echo __('Play a video locally stored on the client');
|
||||
echo __('Clock');
|
||||
echo __('Font');
|
||||
echo __('A font to use in other Modules');
|
||||
echo __('Generic File');
|
||||
echo __('A generic file to be stored in the library');
|
||||
echo __('Audio');
|
||||
echo __('Audio - support varies depending on the client hardware');
|
||||
echo __('PDF');
|
||||
echo __('PDF document viewer');
|
||||
echo __('Notification');
|
||||
echo __('Display Notifications from the Notification Centre');
|
||||
|
||||
echo __('Stocks Module');
|
||||
echo __('A module for showing Stock quotes');
|
||||
echo __('Currencies Module');
|
||||
echo __('A module for showing Currency pairs and exchange rates');
|
||||
|
||||
echo __('Stocks');
|
||||
echo __('Yahoo Stocks');
|
||||
echo __('Currencies');
|
||||
echo __('Yahoo Currencies');
|
||||
echo __('Finance');
|
||||
echo __('Yahoo Finance');
|
||||
echo __('Google Traffic');
|
||||
echo __('Google Traffic Map');
|
||||
echo __('HLS');
|
||||
echo __('HLS Video Stream');
|
||||
echo __('Twitter');
|
||||
echo __('Twitter Search Module');
|
||||
echo __('Twitter Metro');
|
||||
echo __('Twitter Metro Search Module');
|
||||
echo __('Weather');
|
||||
echo __('Weather module showing Current and Daily forecasts.');
|
||||
echo __('Sub-Playlist');
|
||||
echo __('Embed a Sub-Playlist');
|
||||
echo __('Countdown');
|
||||
|
||||
echo __('January');
|
||||
echo __('February');
|
||||
echo __('March');
|
||||
echo __('April');
|
||||
echo __('May');
|
||||
echo __('June');
|
||||
echo __('July');
|
||||
echo __('August');
|
||||
echo __('September');
|
||||
echo __('October');
|
||||
echo __('November');
|
||||
echo __('December');
|
||||
|
||||
// Dashboards
|
||||
echo __('Icon Dashboard');
|
||||
echo __('Status Dashboard');
|
||||
echo __('Media Dashboard');
|
||||
|
||||
// Application Scopes
|
||||
echo __('Full account access');
|
||||
echo __('Access to DataSets');
|
||||
echo __('Access to deleting DataSets');
|
||||
echo __('Access to Library, Layouts, Playlists, Widgets and Resolutions');
|
||||
echo __('Access to deleting content from Library, Layouts, Playlists, Widgets and Resolutions');
|
||||
echo __('Access to Displays and Display Groups');
|
||||
echo __('Access to deleting Displays and Display Groups');
|
||||
echo __('Media Conversion as a Service');
|
||||
echo __('Access to Scheduling');
|
||||
echo __('Access to deleting Scheduled Events');
|
||||
|
||||
// Widget Templates
|
||||
echo __('Primary');
|
||||
echo __('Secondary');
|
||||
echo __('Background');
|
||||
echo __('Header color');
|
||||
echo __('Header text');
|
||||
echo __('Disabled item text');
|
||||
echo __('Highlighted item text');
|
||||
echo __('Show product images?');
|
||||
echo __('Show category images?');
|
||||
echo __('Show header?');
|
||||
echo __('Product border colour');
|
||||
echo __('Title');
|
||||
echo __('Description');
|
||||
|
||||
// Display Types
|
||||
echo __('Billboard');
|
||||
echo __('Kiosk');
|
||||
echo __('LED Matrix / LED Video Wall');
|
||||
echo __('Monitor / Other');
|
||||
echo __('Projector');
|
||||
echo __('Shelf-edge Display');
|
||||
echo __('Smart Mirror');
|
||||
echo __('TV / Panel');
|
||||
echo __('Tablet');
|
||||
echo __('Totem');
|
||||
|
||||
// Weather templates
|
||||
echo __('Wind');
|
||||
echo __('Humidity');
|
||||
echo __('Feels Like');
|
||||
echo __('Right now');
|
||||
echo __('Pressure');
|
||||
echo __('Visibility');
|
||||
echo __('TODAY');
|
||||
echo __('RIGHT NOW');
|
||||
BIN
locale/de.mo
Normal file
BIN
locale/de.mo
Normal file
Binary file not shown.
27494
locale/default.pot
Executable file
27494
locale/default.pot
Executable file
File diff suppressed because it is too large
Load Diff
BIN
locale/el.mo
Normal file
BIN
locale/el.mo
Normal file
Binary file not shown.
BIN
locale/en_GB.mo
Normal file
BIN
locale/en_GB.mo
Normal file
Binary file not shown.
BIN
locale/es.mo
Normal file
BIN
locale/es.mo
Normal file
Binary file not shown.
BIN
locale/et.mo
Normal file
BIN
locale/et.mo
Normal file
Binary file not shown.
BIN
locale/eu.mo
Normal file
BIN
locale/eu.mo
Normal file
Binary file not shown.
BIN
locale/fa.mo
Normal file
BIN
locale/fa.mo
Normal file
Binary file not shown.
BIN
locale/fi.mo
Normal file
BIN
locale/fi.mo
Normal file
Binary file not shown.
BIN
locale/fr.mo
Normal file
BIN
locale/fr.mo
Normal file
Binary file not shown.
BIN
locale/fr_CA.mo
Normal file
BIN
locale/fr_CA.mo
Normal file
Binary file not shown.
BIN
locale/he.mo
Normal file
BIN
locale/he.mo
Normal file
Binary file not shown.
BIN
locale/hi.mo
Normal file
BIN
locale/hi.mo
Normal file
Binary file not shown.
BIN
locale/hr.mo
Normal file
BIN
locale/hr.mo
Normal file
Binary file not shown.
BIN
locale/hu.mo
Normal file
BIN
locale/hu.mo
Normal file
Binary file not shown.
BIN
locale/id.mo
Normal file
BIN
locale/id.mo
Normal file
Binary file not shown.
BIN
locale/it.mo
Normal file
BIN
locale/it.mo
Normal file
Binary file not shown.
BIN
locale/ja.mo
Normal file
BIN
locale/ja.mo
Normal file
Binary file not shown.
BIN
locale/ko.mo
Normal file
BIN
locale/ko.mo
Normal file
Binary file not shown.
BIN
locale/ku.mo
Normal file
BIN
locale/ku.mo
Normal file
Binary file not shown.
BIN
locale/lb.mo
Normal file
BIN
locale/lb.mo
Normal file
Binary file not shown.
BIN
locale/lo.mo
Normal file
BIN
locale/lo.mo
Normal file
Binary file not shown.
BIN
locale/lt.mo
Normal file
BIN
locale/lt.mo
Normal file
Binary file not shown.
BIN
locale/nb.mo
Normal file
BIN
locale/nb.mo
Normal file
Binary file not shown.
BIN
locale/nl.mo
Normal file
BIN
locale/nl.mo
Normal file
Binary file not shown.
BIN
locale/nl_NL.mo
Normal file
BIN
locale/nl_NL.mo
Normal file
Binary file not shown.
BIN
locale/pl.mo
Normal file
BIN
locale/pl.mo
Normal file
Binary file not shown.
BIN
locale/pt.mo
Normal file
BIN
locale/pt.mo
Normal file
Binary file not shown.
BIN
locale/pt_BR.mo
Normal file
BIN
locale/pt_BR.mo
Normal file
Binary file not shown.
BIN
locale/ro.mo
Normal file
BIN
locale/ro.mo
Normal file
Binary file not shown.
BIN
locale/ru.mo
Normal file
BIN
locale/ru.mo
Normal file
Binary file not shown.
BIN
locale/sk.mo
Normal file
BIN
locale/sk.mo
Normal file
Binary file not shown.
BIN
locale/sl.mo
Normal file
BIN
locale/sl.mo
Normal file
Binary file not shown.
BIN
locale/sr@latin.mo
Normal file
BIN
locale/sr@latin.mo
Normal file
Binary file not shown.
BIN
locale/sv.mo
Normal file
BIN
locale/sv.mo
Normal file
Binary file not shown.
BIN
locale/th.mo
Normal file
BIN
locale/th.mo
Normal file
Binary file not shown.
BIN
locale/tr.mo
Normal file
BIN
locale/tr.mo
Normal file
Binary file not shown.
BIN
locale/vi.mo
Normal file
BIN
locale/vi.mo
Normal file
Binary file not shown.
BIN
locale/zh_CN.mo
Normal file
BIN
locale/zh_CN.mo
Normal file
Binary file not shown.
BIN
locale/zh_TW.mo
Normal file
BIN
locale/zh_TW.mo
Normal file
Binary file not shown.
Reference in New Issue
Block a user