diff --git a/sources/entity/tmgmt_entity.ui.inc b/sources/entity/tmgmt_entity.ui.inc
index 4af2dab..89a3304 100644
--- a/sources/entity/tmgmt_entity.ui.inc
+++ b/sources/entity/tmgmt_entity.ui.inc
@@ -31,7 +31,7 @@ abstract class TMGMTEntityDefaultSourceUIController extends TMGMTDefaultSourceUI
   public function getEntitiesTranslationData($type, $property_conditions = array()) {
 
     $return_value = array();
-    $entities = tmgmt_entity_get_translatable_entities($type, $property_conditions, TRUE);
+    $entities = tmgmt_entity_get_translatable_entities($type, $property_conditions, TRUE, variable_get('tmgmt_source_list_limit', 20));
 
     $entity_info = entity_get_info($type);
     $bundles = tmgmt_entity_get_translatable_bundles($type);
diff --git a/sources/i18n_string/tmgmt_i18n_string.ui.inc b/sources/i18n_string/tmgmt_i18n_string.ui.inc
index 63e77e9..bd0d551 100644
--- a/sources/i18n_string/tmgmt_i18n_string.ui.inc
+++ b/sources/i18n_string/tmgmt_i18n_string.ui.inc
@@ -48,7 +48,7 @@ class TMGMTI18nStringDefaultSourceUIController extends TMGMTDefaultSourceUIContr
 
     $search_data = $this->getSearchFormSubmittedParams();
 
-    $i18n_strings = tmgmt_i18n_string_get_strings($type, $search_data['label']);
+    $i18n_strings = tmgmt_i18n_string_get_strings($type, $search_data['label'], variable_get('tmgmt_source_list_limit', 20));
 
     foreach ($this->getTranslationData($i18n_strings, $form_state['item_type']) as $id => $data) {
       $form['items']['#options'][$id] = $this->overviewRow($type, $data);
diff --git a/sources/locale/tmgmt_locale.ui.inc b/sources/locale/tmgmt_locale.ui.inc
index d66e482..48276e3 100644
--- a/sources/locale/tmgmt_locale.ui.inc
+++ b/sources/locale/tmgmt_locale.ui.inc
@@ -80,7 +80,7 @@ class TMGMTLocaleSourceUIController extends TMGMTDefaultSourceUIController {
 
     $search_data = $this->getSearchFormSubmittedParams();
 
-    $strings = $this->getStrings($type, $search_data['label']);
+    $strings = $this->getStrings($type, $search_data['label'], variable_get('tmgmt_source_list_limit', 20));
 
     foreach ($this->getTranslationData($strings, $type) as $id => $data) {
       $form['items']['#options'][$id] = $this->overviewRow($type, $data);
