Skip to content

Commit 08f3251

Browse files
authored
Merge branch 'develop' into dewanshmobile/mobilenav
2 parents 1c9237d + 84defd9 commit 08f3251

File tree

2 files changed

+20
-24
lines changed

2 files changed

+20
-24
lines changed

client/test-utils.js

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,15 @@
1414
import { render } from '@testing-library/react';
1515
import React from 'react';
1616
import PropTypes from 'prop-types';
17-
import { createStore } from 'redux';
1817
import { Provider } from 'react-redux';
1918
import { Router } from 'react-router-dom';
2019
import { I18nextProvider } from 'react-i18next';
2120
import { ThemeProvider as StyledThemeProvider } from 'styled-components';
2221

2322
import browserHistory from './browserHistory';
2423
import i18n from './i18n-test';
25-
import rootReducer from './reducers';
2624
import ThemeProvider from './modules/App/components/ThemeProvider';
25+
import configureStore from './store';
2726
import theme, { Theme } from './theme';
2827

2928
// re-export everything
@@ -45,11 +44,7 @@ Providers.propTypes = {
4544

4645
function reduxRender(
4746
ui,
48-
{
49-
initialState,
50-
store = createStore(rootReducer, initialState),
51-
...renderOptions
52-
} = {}
47+
{ initialState, store = configureStore(initialState), ...renderOptions } = {}
5348
) {
5449
function Wrapper({ children }) {
5550
return (
@@ -67,7 +62,7 @@ function reduxRender(
6762
children: PropTypes.element.isRequired
6863
};
6964

70-
return render(ui, { wrapper: Wrapper, ...renderOptions });
65+
return { store, ...render(ui, { wrapper: Wrapper, ...renderOptions }) };
7166
}
7267

7368
const customRender = (ui, options) =>

translations/locales/ko/translations.json

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -158,25 +158,26 @@
158158
},
159159
"KeyboardShortcuts": {
160160
"Title": " 단축키",
161-
"ShortcutsFollow": "Code editing keyboard shortcuts follow",
162-
"SublimeText": "Sublime Text shortcuts",
161+
"ShortcutsFollow": "코드 편집 키보드 단축키는 다음과 같습니다",
162+
"SublimeText": "서블라임 텍스트",
163163
"CodeEditing": {
164-
"Tidy": "Tidy",
165-
"FindText": "Find Text",
166-
"FindNextMatch": "Find Next Match",
167-
"FindPrevMatch": "Find Previous Match",
168-
"IndentCodeLeft": "Indent Code Left",
169-
"IndentCodeRight": "Indent Code Right",
170-
"CommentLine": "Comment Line",
171-
"FindNextTextMatch": "Find Next Text Match",
172-
"FindPreviousTextMatch": "Find Previous Text Match",
173-
"CodeEditing": "Code Editing"
164+
"Tidy": "정돈하기",
165+
"FindText": "텍스트 찾기",
166+
"FindNextMatch": "다음 일치 항목 찾기",
167+
"FindPrevMatch": "이전 일치 항목 찾기",
168+
"ReplaceTextMatch": "텍스트 일치 항목 바꾸기",
169+
"IndentCodeLeft": "코드 왼쪽 들여쓰기",
170+
"IndentCodeRight": "코드 오른쪽 들여쓰기",
171+
"CommentLine": "주석 처리",
172+
"FindNextTextMatch": "다음 텍스트 일치 항목 찾기",
173+
"FindPreviousTextMatch": "이전 텍스트 일치 항목 찾기",
174+
"CodeEditing": "코드 편집"
174175
},
175176
"General": {
176-
"StartSketch": "Start Sketch",
177-
"StopSketch": "Stop Sketch",
178-
"TurnOnAccessibleOutput": "Turn On Accessible Output",
179-
"TurnOffAccessibleOutput": "Turn Off Accessible Output"
177+
"StartSketch": "스케치 시작",
178+
"StopSketch": "스케치 중지",
179+
"TurnOnAccessibleOutput": "접근 가능한 출력 활성화",
180+
"TurnOffAccessibleOutput": "접근 가능한 출력 비활성화"
180181
}
181182
},
182183
"Sidebar": {

0 commit comments

Comments
 (0)