Changeset 33027
- Timestamp:
- 07/01/2015 03:42:32 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/l10n.css
r32677 r33027 59 59 60 60 /* de_DE: Text needs more space for translation */ 61 .locale-de-de .inline-edit-row fieldset label span.title { 61 .locale-de-de .inline-edit-row fieldset label span.title, 62 .locale-de-de-formal .inline-edit-row fieldset label span.title { 62 63 width: 7em; /* default 5em */ 63 64 } 64 .locale-de-de .inline-edit-row fieldset label span.input-text-wrap { 65 .locale-de-de .inline-edit-row fieldset label span.input-text-wrap, 66 .locale-de-de-formal .inline-edit-row fieldset label span.input-text-wrap { 65 67 margin-left: 7em; /* default 5em */ 66 68 } 67 .locale-de-de #customize-header-actions .button { 69 .locale-de-de #customize-header-actions .button, 70 .locale-de-de-formal #customize-header-actions .button { 68 71 padding: 0 5px 1px; /* default 0 10px 1px */ 69 72 } 70 .locale-de-de #customize-header-actions .spinner { 73 .locale-de-de #customize-header-actions .spinner, 74 .locale-de-de-formal #customize-header-actions .spinner { 71 75 margin: 16px 3px 0; /* default 16px 4px 0 5px */ 72 76 } -
trunk/src/wp-includes/formatting.php
r32994 r33027 1139 1139 $locale = get_locale(); 1140 1140 1141 if ( 'de_DE' == $locale ) {1141 if ( 'de_DE' == $locale || 'de_DE_formal' == $locale ) { 1142 1142 $chars[ chr(195).chr(132) ] = 'Ae'; 1143 1143 $chars[ chr(195).chr(164) ] = 'ae'; -
trunk/src/wp-includes/l10n.php
r32940 r33027 821 821 continue; 822 822 } 823 if ( ! preg_match( '/(?:(.+)-)?([ A-Za-z_]{2,6}).po/', $file, $match ) ) {823 if ( ! preg_match( '/(?:(.+)-)?([a-z]{2,3}(?:_[A-Z]{2})?(?:_[a-z0-9]+)?).po/', $file, $match ) ) { 824 824 continue; 825 825 }
Note: See TracChangeset
for help on using the changeset viewer.