Skip to content

Commit

Permalink
Fix translations
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubboucek committed Apr 6, 2021
1 parent d0c7230 commit e4d5776
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion js/gutenberg/ss-gutenberg.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ const EditSimpleShop = (props) => {
}
return (
<div className={className}>
<div>SimpleShop Form {attributes.ssFormId}</div>
<div>{__('SimpleShop Form', 'simpleshop-cz')} {attributes.ssFormId}</div>

<InspectorControls key="inspector">
<PanelBody>
Expand Down
12 changes: 6 additions & 6 deletions js/tiny-mce/tiny-mce.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
var win = ed.windowManager.open({
width: 600,
height: 300,
title: 'SimpleShop Formulář',
title: 'SimpleShop formulář',
body: [
{
type: 'listbox',
Expand Down Expand Up @@ -72,21 +72,21 @@
var selectedText = ed.selection.getContent({format: 'html'});

var win = ed.windowManager.open({
width: 600,
width: 620,
height: 300,
title: 'SimpleShop zabezpečený obsah',
body: [
{
type: 'listbox',
name: 'sscContentGroupID',
label: 'Skupina',
label: 'Členská sekce',
values: sscContentGroups,
value: 'test2' // Sets the default
value: ''
},
{
type: 'listbox',
name: 'sscContentIsMember',
label: 'Je členem skupiny?',
label: 'Je členem členské sekce?',
values: [
{
text: 'Ano',
Expand Down Expand Up @@ -122,7 +122,7 @@
{
type: 'textbox',
name: 'sscContentDaysToView',
label: 'Povolit přístup po X dnech od přiřazení do skupiny',
label: 'Povolit přístup po X dnech od přiřazení do členské sekce',
minWidth: 200,
value: ''
},
Expand Down

0 comments on commit e4d5776

Please sign in to comment.