Welcome Guest, Not a member yet? Register   Sign In
CodeExtinguisher v2.0 Release Candidate 12.3
#48

[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="&lt;?php echo base_url().'index.php'; ?&gt;">Go Back To Main Site</a></li> // original
            <li><a href="&lt;?php echo base_url().'index.php'; ?&gt;">&lt;?=$this->lang->line('codex_menu_go_back_to_main') ?&gt;</a></li> // modified

&lt;?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
                &lt;?php echo '<a class="addtrigger" href="'.site_url().'/'.$add_link.'">Add New</a>'; ?&gt;
                &lt;?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="&lt;?php echo ASSETSDIR.'images/select_all.png'; ?&gt;"><a id="select-all" href="Select All">Select All</a>
                    // no string defined yet in language files for this text

Hope this helps someone Wink


Messages In This Thread
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-01-2008, 11:52 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 07:12 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 08:41 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 08:43 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 08:53 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 08:54 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 08:58 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 09:07 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 09:17 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 10:34 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 11:18 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 11:21 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 01:08 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-02-2008, 01:35 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-03-2008, 07:39 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-03-2008, 01:51 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-03-2008, 01:55 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-04-2008, 11:33 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-04-2008, 11:38 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 05:31 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 05:48 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 05:50 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 06:02 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 06:05 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-05-2008, 07:31 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 05:34 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 08:34 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 09:00 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 09:04 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 09:07 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-08-2008, 09:08 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 02:05 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 06:29 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 06:42 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 09:44 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 09:49 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 09:51 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 09:55 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 09:59 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-09-2008, 10:43 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-10-2008, 10:35 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-10-2008, 10:37 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-10-2008, 02:49 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 07:21 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 07:40 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 07:59 AM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 05:16 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 05:18 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 05-12-2008, 11:17 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 02-23-2009, 12:10 PM
CodeExtinguisher v2.0 Release Candidate 12.3 - by El Forum - 03-18-2009, 04:52 AM



Theme © iAndrew 2016 - Forum software by © MyBB