# Translation of Odoo Server. # This file contains the translation of the following modules: # * account_test # # Translators: msgid "" msgstr "" "Project-Id-Version: Odoo 8.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-01-21 14:07+0000\n" "PO-Revision-Date: 2015-08-17 07:49+0000\n" "Last-Translator: choijaeho \n" "Language-Team: Korean (http://www.transifex.com/odoo/odoo-8/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_test #: model:ir.actions.act_window,help:account_test.action_accounting_assert msgid "" "

\n" " Click to create Accounting Test.\n" "

\n" " " msgstr "

\n 회계 일관성 검사를 작성합니다.\n

\n " #. module: account_test #: model:ir.actions.act_window,name:account_test.action_accounting_assert #: model:ir.actions.report.xml,name:account_test.account_assert_test_report #: model:ir.ui.menu,name:account_test.menu_action_license msgid "Accounting Tests" msgstr "회계 일관성 검사" #. module: account_test #: view:website:account_test.report_accounttest msgid "Accouting tests on" msgstr "회계 일관성 검사 시작" #. module: account_test #: field:accounting.assert.test,active:0 msgid "Active" msgstr "활성" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_03 msgid "Check if movement lines are balanced and have the same date and period" msgstr "이동 명세가 균형 있는지 같은 날짜와 금액인지 확인" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_02 msgid "" "Check if the balance of the new opened fiscal year matches with last year's " "balance" msgstr "새로 시작한 회계연도의 균형이 작년의 균형과 일치하는지 확인" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_04 msgid "Check if the totally reconciled movements are balanced" msgstr "완전한 조정 이동이 균형있는지 확인" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_07 msgid "" "Check on bank statement that the Closing Balance = Starting Balance + sum of" " statement lines" msgstr "마감 잔액 = 시작 잔액 + 예금 거래 내역의 합계인지 예금거래 확인" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_08 msgid "Check that general accounts and partners on account moves are active" msgstr "일반 계정과 활성화된 협력업체의 이동 계정 확인" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_06 msgid "Check that paid/reconciled invoices are not in 'Open' state" msgstr "지불/조정 송장이 '열기' 상태가 아닌지 확인" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_05_2 msgid "" "Check that reconciled account moves, that define Payable and Receivable " "accounts, are belonging to reconciled invoices" msgstr "조정된 송장에 속하는 채권 채무 계정을 정의한 조정된 계정 이동 확인" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_05 msgid "" "Check that reconciled invoice for Sales/Purchases has reconciled entries for" " Payable and Receivable Accounts" msgstr "판매/구매에서 조정한 송장이 채무 및 채권 계정에 대한 기입 항목을 조정했는지 확인" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_06_1 msgid "Check that there's no move for any account with « View » account type" msgstr "« 보기 » 계정 유형에 어떤 계정도 이동하지 않았음을 확인" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_01 msgid "Check the balance: Debit sum = Credit sum" msgstr "균형 확인 : 차변 합계 = 대변 합계" #. module: account_test #: view:accounting.assert.test:account_test.account_assert_form msgid "Code Help" msgstr "코드 도움말" #. module: account_test #: view:accounting.assert.test:account_test.account_assert_form msgid "" "Code should always set a variable named `result` with the result of your test, that can be a list or\n" "a dictionary. If `result` is an empty list, it means that the test was succesful. Otherwise it will\n" "try to translate and print what is inside `result`.\n" "\n" "If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n" "what order you want to print `result`'s content.\n" "\n" "Should you need them, you can also use the following variables into your code:\n" " * cr: cursor to the database\n" " * uid: ID of the current user\n" "\n" "In any ways, the code must be legal python statements with correct indentation (if needed).\n" "\n" "Example: \n" " sql = '''SELECT id, name, ref, date\n" " FROM account_move_line \n" " WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n" " '''\n" " cr.execute(sql)\n" " result = cr.dictfetchall()" msgstr "코드는 목록 또는 사전이 될 수 있는 테스트 결과에 항상 'result'라는 변수를 설정해야 합니다.\n'result'가 빈 목록이면 테스트에 성공했다는 뜻입니다. 그렇지 않으면 'result' 내부에 무엇이 들었는지\n번역하거나 인쇄할려고 할 것입니다.\n\n귀하의 테스트 결과가 사전이면 'result' 내용을 인쇄할 순서를 선택할 수 있는 'column_order'라는\n변수를 설정해야 합니다.\n\n필요할 경우 당신은 코드에 다음 변수를 사용할 수 있습니다 :\n * cr: 데이타베이스의 커서\n * uid: 현재 사용자의 ID\n\n어떤 경우에도 코드는 올바른 들여쓰기와 적절한 파이썬 문장이어야 합니다(필요한 경우).\n\n예 : \n sql = '''SELECT id, name, ref, date\n FROM account_move_line \n WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n '''\n cr.execute(sql)\n result = cr.dictfetchall()" #. module: account_test #: field:accounting.assert.test,create_uid:0 msgid "Created by" msgstr "작성자" #. module: account_test #: field:accounting.assert.test,create_date:0 msgid "Created on" msgstr "작성일" #. module: account_test #: view:accounting.assert.test:account_test.account_assert_form msgid "Description" msgstr "설명" #. module: account_test #: view:website:account_test.report_accounttest msgid "Description:" msgstr "설명 :" #. module: account_test #: view:accounting.assert.test:account_test.account_assert_form msgid "Expression" msgstr "표현식" #. module: account_test #: field:accounting.assert.test,id:0 #: field:report.account_test.report_accounttest,id:0 msgid "ID" msgstr "ID" #. module: account_test #: field:accounting.assert.test,write_uid:0 msgid "Last Updated by" msgstr "최근 갱신한 사람" #. module: account_test #: field:accounting.assert.test,write_date:0 msgid "Last Updated on" msgstr "최근 갱신 날짜" #. module: account_test #: view:website:account_test.report_accounttest msgid "Name:" msgstr "명칭 :" #. module: account_test #: view:accounting.assert.test:account_test.account_assert_form msgid "Python Code" msgstr "파이썬 코드" #. module: account_test #: field:accounting.assert.test,code_exec:0 msgid "Python code" msgstr "파이썬 코드" #. module: account_test #: field:accounting.assert.test,sequence:0 msgid "Sequence" msgstr "순서" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_01 msgid "Test 1: General balance" msgstr "시험 1 : 균형 검사" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_02 msgid "Test 2: Opening a fiscal year" msgstr "시험 2 : 회계 연도 열기" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_03 msgid "Test 3: Movement lines" msgstr "시험 3: 명세 옮기기" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_04 msgid "Test 4: Totally reconciled mouvements" msgstr "시험 4: 완전히 조정된 움직임" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_05 msgid "" "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices" msgstr "시험 5.1 : 조정된 송장의 채무 및 채권 회계 내역" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_05_2 msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts" msgstr "시험 5.2 : 조정 송장과 채권/채무 계정" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_06 msgid "Test 6 : Invoices status" msgstr "시험 6 : 송장 상태" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_06_1 msgid "Test 7: « View  » account type" msgstr "시험 7: « 보기  » 계정 유형" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_07 msgid "Test 8 : Closing balance on bank statements" msgstr "시험 8 : 예금계좌의 마감 잔액" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_08 msgid "Test 9 : Accounts and partners on account moves" msgstr "시험 9 : 계정과 계정 이동에 협력업체" #. module: account_test #: field:accounting.assert.test,desc:0 msgid "Test Description" msgstr "시험 설명" #. module: account_test #: field:accounting.assert.test,name:0 msgid "Test Name" msgstr "시험명" #. module: account_test #: view:accounting.assert.test:account_test.account_assert_form #: view:accounting.assert.test:account_test.account_assert_tree msgid "Tests" msgstr "시험" #. module: account_test #: code:addons/account_test/report/account_test_report.py:78 #, python-format msgid "The test was passed successfully" msgstr "성공적으로 시험을 통과했습니다."