Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

leads done #42

Merged
merged 1 commit into from
Mar 19, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 29 additions & 31 deletions modules/Settings/Leads.php
Original file line number Diff line number Diff line change
@@ -1,43 +1,41 @@
<?php
/*+***********************************************************************************
/*+**********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*************************************************************************************/
************************************************************************************/
$languageStrings = array(
//Actions
'LBL_SAVED_SUCCESSFULLY' => 'Saved Successfully',
'LBL_DELETED_SUCCESSFULLY' => 'Deleted Successfully',
'LBL_INVALID_MAPPING' => 'Invalid Mapping',
'LBL_CONVERT_LEAD_FIELD_MAPPING' => 'Convert Lead Mapping',
'LBL_FIELD_LABEL' => 'Field Label',
'LBL_FIELD_TYPE' => 'Field Type',
'LBL_MAPPING_WITH_OTHER_MODULES' => 'Mapping with other Modules',
'LBL_ORGANIZATIONS' => 'Organizations',
'LBL_CONTACTS' => 'Contacts',
'LBL_OPPURTUNITIES' => 'Oppurtunities',
'LBL_ADD_MAPPING' => 'Add Mapping',
'LBL_NONE' => 'None',
'LBL_SAVED_SUCCESSFULLY' => 'Αποθηκεύτηκε με επιτυχία' , // TODO: Review
'LBL_DELETED_SUCCESSFULLY' => 'Διαγράφηκε με Επιτυχία', // TODO: Review
'LBL_INVALID_MAPPING' => 'Άκυρη Αντιστοίχηση', // TODO: Review
'LBL_CONVERT_LEAD_FIELD_MAPPING' => 'Μετατροπή Σύστασης σε Αντιστοίχηση', // TODO: Review
'LBL_FIELD_LABEL' => 'Πεδίο Τομέα', // TODO: Review
'LBL_FIELD_TYPE' => 'Τύπος Πεδίου' , // TODO: Review
'LBL_MAPPING_WITH_OTHER_MODULES' => 'Αντιστοίχηση με άλλα Αρθρώματα' , // TODO: Review
'LBL_ORGANIZATIONS'=> 'Πελάτης', // TODO: Review
'LBL_CONTACTS' => 'Επαφή' , // TODO: Review
'LBL_OPPURTUNITIES' => 'Ευκαιρίες' , // TODO: Review
'LBL_ADD_MAPPING'=> 'Προσθήκη Αντιστοίχησης' , // TODO: Review
'LBL_NONE'=> 'Κανένα' , // TODO: Review

//Field Type Translation
'phone' => 'Phone',
'picklist' => 'Pick List',
'email' => 'Email',
'text' => 'String',
'currency' => 'Currency',
'multiSelectCombo' => 'Multi-Select Combo Box',
'time' => 'Time',
'textArea' => 'Text Area',
'url' => 'Url',
'string' => 'String',
'checkBox' => 'Check Box',
'date' => 'Date',
'decimal' => 'Decimal',
'percent' => 'Percent',
'skype' => 'Skype',
'phone' => 'Τηλέφωνο', // TODO: Review
'picklist' => 'Λίστα επιλογής', // TODO: Review
'email' => 'Email' , // TODO: Review
'text' => 'Σειρά', // TODO: Review
'currency' => 'Νόμισμα' , // TODO: Review
'multiSelectCombo'=> 'Κουτί Πολλαπλής επιλογής', // TODO: Review
'time'=> 'Χρόνος', // TODO: Review
'textArea' => 'Περιοχή κειμένου' , // TODO: Review
'url'=> 'Url' , // TODO: Review
'string'=> 'Σειρά' , // TODO: Review
'checkBox' => 'Check Box' , // TODO: Review
'date' => 'Ημερομηνία' , // TODO: Review
'decimal'=> 'Δεκαδικός' , // TODO: Review
'percent'=> 'τοις εκατό' , // TODO: Review
'skype'=> 'Skype', // TODO: Review
);
$jsLanguageStrings = array(
'JS_NONE' => 'None',
Expand Down