

Get in touch

Download Plugin Now
  • Follow
  • Follow
WP Data Access
  • Download
  • Support
  • Features
  • Pricing
  • Documentation
    • Tool Guide
    • App Builder
    • Data Explorer
    • SQL Query Builder
    • Plugin Settings
    • Legacy Tools
    • Remote Connections
a
M
M
  • Download
  • Support
  • Features
  • Pricing
  • Documentation
    • Tool Guide
    • App Builder
    • Data Explorer
    • SQL Query Builder
    • Plugin Settings
    • Legacy Tools
    • Remote Connections
Download Plugin Now

Legacy Tools

  • Deprecating in the near future

Tables

  • Getting Started
  • Creating and publishing
  • Responsive data tables
  • SEO friendly data tables
  • Adding hyperlinks
  • Extension Manager
  • Style Manager
  • Language settings
  • Styling
    • Style Manager
    • Premium styling
    • Global styling
    • Code Manager Styling
    • Manual styling
    • Styling issues
  • Filters
    • Static filters
    • Interactive filters
      • URL parameters
      • Search Panes
      • Search Builder
      • Search form
      • Advanced search
      • Geolocation search
  • Export & other buttons
    • Export to PDF, CSV, Excel, SQL
    • Print & copy buttons
    • Column selection buttons
    • Custom buttons
  • Advanced features
    • Advanced settings
    • Large tables & performance
    • Progressively SHOW MORE
    • Custom queries
    • Custom Post Types
    • Row grouping
    • Responsive master-detail
    • Master-detail tables
    • Non admin user access
  • Demos & tutorials
    • Demos
    • Tutorials

Forms

  • Data Projects
  • Projects and templates
  • Supported Data Types
  • One-To-Many relationships
  • Many-To-Many relationships
  • Registration page
  • Manage table options
  • Shortcode usage
  • Data Forms
    • Data Forms
    • Overview
    • Project Demo
    • Page Demo
  • Advanced features
    • Adding filters
    • Custom validation
    • Add less/more button
    • User roles
    • Managing roles and users
    • Advanced table options
    • Advanced lookups
    • Front-end toolbar
    • Transfer to other WP site
  • Demos & tutorials
    • Demos
    • Tutorials

Templates

  • Project Templates
  • Creating templates
  • Table Settings
  • Relationships
  • List Table
  • Data Entry
  • Reconcile

Designer

  • Getting started
  • Introduction
  • Basic mode

Dashboards

  • Getting started
  • Dashboards
  • Sharing dashboards
  • Dashboards Widgets
    • Dashboard Widgets
    • Publication Widget
    • Project Widget
    • Chart Widget
    • Custom Code Widget
    • Database Widget
    • Sharing Widgets

Charts

  • Chart Widget

Code

  • Shortcodes
    • Overview
    • wpdataaccess
    • wpdadataproject
    • wpdadataforms
    • wpdadiehard
    • wpdageomap
    • wpdawidget
  • Plugin Variables
    • Environment variables
  • Hooks & filters
    • Overview
    • Hooks
      • Overview
      • wpda_add_search_actions
      • wpda_add_search_filter
      • wpda_before_list_table
      • wpda_after_list_table
      • wpda_wpdataaccess_prepare
    • Filters
      • Overview
      • wpda_column_default
      • wpda_before_simple_form
      • wpda_after_simple_form
      • wpda_construct_where_clause
  • API
    • WP Data Access API
    • Remote database access
    • CRUD Example
    • Extensions
      • Alternative search algorithm
      • Alternative buttons extension
  • Code Manager
    • Overview
    • Write code
    • Share(d) code
View Categories

Language settings

The data table language can be defined on global level for all data tables in plugin settings and for specific data table in the Data Tables advanced settings section.

Global data table language #

To change the global data tables language:

  • Click the Settings icon on the menu bar
  • Select tab Data Tables
  • Select your Front-End Language (default = English)
  • Save your settings
All data tables will use this setting by default.

Data table specific language #

To change the language of a specific data table:

  • Click the Tables icon on the menu bar
  • Edit your data table
  • Add option wpda_language to advanced settings (see example below)
  • Save your data table

This will change the language for the edited data table only.

Video Tutorial #

Change data table language to Dutch

{ "wpda_language": "Dutch" }

Note #

Option wpda_language allows to show multiple data tables on the same page using different languages.

Change Search Builder language #

The Search Builder does not have a language file for all languages. Conditions and operators need to be defined in advanced settings (see example below).

Search Builder language options

{
	"language": {
		"searchBuilder": {
			"add": "Add",
			"condition": "Condition",
			"clearAll": "Clear All",
			"delete": "X",
			"deleteTitle": "Delete filtering rule",
			"data": "Column",
			"left": "<",
			"leftTitle": "Outdent criteria",
			"logicAnd": "And",
			"logicOr": "Or",
			"right": ">",
			"rightTitle": "Indent criteria",
			"title": {
				"0": "Filters",
				"_": "Filters (%d)"
			},
			"value": "Option",
			"valueJoiner": "and",
			"conditions": {
				"number": {
					"between": "Between",
					"empty": "Empty",
					"equals": "Equals",
					"gt": "Greater Than",
					"gte": "Greater Than Equal To",
					"lt": "Less Than",
					"lte": "Less Than Equal To",
					"not": "Not",
					"notBetween": "Not Between",
					"notEmpty": "Not Empty"
				},
				"string": {
					"contains": "Contains",
					"empty": "Empty",
					"endsWith": "Ends With",
					"equals": "Equals",
					"not": "Not",
					"notContains": "Does Not Contain",
					"notEmpty": "Not Empty",
					"notEndsWith": "Does Not End With",
					"notStartsWith": "Does Not Start With",
					"startsWith": "Starts With",
				},
				"date": {
					"after": "After",
					"before": "Before",
					"between": "Between",
					"empty": "Empty",
					"equals": "Equals",
					"not": "Not",
					"notBetween": "Not Between",
					"notEmpty": "Not Empty"
				},
				"array": {
					"contains": "Contains",
					"empty": "Empty",
					"equals": "Equals",
					"not": "Not",
					"notEmpty": "Not Empty",
					"without": "Without"
				}
			}
		}
	}
}

Change Search Panes language #

There is no language file for Search Panes for all languages. Language changes need to be defined in advanced settings (see example below).

Search Panes language options

{
	"language": {
		"searchPanes": {
			"title": {
				"_": "Filters Active - %d",
				"0": "No Filters Active",
				"1": "One Filter Active"
			}
		}
	}
}

Combining Search Builder and Search Panes language options #

Search Builder and Search Panes language options combined

{
	"language": {
		"searchBuilder": {
			"add": "Add",
			"condition": "Condition",
			"clearAll": "Clear All",
			"delete": "X",
			"deleteTitle": "Delete filtering rule",
			"data": "Column",
			"left": "<",
			"leftTitle": "Outdent criteria",
			"logicAnd": "And",
			"logicOr": "Or",
			"right": ">",
			"rightTitle": "Indent criteria",
			"title": {
				"0": "Filters",
				"_": "Filters (%d)"
			},
			"value": "Option",
			"valueJoiner": "and",
			"conditions": {
				"number": {
					"between": "Between",
					"empty": "Empty",
					"equals": "Equals",
					"gt": "Greater Than",
					"gte": "Greater Than Equal To",
					"lt": "Less Than",
					"lte": "Less Than Equal To",
					"not": "Not",
					"notBetween": "Not Between",
					"notEmpty": "Not Empty"
				},
				"string": {
					"contains": "Contains",
					"empty": "Empty",
					"endsWith": "Ends With",
					"equals": "Equals",
					"not": "Not",
					"notContains": "Does Not Contain",
					"notEmpty": "Not Empty",
					"notEndsWith": "Does Not End With",
					"notStartsWith": "Does Not Start With",
					"startsWith": "Starts With",
				},
				"date": {
					"after": "After",
					"before": "Before",
					"between": "Between",
					"empty": "Empty",
					"equals": "Equals",
					"not": "Not",
					"notBetween": "Not Between",
					"notEmpty": "Not Empty"
				},
				"array": {
					"contains": "Contains",
					"empty": "Empty",
					"equals": "Equals",
					"not": "Not",
					"notEmpty": "Not Empty",
					"without": "Without"
				}
			}
		},
		"searchPanes": {
			"title": {
				"_": "Filters Active - %d",
				"0": "No Filters Active",
				"1": "One Filter Active"
			}
		}
	}
}
Share This Article :
  • Facebook
  • X
  • LinkedIn
  • Pinterest
Still stuck? How can we help?

How can we help?

Updated on 2025-02-09
Style Manager

Submit a Comment Cancel reply

Your email address will not be published. Required fields are marked *

Table of Contents
  • Global data table language
  • Data table specific language
  • Video Tutorial
  • Note
  • Change Search Builder language
  • Change Search Panes language
  • Combining Search Builder and Search Panes language options
WP Data Access
  • Follow
  • Follow
Quick Links
$

Blogs

$

Tutorials

$

Demos

Get in touch
$

Premium support

$

Free support forum

$

Contact us

Resources


WordPress plugin directory



YouTube tutorials

Copyright © 2025 | All Right Reserves

We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.Ok