From 0b169b5361bdcbe3664de6d4061a9c40ebb49b11 Mon Sep 17 00:00:00 2001 From: nacin Date: Sun, 29 Jan 2012 04:21:53 +0000 Subject: [PATCH] Offer start_of_week for translation. see #19601. git-svn-id: http://svn.automattic.com/wordpress/trunk@19780 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/schema.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-admin/includes/schema.php b/wp-admin/includes/schema.php index d9a9dd344b..a84336619f 100644 --- a/wp-admin/includes/schema.php +++ b/wp-admin/includes/schema.php @@ -359,7 +359,8 @@ function populate_options() { 'blogdescription' => __('Just another WordPress site'), 'users_can_register' => 0, 'admin_email' => 'you@example.com', - 'start_of_week' => 1, + /* translators: default start of the week. 0 = Sunday, 1 = Monday */ + 'start_of_week' => _x( '1', 'start of week' ), 'use_balanceTags' => 0, 'use_smilies' => 1, 'require_name_email' => 1,