| 1 |
<?php
|
| 2 |
|
| 3 |
/**
|
| 4 |
* todo localizations could likely be moved to another place or managed through the CMS
|
| 5 |
* */
|
| 6 |
function SEMANTIC_SEARCH_ln($key,$lang = 'EN')
|
| 7 |
{
|
| 8 |
$strings = array( );
|
| 9 |
|
| 10 |
/////////////////
|
| 11 |
// ENGLISH
|
| 12 |
$string_en = array();
|
| 13 |
|
| 14 |
$string_en['admin_category_label'] =
|
| 15 |
'The name (or a "label" in RDFS) of the RDF class/SEMANTIC_SEARCH category.';
|
| 16 |
|
| 17 |
$string_en['admin_category_super'] =
|
| 18 |
'These categories are the superclasses (RDFS:subClassOf is used) to the selected class (RDF:Class). They are both manually selected
|
| 19 |
and inferred. If you deselect a class, it\'s subclasses will also be removed.
|
| 20 |
Additionally, the properties of these classes will be inhereted (on adding) or removed.';
|
| 21 |
|
| 22 |
$string_en['admin_category_super_add'] = 'Select categories (RDF:Class) which will
|
| 23 |
be the superclasses (RDFS:subClassOf is used). Properties (RDFS:Property) will be inferred ';
|
| 24 |
|
| 25 |
$string_en['admin_category_edit'] = 'Select categories to edit (RDF:Class).';
|
| 26 |
|
| 27 |
$string_en['admin_category_level'] = 'This will be used to determine if a class is a root class (SONIA:root),
|
| 28 |
an abstract class which can not be implemented (RDFS/OWL?:Abstract) .';
|
| 29 |
|
| 30 |
$string_en['admin_import_file'] = 'Import file from your system via the browser. ';
|
| 31 |
|
| 32 |
$string_en['admin_import_remote_file'] = 'If you server allows, import file giving a URL (http:// ftp:// https://) ';
|
| 33 |
|
| 34 |
$string_en['admin_import_synchronize'] = 'Select the type of import to occur. You can delete all data, synchronize with new data by replacing old, synchronize with new data be ignoring overlap, or duplicate everthing.';
|
| 35 |
|
| 36 |
|
| 37 |
|
| 38 |
|
| 39 |
//FINISH
|
| 40 |
$strings['EN'] = $string_en;
|
| 41 |
|
| 42 |
if (isset($strings[$lang][$key]))
|
| 43 |
{
|
| 44 |
return t($strings[$lang][$key]);
|
| 45 |
}
|
| 46 |
}
|