Skip to content

Commit

Permalink
Editor: Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Mar 12, 2021
1 parent 16e1d2d commit c45fd20
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions editor/js/Sidebar.Project.Video.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function SidebarProjectVideo( editor ) {

// Video

container.add( new UIText( strings.getKey( 'sidebar/project/video' ) ) );
container.add( new UIText( strings.getKey( 'sidebar/project/video' ) ).setTextTransform( 'uppercase' ) );
container.add( new UIBreak(), new UIBreak() );

// Resolution
Expand Down Expand Up @@ -53,7 +53,7 @@ function SidebarProjectVideo( editor ) {
progress.setWidth( '170px' );
container.add( progress );

const renderButton = new UIButton( strings.getKey( 'sidebar/project/render' ) );
const renderButton = new UIButton( strings.getKey( 'sidebar/project/render' ) ).setTextTransform( 'uppercase' );
renderButton.setWidth( '170px' );
renderButton.onClick( async () => {

Expand Down
8 changes: 4 additions & 4 deletions editor/js/Strings.js
Original file line number Diff line number Diff line change
Expand Up @@ -304,10 +304,10 @@ function Strings( config ) {
'sidebar/project/materials': 'Materials',
'sidebar/project/Assign': 'Assign',

'sidebar/project/video': 'VIDEO',
'sidebar/project/video': 'Video',
'sidebar/project/resolution': 'Resolution',
'sidebar/project/duration': 'Duration',
'sidebar/project/render': 'RENDER',
'sidebar/project/render': 'Render',

'sidebar/settings': 'Settings',
'sidebar/settings/language': 'Language',
Expand Down Expand Up @@ -639,10 +639,10 @@ function Strings( config ) {
'sidebar/project/materials': 'Matériaux',
'sidebar/project/Assign': 'Attribuer',

'sidebar/project/video': 'VIDEO',
'sidebar/project/video': 'Video',
'sidebar/project/resolution': 'Resolution',
'sidebar/project/duration': 'Duration',
'sidebar/project/render': 'RENDER',
'sidebar/project/render': 'Render',

'sidebar/settings': 'Paramètres',
'sidebar/settings/language': 'Langue',
Expand Down

0 comments on commit c45fd20

Please sign in to comment.