[eluser]jaume[/eluser]
Some more strings...
Code:
// ************************* PLUGINS ***************************
// ************************* dbdropdown.php
// line 16
show_error("You must define a table for DbDropDown to work."); // original
show_error($this->lang->line('codexforms_dbdropdown_table_not_defined')); // modified
// line 21
show_error("You must define a field for DbDropDown to work."); // original
show_error($this->lang->line('codexforms_dbdropdown_field_not_defined')); // modified
// ************************* hidden.php
// line 7
if(empty($this->value)) show_error('A Hidden field needs a value.'); // original
if(empty($this->value)) show_error($this->lang->line('codexforms_hidden_value_not_defined')); // modified
// ************************* onetomany.php
// line 23
show_error('A display field must be defined in your YAML file for the ManyToMany plugin ('.$name.')'
// no string defined yet in language files for this text
// line 69
show_error('There was an error inserting new item into foreign table.');
// no string defined yet in language files for this text
// ************************* manytomany.php
// line 23
show_error('A display field must be defined in your YAML file for the ManyToMany plugin ('.$name.')'
// no string defined yet in language files for this text
// line 69
show_error('There was an error inserting new item into foreign table.');
// no string defined yet in language files for this text
// line 91
show_error('There was an error inserting new item into the linking table.');
// no string defined yet in language files for this text
// ************************* image.php
// line 90
$this->CI->codexmessages->add('success','Thumbnail created successfully!','',true); // original
$this->CI->codexmessages->add('success',$this->lang->line('codexforms_image_thumbnail_created'),'',true); // modified
// line 94
show_error("Problem uploading file."); // original
show_error($this->lang->line('codexforms_image_uploading_failed')); // modified
// ************************* relationalcontainer.php
// line 190
$html .= 'Click on the Add new button to add new items to '.$this->label;
// no string defined yet in language files for this text
// ************************* VIEWS/TEMPLATES/DEFAULT ***************************
// ************************* codex_search_form.php
// line 43
show_error("Problem with setup of keywords vs fields..."); // original
show_error($this->lang->line('codex_search_keywords_vs_fields')); // modified
// ************************* codex_search_form.php
// line 23
<li><a href="<?php echo base_url().'index.php'; ?>">Go Back To Main Site</a></li> // original
<li><a href="<?php echo base_url().'index.php'; ?>"><?=$this->lang->line('codex_menu_go_back_to_main') ?></a></li> // modified
<?php // php tag reopened to keep code highlighting
// ************************* codex_permissions_form.php
// line 36
echo "<h3>Predefined permissions:</h3>";
// no string defined yet in language files for this text
// line 48
echo "<p>User <b>".$row['username'].'</b> is the <b>owner</b> of this record, and has full access to it.</p>';
// no string defined yet in language files for this text
//line 50
echo "<p class=\"user-permission\"><span class=\"hidden\">user|".$row['user_id'].";record_id|".$this->codexadmin->active_id.";table|".$row['table_name']."</span>User <b>".$row['username'].'</b> has access to <b>'.implode(',',$row['permissions']).'</b> it.</p>';
// no string defined yet in language files for this text
// ************************* VIEWS/TEMPLATES/VIEW_MODES ***************************
// ************************* table.php
// line 44
<?php echo '<a class="addtrigger" href="'.site_url().'/'.$add_link.'">Add New</a>'; ?>
<?php // no string defined yet in language files for this text
// line 81
$anchor = 'Click to edit';
// no string defined yet in language files for this text
// line 98
<img style="margin-right:10px" src="<?php echo ASSETSDIR.'images/select_all.png'; ?>"><a id="select-all" href="Select All">Select All</a>
// no string defined yet in language files for this text
Hope this helps someone