• Some of the strings are using usin as textdomain, so they aren’t translated correct.

    Like:
    'name' => __('Last Note Date', 'usin'),

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Thomas Blomberg

    (@thomasdk81)

    The fix is like this.

    File: plugins/extended-crm-for-users-insights/includes/notes/class-note-fields.php (line 24)

    	public function register_fields($fields){
    		
    		if(!empty($fields) && is_array($fields)){
    
    			$fields[]=array(
    				'name' => __('Last Note Date', 'extended-crm-for-users-insights'),
    				'id' => 'ecui_last_note_date',
    				'order' => 'DESC',
    				'show' => true,
    				'fieldType' => 'ecui',
    				'filter' => array(
    					'type' => 'date'
    				)
    			);
    			
    			$fields[]=array(
    				'name' => __('Note content', 'extended-crm-for-users-insights'),
    				'id' => 'ecui_note_content',
    				'order' => 'DESC',
    				'show' => true,
    				'hideOnTable' => true,
    				'fieldType' => 'ecui',
    				'filter' => array(
    					'type' => 'text'
    				)
    			);
    		}
    
    		return $fields;
    	}
    Plugin Author Deni

    (@denizz)

    Hi,

    Thanks a lot for reporting this, I’ve scheduled a fix in an update.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Translation are missing strings’ is closed to new replies.