diff --git a/finance/docs/locale/ja_JP/LC_MESSAGES/getting_started.po b/finance/docs/locale/ja_JP/LC_MESSAGES/getting_started.po index d3ee70fcd17922..7ea6fe62af08e7 100644 --- a/finance/docs/locale/ja_JP/LC_MESSAGES/getting_started.po +++ b/finance/docs/locale/ja_JP/LC_MESSAGES/getting_started.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 09:35+0000\n" -"PO-Revision-Date: 2023-11-14 11:26\n" +"PO-Revision-Date: 2024-01-02 12:08\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -28,7 +28,7 @@ msgstr "インストール" #: ../../getting_started.rst:10 msgid "Qiskit Finance depends on Qiskit, which has its own `Qiskit Getting Started `__ detailing the installation options and its supported environments/platforms. You should refer to that first. Then the information here can be followed which focuses on the additional installation specific to Qiskit Finance." -msgstr "" +msgstr "Qiskit Financeは、インストール・オプションとそのサポート環境/プラットフォームを詳述した「`Qiskit はじめに `__ 」にて説明されたQiskitに依存しています。 まずそれを参照してください。次に、ここで説明する情報に従って、Qiskit Financeに固有の追加インストールをしましょう。" #: ../../getting_started.rst msgid "Start locally" @@ -36,15 +36,15 @@ msgstr "ローカルからの開始" #: ../../getting_started.rst:20 msgid "The simplest way to get started is to first follow the `getting started 'Start locally' guide for Qiskit `__" -msgstr "" +msgstr "最も簡単な方法は「 `Qiskit はじめに `__ 」の「ローカルで始める」のガイドを参照して開始することです。" #: ../../getting_started.rst:23 msgid "In your virtual environment, where you installed Qiskit, install Qiskit Finance as follows:" -msgstr "" +msgstr "Qiskit をインストールした仮想環境で、次のように Qiskit Finance をインストールします。" #: ../../getting_started.rst:31 msgid "As Qiskit Finance depends on Qiskit, you can though simply install it into your environment, as above, and pip will automatically install a compatible version of Qiskit if one is not already installed." -msgstr "" +msgstr "Qiskit FinanceはQiskitに依存しているため、上記のようにQiskitを環境にインストールするだけで、Qiskitの互換バージョンがまだインストールされていない場合、pipがQiskitを自動的にインストールします。" #: ../../getting_started.rst msgid "Install from source" diff --git a/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/00_amplitude_estimation.po b/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/00_amplitude_estimation.po index 48ce942404ac2b..3aad06e485645f 100644 --- a/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/00_amplitude_estimation.po +++ b/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/00_amplitude_estimation.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 09:35+0000\n" -"PO-Revision-Date: 2023-11-14 11:27\n" +"PO-Revision-Date: 2024-01-02 12:08\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -52,7 +52,7 @@ msgstr "\\mathcal{Q} = \\mathcal{A}\\mathcal{S}_0\\mathcal{A}^\\dagger\\mathcal{ #: ../../tutorials/00_amplitude_estimation.ipynb:32 msgid "where :math:`\\mathcal{S}_0` and :math:`\\mathcal{S}_{\\Psi_1}` are reflections about the :math:`|0\\rangle` and :math:`|\\Psi_1\\rangle` states, respectively, and phase estimation. However this algorithm, called `AmplitudeEstimation `__ in `Qiskit Algorithms `__, requires large circuits and is computationally expensive. Therefore, other variants of QAE have been proposed, which we will showcase in this tutorial for a simple example." -msgstr "" +msgstr "ここで :math:`\\mathcal{S}_0` と :math:`\\mathcal{S}_{\\Psi_1}` はそれぞれ :math:`|0\\rangle` と :math:`|\\Psi_1\\rangle` の状態に対する反転です。そして位相推定があります。しかしながら `Qiskit Algorithms `__ で `AmplitudeEstimation `__ と呼ばれるこのアルゴリズムは、大きな回路を必要とし、計算コストが高いです。そのため、QAE の改良が提案されており、このチュートリアルでは簡単な例を紹介します。" #: ../../tutorials/00_amplitude_estimation.ipynb:35 msgid "In our example, :math:`\\mathcal{A}` describes a Bernoulli random variable with (assumed to be unknown) success probability :math:`p`:" @@ -92,11 +92,11 @@ msgstr "これで :math:`\\mathcal{A}` と :math:`\\mathcal{Q}` を定義でき #: ../../tutorials/00_amplitude_estimation.ipynb:148 msgid "Amplitude Estimation workflow" -msgstr "" +msgstr "振幅推定ワークフロー" #: ../../tutorials/00_amplitude_estimation.ipynb:159 msgid "Qiskit Algorithms implements several QAE algorithms that all derive from the `AmplitudeEstimator `__ interface. In the initializer we specify algorithm specific settings and the ``estimate`` method, which does all the work, takes an `EstimationProblem `__ as input and returns an `AmplitudeEstimationResult `__ object. Since all QAE variants follow the same interface, we can use them all to solve the same problem instance." -msgstr "" +msgstr "Qiskit Algorithm はいくつかの QAE のアルゴリズムを全て `AmplitudeEstimator `__ インタフェースを派生して実装します。初期化ではアルゴリズム固有の設定と ``estimate`` メソッドを指定します。このメソッドが全ての処理を行い、 `EstimationProblem `__ を入力にとり、 `AmplitudeEstimationResult `__ オブジェクトを返します。全ての QAE の実装は同じインタフェースに従うため、同じ問題インスタンスを解くために使えます。" #: ../../tutorials/00_amplitude_estimation.ipynb:162 msgid "Next, we'll run all different QAE algorithms. To do so, we first define the estimation problem which will contain the :math:`\\mathcal{A}` and :math:`\\mathcal{Q}` operators as well as how to identify the :math:`|\\Psi_1\\rangle` state, which in this simple example is just :math:`|1\\rangle`." diff --git a/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/01_portfolio_optimization.po b/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/01_portfolio_optimization.po index 7179d3c0044387..14fb3f289879cd 100644 --- a/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/01_portfolio_optimization.po +++ b/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/01_portfolio_optimization.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 09:35+0000\n" -"PO-Revision-Date: 2023-11-14 11:27\n" +"PO-Revision-Date: 2023-12-19 13:50\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -74,7 +74,7 @@ msgstr "ここで、次の簡略化を想定します。すべての資産は同 #: ../../tutorials/01_portfolio_optimization.ipynb:42 msgid "The equality constraint :math:`1^T x = B` is mapped to a penalty term :math:`(1^T x - B)^2` which is scaled by a parameter and subtracted from the objective function. The resulting problem can be mapped to a Hamiltonian whose ground state corresponds to the optimal solution. This notebook shows how to use the Sampling Variational Quantum Eigensolver (``SamplingVQE``) or the Quantum Approximate Optimization Algorithm (``QAOA``) from `Qiskit Algorithms `__ to find the optimal solution for a given set of parameters." -msgstr "" +msgstr "等価制約 :math:`1^T x = B` は、パラメーターによってスケールされ、目的関数から減算される、ペナルティー項 :math:`(1^T x - B)^2` にマップされます。得られた問題は、基底状態が最適解に対応するハミルトニアンにマッピングすることができます。 このノートブックでは、与えられたパラメーターセットによる最適解を見つけるために、`Qiskit Algorithms `__ の Sampling Variational Quantum Eigensolver (``SamplingVQE``) または Quantum Approximate Optimization Algorithm (``QAOA``) を使用する方法について説明します。" #: ../../tutorials/01_portfolio_optimization.ipynb:45 msgid "Experiments on real quantum hardware for this problem are reported for instance in the following paper: `Improving Variational Quantum Optimization using CVaR. Barkoutsos et al. 2019. `__" diff --git a/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/02_portfolio_diversification.po b/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/02_portfolio_diversification.po index 663d0b7eede93b..b848fb4fd283a4 100644 --- a/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/02_portfolio_diversification.po +++ b/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/02_portfolio_diversification.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 09:35+0000\n" -"PO-Revision-Date: 2023-11-14 11:27\n" +"PO-Revision-Date: 2023-12-29 15:14\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -272,7 +272,7 @@ msgstr "[4] DJ. Berndt and J. Clifford, *Using dynamic time warping to find patt #: ../../tutorials/02_portfolio_diversification.ipynb:190 msgid "[5] `Max-Cut and Traveling Salesman Problem `__" -msgstr "" +msgstr "[5] `Max-Cut and Traveling Salesman Problem `__" #: ../../tutorials/02_portfolio_diversification.ipynb:202 msgid "The Implementation" @@ -304,7 +304,7 @@ msgstr "ソリューションは、星印で選択された銘柄が示され、 #: ../../tutorials/02_portfolio_diversification.ipynb:496 msgid "Quantum Computing solution using Qiskit" -msgstr "" +msgstr "Qiskit を使用した量子コンピューティング・ソリューション" #: ../../tutorials/02_portfolio_diversification.ipynb:498 msgid "For the quantum solution, we use Qiskit. We first define a class QuantumOptimizer that encodes the quantum approach to solve the problem and then we instantiate it and solve it. We define the following methods inside the class:" @@ -316,7 +316,7 @@ msgstr "``exact_solution`` : イジング・ハミルトニアンが :math:`Z` #: ../../tutorials/02_portfolio_diversification.ipynb:501 msgid "``sampling_vqe_solution`` : solves the problem :math:`(M)` via the Sampling Variational Quantum Eigensolver (``SamplingVQE``);" -msgstr "" +msgstr "``sampling_vqe_solution`` : サンプリング変数量子固有ソルバー (``SamplingVQE``) を介して問題 :math:`(M)` を解きます。" #: ../../tutorials/02_portfolio_diversification.ipynb:502 msgid "``qaoa_solution`` : solves the problem :math:`(M)` via a Quantum Approximate Optimization Algorithm (``QAOA``)." diff --git a/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/03_european_call_option_pricing.po b/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/03_european_call_option_pricing.po index 9445ffcf8fda26..c86d0aa9add4c8 100644 --- a/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/03_european_call_option_pricing.po +++ b/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/03_european_call_option_pricing.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 09:35+0000\n" -"PO-Revision-Date: 2023-11-14 11:27\n" +"PO-Revision-Date: 2023-12-19 02:00\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -132,7 +132,7 @@ msgstr "期待ペイオフの評価" #: ../../tutorials/03_european_call_option_pricing.ipynb:576 msgid "Instead of constructing these circuits manually, the Qiskit Finance module offers the ``EuropeanCallPricing`` circuit, which already implements this functionality as a building block." -msgstr "" +msgstr "これらの回路を手動で構築する代わりに、Qiskit Finance モジュールは ``EuropeanCallPricing`` 回路を提供しています。この回路は、この機能をビルディングブロックとしてすでに実装しています。" #: ../../tutorials/03_european_call_option_pricing.ipynb:660 msgid "Evaluate Delta" diff --git a/finance/docs/locale/te_IN/LC_MESSAGES/tutorials/02_portfolio_diversification.po b/finance/docs/locale/te_IN/LC_MESSAGES/tutorials/02_portfolio_diversification.po index 56bd98ac138085..00c9e9dfd4d88c 100644 --- a/finance/docs/locale/te_IN/LC_MESSAGES/tutorials/02_portfolio_diversification.po +++ b/finance/docs/locale/te_IN/LC_MESSAGES/tutorials/02_portfolio_diversification.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 09:35+0000\n" -"PO-Revision-Date: 2023-11-14 11:52\n" +"PO-Revision-Date: 2024-01-06 19:27\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" @@ -272,7 +272,7 @@ msgstr "[4] DJ. Berndt and J. Clifford, *సమయ శ్రేణిలో న #: ../../tutorials/02_portfolio_diversification.ipynb:190 msgid "[5] `Max-Cut and Traveling Salesman Problem `__" -msgstr "" +msgstr "[5] `Max-Cut and Traveling Salesman Problem `__" #: ../../tutorials/02_portfolio_diversification.ipynb:202 msgid "The Implementation" @@ -304,7 +304,7 @@ msgstr "పరిష్కారం ఎంచుకున్న స్టాక #: ../../tutorials/02_portfolio_diversification.ipynb:496 msgid "Quantum Computing solution using Qiskit" -msgstr "" +msgstr "Qiskit ఉపయోగించి క్వాంటం కంప్యూటింగ్ పరిష్కారం" #: ../../tutorials/02_portfolio_diversification.ipynb:498 msgid "For the quantum solution, we use Qiskit. We first define a class QuantumOptimizer that encodes the quantum approach to solve the problem and then we instantiate it and solve it. We define the following methods inside the class:" @@ -316,7 +316,7 @@ msgstr "``exact_solution`` : `Z` బాసిస్ లో ఐసింగ్ #: ../../tutorials/02_portfolio_diversification.ipynb:501 msgid "``sampling_vqe_solution`` : solves the problem :math:`(M)` via the Sampling Variational Quantum Eigensolver (``SamplingVQE``);" -msgstr "" +msgstr "``sampling_vqe_solution`` : నమూనా వేరియేషనల్ క్వాంటం ఈజెన్‌సోల్వర్ (``SamplingVQE``) ద్వారా :math:`(M)` సమస్యను పరిష్కరిస్తుంది;" #: ../../tutorials/02_portfolio_diversification.ipynb:502 msgid "``qaoa_solution`` : solves the problem :math:`(M)` via a Quantum Approximate Optimization Algorithm (``QAOA``)." diff --git a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/getting_started.po index ce8004b2f166aa..2bb65b706cac2d 100644 --- a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:35\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:24\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" diff --git a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/index.po b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/index.po index 52bb2f6e731620..1c72a51372e5e6 100644 --- a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:35\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:24\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" diff --git a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/migration/01_migration_guide_0.5.po index b79f7b0c486b23..a54d8929b72803 100644 --- a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:37\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:25\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" diff --git a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/migration/index.po b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/migration/index.po index 26382bcfc3e954..fa9787b7406245 100644 --- a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/migration/index.po +++ b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/migration/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:37\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:25\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" diff --git a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/01_neural_networks.po b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/01_neural_networks.po index 86d92bef0fb449..afe2a6450437e1 100644 --- a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/01_neural_networks.po +++ b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/01_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:36\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:24\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" diff --git a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po index 6cd051f2bdee63..b7487318528a27 100644 --- a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po +++ b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:36\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:24\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" diff --git a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po index 6f2c0e31638245..4ee0890d579916 100644 --- a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po +++ b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:37\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:25\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" diff --git a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/03_quantum_kernel.po b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/03_quantum_kernel.po index e370254d5f71bc..22b16233a24999 100644 --- a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/03_quantum_kernel.po +++ b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/03_quantum_kernel.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:36\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:24\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" diff --git a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/04_torch_qgan.po index 50eaee0f267637..66f2911cbc0da2 100644 --- a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:37\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:25\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" diff --git a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/05_torch_connector.po index df57cb0c5c95e0..1275849fde4371 100644 --- a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:56\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:24\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" diff --git a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index fba440beacb0fb..baf0f51f1610f0 100644 --- a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:36\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:24\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" diff --git a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index 68a100d2dd83f7..bbbb8b82ff9efd 100644 --- a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:36\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:24\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" diff --git a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index ef38afc1293b4f..ab7e81e368e1c5 100644 --- a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:37\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:25\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" diff --git a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/10_effective_dimension.po index 443a929940e313..cd1852a562b1c0 100644 --- a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:36\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:24\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" diff --git a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index fd25b0270f1d50..91d2f3a72036c1 100644 --- a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:36\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:25\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" diff --git a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index 4113c8bf47644b..4623738cca9fc2 100644 --- a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:37\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:25\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" diff --git a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/index.po index eceab8a4c17dc1..b8cd6d97126bd3 100644 --- a/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:36\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:24\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" diff --git a/machine-learning/docs/locale/de_DE/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/de_DE/LC_MESSAGES/getting_started.po index b7fc6b59f92dd8..f5d5a1e900dbea 100644 --- a/machine-learning/docs/locale/de_DE/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/de_DE/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:04\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:53\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" diff --git a/machine-learning/docs/locale/de_DE/LC_MESSAGES/index.po b/machine-learning/docs/locale/de_DE/LC_MESSAGES/index.po index 7a2d18cee86841..fbe0fa1a08c9e4 100644 --- a/machine-learning/docs/locale/de_DE/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/de_DE/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:04\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:53\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" diff --git a/machine-learning/docs/locale/de_DE/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/de_DE/LC_MESSAGES/migration/01_migration_guide_0.5.po index 5da5bcdba10ec2..c74a43fdffc196 100644 --- a/machine-learning/docs/locale/de_DE/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/de_DE/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:05\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:54\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" diff --git a/machine-learning/docs/locale/de_DE/LC_MESSAGES/migration/index.po b/machine-learning/docs/locale/de_DE/LC_MESSAGES/migration/index.po index 818af1b37a2ba7..ea78d6df2f2a5c 100644 --- a/machine-learning/docs/locale/de_DE/LC_MESSAGES/migration/index.po +++ b/machine-learning/docs/locale/de_DE/LC_MESSAGES/migration/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:05\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:54\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" diff --git a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/01_neural_networks.po b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/01_neural_networks.po index 7748c19038e287..21a375b1ad756a 100644 --- a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/01_neural_networks.po +++ b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/01_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:04\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:53\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" diff --git a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po index db9d18594736c0..e2beaa00707c47 100644 --- a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po +++ b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:04\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:53\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" diff --git a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po index 790fe81cd5fa1c..9df39575897a96 100644 --- a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po +++ b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:05\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:54\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" diff --git a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/03_quantum_kernel.po b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/03_quantum_kernel.po index 440f54517a0f2b..79cdad7abe9137 100644 --- a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/03_quantum_kernel.po +++ b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/03_quantum_kernel.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:04\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:53\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" diff --git a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/04_torch_qgan.po index b036f2a792df10..66ab0fd4bafb8b 100644 --- a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:05\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:54\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" diff --git a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/05_torch_connector.po index b22f5ff82113fd..d35e447ef29c16 100644 --- a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:33\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:53\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" diff --git a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index e6cadc2d6ab622..aeb21b25293d7a 100644 --- a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:04\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:54\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" diff --git a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index 25be1e5824222a..3cc2a294aaf53e 100644 --- a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:05\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:54\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" diff --git a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index 0af35e21585b8d..c61c23451df199 100644 --- a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:05\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:54\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" diff --git a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/10_effective_dimension.po index 3a9faf4f021e33..c682a7a16ab28a 100644 --- a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:05\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:54\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" diff --git a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index 6d2d6f88e36294..45163328630567 100644 --- a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:05\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:54\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" diff --git a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index 0c7c56e02ba0c3..afb020875e3880 100644 --- a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:05\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:54\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" diff --git a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/index.po index 9009897fce3c80..a32da3bdf4738a 100644 --- a/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:04\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:53\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" diff --git a/machine-learning/docs/locale/es_UN/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/es_UN/LC_MESSAGES/getting_started.po index 8d8238669c3c30..93ee1326b13c30 100644 --- a/machine-learning/docs/locale/es_UN/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/es_UN/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:38\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:26\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" diff --git a/machine-learning/docs/locale/es_UN/LC_MESSAGES/index.po b/machine-learning/docs/locale/es_UN/LC_MESSAGES/index.po index f47db12139445e..fe32b7527f5b01 100644 --- a/machine-learning/docs/locale/es_UN/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/es_UN/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:38\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:26\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" diff --git a/machine-learning/docs/locale/es_UN/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/es_UN/LC_MESSAGES/migration/01_migration_guide_0.5.po index 5b4e1f7a648089..1ee3cc8c5f22a1 100644 --- a/machine-learning/docs/locale/es_UN/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/es_UN/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:39\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:27\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" diff --git a/machine-learning/docs/locale/es_UN/LC_MESSAGES/migration/index.po b/machine-learning/docs/locale/es_UN/LC_MESSAGES/migration/index.po index 998d3bec8a21c3..66380f78954d01 100644 --- a/machine-learning/docs/locale/es_UN/LC_MESSAGES/migration/index.po +++ b/machine-learning/docs/locale/es_UN/LC_MESSAGES/migration/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:39\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:27\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" diff --git a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/01_neural_networks.po b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/01_neural_networks.po index 3d2fdab1bde374..ffb8eeac5dcdf2 100644 --- a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/01_neural_networks.po +++ b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/01_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:38\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:26\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" diff --git a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po index f3f9ec75d80b8e..9bfe6494057e1d 100644 --- a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po +++ b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:38\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:26\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" diff --git a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po index 614cc47bbb2db2..19303931165dfc 100644 --- a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po +++ b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:39\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:27\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" diff --git a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/03_quantum_kernel.po b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/03_quantum_kernel.po index 701382cdd91b21..47bf0d1c9818ea 100644 --- a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/03_quantum_kernel.po +++ b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/03_quantum_kernel.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:38\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:26\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" diff --git a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/04_torch_qgan.po index 542690faaf1e7f..4371bb1038f408 100644 --- a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:39\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:27\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" diff --git a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/05_torch_connector.po index 9279d1c1cc50b5..b2223b2bebf2d5 100644 --- a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:58\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:26\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" diff --git a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index b74b3f2872e362..78729a4ced0d83 100644 --- a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:38\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:27\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" diff --git a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index ec7870d8697de3..b59f83ea4770e5 100644 --- a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:38\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:27\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" diff --git a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index e0d7144f95375c..5ab08311ace84c 100644 --- a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:39\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:27\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" diff --git a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/10_effective_dimension.po index 4070bba3996c88..666622357c64d8 100644 --- a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:39\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:27\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" diff --git a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index de9949c3e9bdd3..f03206b80f39df 100644 --- a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:39\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:27\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" diff --git a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index 57dfb6b5dd2edb..4543edf884ecc9 100644 --- a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:39\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:27\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" diff --git a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/index.po index 7932dbbfba75c4..5f335a82eccb84 100644 --- a/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:38\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:26\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" diff --git a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/getting_started.po index ca773284b17ae0..1f31a2b6db8067 100644 --- a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:02\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:51\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" diff --git a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/index.po b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/index.po index d70ce41911f842..d6e10a6483e654 100644 --- a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:02\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:51\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" diff --git a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/migration/01_migration_guide_0.5.po index 27414bd48ce571..8ef59eaf303f19 100644 --- a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:03\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:52\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" diff --git a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/migration/index.po b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/migration/index.po index 02c4bf7fb82158..87f997190a29b7 100644 --- a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/migration/index.po +++ b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/migration/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:03\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:52\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" diff --git a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/01_neural_networks.po b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/01_neural_networks.po index 67d886eeca5e5a..5b162da9cb6534 100644 --- a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/01_neural_networks.po +++ b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/01_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:02\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:51\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" diff --git a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po index 71474ea419f63c..be734b2adf959e 100644 --- a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po +++ b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:02\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:51\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" diff --git a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po index d15518156fdd25..3eec2f3ee7a110 100644 --- a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po +++ b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:03\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:52\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" diff --git a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/03_quantum_kernel.po b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/03_quantum_kernel.po index ea9e068511cd66..0d7d9a5fb07d8e 100644 --- a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/03_quantum_kernel.po +++ b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/03_quantum_kernel.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:02\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:51\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" diff --git a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/04_torch_qgan.po index 3a69aeeda72792..737f8b402959a4 100644 --- a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:03\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:52\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" diff --git a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/05_torch_connector.po index 9d54128f6a19b5..08b6d83f3706f3 100644 --- a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:32\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:51\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" diff --git a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index 04d18521af6332..6bde930cea6d8a 100644 --- a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:03\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:52\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" diff --git a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index 5aaf2cf27baa70..5ed4768be3470a 100644 --- a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:03\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:52\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" diff --git a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index dfb9283a2dbc84..d8d977d87ff03c 100644 --- a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:03\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:52\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" diff --git a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/10_effective_dimension.po index 95de04dbdc41bf..eafde7428a9a63 100644 --- a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:03\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:52\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" diff --git a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index 4815cbafb5c29b..a30961b083d1ce 100644 --- a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:03\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:52\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" diff --git a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index 7289c8a2c3947d..c1976f2c151874 100644 --- a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:03\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:52\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" diff --git a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/index.po index 42e2cfe41cec04..bbc0557a4a714d 100644 --- a/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:02\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:51\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" diff --git a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/getting_started.po index 6e7a2090279f65..43e619d63482ac 100644 --- a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:06\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:55\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" diff --git a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/index.po b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/index.po index 60347663497e61..2aa5c99e9c4f9a 100644 --- a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:06\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:55\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" diff --git a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po index a7a42831e8995f..767e52d191ed48 100644 --- a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:07\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:56\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" diff --git a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/migration/index.po b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/migration/index.po index 77a42cad985969..0a39970ef9482e 100644 --- a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/migration/index.po +++ b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/migration/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:07\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:56\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" diff --git a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/01_neural_networks.po b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/01_neural_networks.po index c20839d2bc15a9..907703c0f052a5 100644 --- a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/01_neural_networks.po +++ b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/01_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:06\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:55\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" diff --git a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po index 4b0c6cc077ec7c..96f981398b8587 100644 --- a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po +++ b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:06\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:55\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" diff --git a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po index 90799770e8ddcd..64119a1d78ad4a 100644 --- a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po +++ b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:07\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:56\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" diff --git a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po index 4b64a8954f2162..94e60b8c282e86 100644 --- a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po +++ b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:06\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:55\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" diff --git a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/04_torch_qgan.po index 475e63466f12d1..dd9b1ce4f6e4b3 100644 --- a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:07\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:56\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" diff --git a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/05_torch_connector.po index 61316d121f942a..9c3fe0ea6e351c 100644 --- a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:35\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:55\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" diff --git a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index 29a9145a79d1aa..190e7a9d754dc0 100644 --- a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:06\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:55\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" diff --git a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index 2ecb6c2edc262f..ef46fcc96fd378 100644 --- a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:06\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:55\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" diff --git a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index ab57b54ab66fb8..0705117160c2f3 100644 --- a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:07\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:56\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" diff --git a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/10_effective_dimension.po index 7d516e786bec90..27bcd7926c6073 100644 --- a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:06\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:55\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" diff --git a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index 9bce03ebf3114f..c704606c69d641 100644 --- a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:07\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:56\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" diff --git a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index 60d4b60209d1f5..2385e93f7738d8 100644 --- a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:07\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:56\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" diff --git a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/index.po index 9e9539e88a0a7d..e9157041c42d17 100644 --- a/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/gu_IN/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:06\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:55\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" diff --git a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/getting_started.po index 557ad6027cdd0f..5413d412b6f2bb 100644 --- a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:31\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:19\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" diff --git a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/index.po b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/index.po index af55c2397be624..e00618d01e7a03 100644 --- a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:31\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:19\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" diff --git a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po index 38fd5181b1f566..86d0d3b62db076 100644 --- a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:32\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:20\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" diff --git a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/migration/index.po b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/migration/index.po index 366297fbcf7e59..7ccec000a628ec 100644 --- a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/migration/index.po +++ b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/migration/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:32\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:20\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" diff --git a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/01_neural_networks.po b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/01_neural_networks.po index 85deb14906ebea..53e0c4f64a5791 100644 --- a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/01_neural_networks.po +++ b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/01_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:31\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:19\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" diff --git a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po index 9d4de1bf91f4ef..82b5910d020bfc 100644 --- a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po +++ b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:31\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:19\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" diff --git a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po index 76e9d0ab385769..2c1fb1f2ac1890 100644 --- a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po +++ b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:32\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:20\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" diff --git a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po index ab8320fc9cdf9c..297c7e94571abb 100644 --- a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po +++ b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:31\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:19\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" diff --git a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/04_torch_qgan.po index 575c65ba42337b..863dd13032e0a0 100644 --- a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:32\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:20\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" diff --git a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/05_torch_connector.po index 2a8e1e4b6ad0b5..592713acfad997 100644 --- a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:53\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:19\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" diff --git a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index 67ecdf5ec8c9e5..35c322812e2159 100644 --- a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:31\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:20\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" diff --git a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index a00c341153f614..6f1961fc173b73 100644 --- a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:31\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:20\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" diff --git a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index d2291d76e4d99e..da520d15b9350b 100644 --- a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:32\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:20\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" diff --git a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/10_effective_dimension.po index 2fabb91bcf6dc4..e299141f162382 100644 --- a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:31\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:20\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" diff --git a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index 28bc3a5fc150d6..a00105a1bbb857 100644 --- a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:32\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:20\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" diff --git a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index fb363ea9b4c1de..ed9646b972ff31 100644 --- a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:32\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:21\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" diff --git a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/index.po index 99caa7ee71fb9d..b2eb068b679253 100644 --- a/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:31\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:19\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" diff --git a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/getting_started.po index af46efa95bb803..0ffaa620d0ad96 100644 --- a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:08\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2024-01-02 12:08\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -28,7 +28,7 @@ msgstr "インストール" #: ../../getting_started.rst:10 msgid "Qiskit Machine Learning depends on Qiskit, which has its own `Qiskit Getting Started `__ detailing installation options and its supported environments/platforms. You should refer to that first. Then the information here can be followed which focuses on the additional installation specific to Qiskit Machine Learning." -msgstr "" +msgstr "Qiskit 機械学習は、 インストール・オプションとそのサポート環境/プラットフォームを詳述した「`Qiskit はじめに `__ 」にて説明された Qiskit に依存しています。 まずそれを参照してください。次に、ここで説明する情報に従って、Qiskit 機械学習に固有の追加インストールをしましょう。" #: ../../getting_started.rst:16 msgid "Qiskit Machine Learning has some functions that have been made optional where the dependent code and/or support program(s) are not (or cannot be) installed by default. Those are PyTorch and Sparse. See :ref:`optional_installs` for more information." @@ -40,15 +40,15 @@ msgstr "ローカルで始める" #: ../../getting_started.rst:24 msgid "The simplest way to get started is to first follow the `getting started 'Start locally' guide for Qiskit `__" -msgstr "" +msgstr "最も簡単な方法は「 `Qiskit はじめに `__ 」の「ローカルで始める」のガイドを参照して開始することです。" #: ../../getting_started.rst:27 msgid "In your virtual environment, where you installed Qiskit, install Qiskit Machine Learning as follows:" -msgstr "" +msgstr "Qiskit をインストールした仮想環境で、次のように Qiskit Machine Learning をインストールします。" #: ../../getting_started.rst:35 msgid "As Qiskit Machine Learning depends on Qiskit, you can though simply install it into your environment, as above, and pip will automatically install a compatible version of Qiskit if one is not already installed." -msgstr "" +msgstr "Qiskit Machine Learning はQiskitに依存しているため、上記のようにQiskitを環境にインストールするだけで、Qiskitの互換バージョンがまだインストールされていない場合、pipがQiskitを自動的にインストールします。" #: ../../getting_started.rst msgid "Install from source" diff --git a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/index.po b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/index.po index 799a428395ad7e..2982f781058b00 100644 --- a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:08\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-19 13:50\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -56,7 +56,7 @@ msgstr "Qiskit Machine Learningは、分類や回帰など、さまざまなア #: ../../index.rst:14 msgid "Qiskit Machine Learning provides the :class:`~qiskit_machine_learning.kernels.FidelityQuantumKernel` class class that makes use of the :class:`~qiskit_algorithms.state_fidelities.BaseStateFidelity` algorithm introduced in Qiskit and can be easily used to directly compute kernel matrices for given datasets or can be passed to a Quantum Support Vector Classifier (:class:`~qiskit_machine_learning.algorithms.QSVC`) or Quantum Support Vector Regressor (:class:`~qiskit_machine_learning.algorithms.QSVR`) to quickly start solving classification or regression problems. It also can be used with many other existing kernel-based machine learning algorithms from established classical frameworks." -msgstr "" +msgstr "Qiskit Machine Learningは、Qiskitで導入された :class:`~qiskit_algorithms.state_fidelities.BaseStateFidelity` アルゴリズムを利用する :class:`~qiskit_machine_learning.kernels.FidelityQuantumKernel` クラスクラスを提供し、与えられたデータセットのカーネルマトリクスを直接計算するために簡単に使用でき、分類または回帰問題の解決を迅速に開始するために量子サポートベクター分類器 (:class:`~qiskit_machine_learning.algorithms.QSVC`) や量子サポートベクター回帰 (:class:`~qiskit_machine_learning.algorithms.QSVR`) に渡すことが可能です。また、既存の古典的なフレームワークのカーネルベースの機械学習アルゴリズムと併用することもできます." #: ../../index.rst:24 msgid "Qiskit Machine Learning defines a generic interface for neural networks that is implemented by different quantum neural networks. Two core implementations are readily provided, such as the :class:`~qiskit_machine_learning.neural_networks.EstimatorQNN` and the :class:`~qiskit_machine_learning.neural_networks.SamplerQNN`. The :class:`~qiskit_machine_learning.neural_networks.EstimatorQNN` leverages the :class:`~qiskit.primitives.BaseEstimator` primitive from Qiskit and allows users to combine parametrized quantum circuits with quantum mechanical observables. The circuits can be constructed using, for example, building blocks from Qiskit's circuit library, and the QNN's output is given by the expected value of the observable. The :class:`~qiskit_machine_learning.neural_networks.SamplerQNN` leverages another primitive introduced in Qiskit, the :class:`~qiskit.primitives.BaseSampler` primitive. This neural network translates quasi-probabilities of bitstrings estimated by the primitive into a desired output. This translation step can be used to interpret a given bitstring in a particular context, e.g. translating it into a set of classes." @@ -68,7 +68,7 @@ msgstr "ニューラルネットワークには、特定の入力に対してそ #: ../../index.rst:50 msgid "In addition to the models provided directly in Qiskit Machine Learning, it has the :class:`~qiskit_machine_learning.connectors.TorchConnector`, which allows users to integrate all of our quantum neural networks directly into the `PyTorch `__ open source machine learning library. Thanks to Qiskit Algorithm's gradient algorithms, this includes automatic differentiation - the overall gradients computed by `PyTorch `__ during the backpropagation take into account quantum neural networks, too. The flexible design also allows the building of connectors to other packages in the future." -msgstr "" +msgstr "Qiskit Machine Learningで直接提供されるモデルに加えて、 :class:`~qiskit_machine_learning.connectors.TorchConnector` があり、ユーザーはすべての量子ニューラルネットワークをオープンソースの機械学習ライブラリ `PyTorch `__ に直接統合できます。Qiskit Algorithmの勾配アルゴリズムのおかげで、これには自動微分が含まれます。誤差逆伝播中に `PyTorch `__ によって計算される全体的な勾配は、量子ニューラルネットワークも考慮に入れます。 柔軟な設計により、将来的に他のパッケージへのコネクタを構築することもできます。" #: ../../index.rst:64 msgid "Next Steps" diff --git a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/migration/01_migration_guide_0.5.po index c4775487ef977b..aa3f5a3e868ee6 100644 --- a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:09\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-19 13:50\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -104,11 +104,11 @@ msgstr "Terraはprimitiveとともに、QMLで非常に有用なprimitive的ア #: ../../migration/01_migration_guide_0.5.rst:72 msgid "Algorithms to calculate the gradient of a quantum circuit. For each core primitive there’s a corresponding base interface that defines quantum circuit gradient. The documentation on gradients is `here `__." -msgstr "" +msgstr "量子回路の勾配を計算するためのアルゴリズム。各コアprimitiveに対応する基本インターフェースがあり、量子回路の勾配を定義しています。勾配に関するドキュメントは `こちら `__です。" #: ../../migration/01_migration_guide_0.5.rst:76 msgid "Algorithms that compute the fidelity or “closeness” of pairs of quantum states. Currently, only one implementation is available that requires a sampler primitive and is based on the compute-uncompute method. The documentation is `here `__." -msgstr "" +msgstr "量子状態のペアの忠実度(近さ)を計算するアルゴリズム。現在、1つの実装のみが利用可能で、sampler primitiveを必要とし、compute-uncomputeメソッドに基づくものです。ドキュメントは `こちら `__です。" #: ../../migration/01_migration_guide_0.5.rst:82 msgid "Both two new algorithms are very similar to the core primitives, they share the same method signatures, so they may be called as high level primitives despite they are not in the primitives package." @@ -156,7 +156,7 @@ msgstr "量子カーネルの新しい設計を次の図に示します。" #: ../../migration/01_migration_guide_0.5.rst:-1 msgid "Quantum Kernel Diagram" -msgstr "" +msgstr "量子カーネルダイアグラム" #: ../../migration/01_migration_guide_0.5.rst:116 msgid "The new kernels expose the same interface and the same parameters except the ``quantum_instance`` parameter. This parameter does not have a direct replacement and instead the ``fidelity`` parameter must be used. The backend handling/selection, which was previously done using the ``quantum_instance``, is now taken care of via the Sampler primitive given to the ``fidelity``." @@ -264,7 +264,7 @@ msgstr "既存の `CircuitQNN `__ fidelity subroutine that leverages the `Sampler `__ primitive." -msgstr "" +msgstr "``fidelity``: この場合、 `ComputeUncompute `__ fidelity サブルーチンは、 `Sampler `__ primitive を利用します。" #: ../../tutorials/03_quantum_kernel.ipynb:267 msgid "**NOTE:** If you don't pass a ``Sampler`` or ``Fidelity`` instance, then the instances of the reference ``Sampler`` and ``ComputeUncompute`` classes (found in ``qiskit.primitives``) will be created by default." diff --git a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/04_torch_qgan.po index c3f4921914bebc..2ae6277bba69e6 100644 --- a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:09\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-19 13:50\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -52,7 +52,7 @@ msgstr "`ニューラルネットワークの定義 <#3.-Definitions-of-Neural-N #: ../../tutorials/04_torch_qgan.ipynb:21 msgid "`Setting up the Training Loop <#4.-Setting-up-the-Training-Loop>`__" -msgstr "" +msgstr "`トレーニング・ループのセットアップ <#4.-Setting-up-the-Training-Loop>`__" #: ../../tutorials/04_torch_qgan.ipynb:22 msgid "`Model Training <#5.-Model-Training>`__" diff --git a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/05_torch_connector.po index e72db31a77990c..4dc8d4e6a8568f 100644 --- a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:36\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-19 13:50\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -28,7 +28,7 @@ msgstr "Torch コネクターおよびハイブリッド QNN" #: ../../tutorials/05_torch_connector.ipynb:11 msgid "This tutorial introduces the ``TorchConnector`` class, and demonstrates how it allows for a natural integration of any ``NeuralNetwork`` from Qiskit Machine Learning into a PyTorch workflow. ``TorchConnector`` takes a ``NeuralNetwork`` and makes it available as a PyTorch ``Module``. The resulting module can be seamlessly incorporated into PyTorch classical architectures and trained jointly without additional considerations, enabling the development and testing of novel **hybrid quantum-classical** machine learning architectures." -msgstr "" +msgstr "このチュートリアルでは、``TorchConnector`` クラスを紹介します。そして、 ``TorchConnector`` が Qiskit 機械学習から PyTorch ワークフローに ``NeuralNetwork`` を自然に統合する方法を示します。 ``TorchConnector`` は ``NeuralNetwork`` を受け取り、PyTorchの ``Module`` として利用できるようにします。 得られたモジュールは、PyTorchの古典アーキテクチャーにシームレスに組み込むことができ、追加の考慮事項なしに一緒に学習することができます。 また、新しい **ハイブリッド量子古典** 機械学習アーキテクチャーの開発とテストを可能にします。" #: ../../tutorials/05_torch_connector.ipynb:15 msgid "Content:" @@ -60,7 +60,7 @@ msgstr "`回帰 <#2.-Regression>`__" #: ../../tutorials/05_torch_connector.ipynb:28 msgid "Regression with PyTorch and ``EstimatorQNN``" -msgstr "" +msgstr "PyTorchと ``EstimatorQNN`` による回帰" #: ../../tutorials/05_torch_connector.ipynb:30 msgid "`Part 2: MNIST Classification, Hybrid QNNs <#Part-2:-MNIST-Classification,-Hybrid-QNNs>`__" diff --git a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index 6b9bb3bad4a1d4..cea2cce8da38e3 100644 --- a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:09\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:57\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" diff --git a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index 449657e5b4e6b4..80ddcaf2765902 100644 --- a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:09\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-19 13:50\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -132,7 +132,7 @@ msgstr "モデルの適合とテスト" #: ../../tutorials/08_quantum_kernel_trainer.ipynb:384 msgid "We can pass the trained quantum kernel to a machine learning model, then fit the model and test on new data. Here, we will use Qiskit Machine Learning's ``QSVC`` for classification." -msgstr "" +msgstr "トレーニングされた量子カーネルを機械学習モデルに渡し、モデルを適合させて新しいデータでテストすることができます。ここでは、分類に Qiskit Machine Learning の ``QSVC`` を使用します。" #: ../../tutorials/08_quantum_kernel_trainer.ipynb:441 msgid "Visualize the Kernel Training Process" diff --git a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index 092de5ff962b22..9b24a0e236c53b 100644 --- a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:09\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:58\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" diff --git a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/10_effective_dimension.po index 5145e52c81e89c..3818a27be525cc 100644 --- a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:09\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2024-01-04 06:49\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -96,7 +96,7 @@ msgstr "3.1 QNNを定義する" #: ../../tutorials/10_effective_dimension.ipynb:111 msgid "The first step to create a ``SamplerQNN`` is to define a parametrized feature map and ansatz. In this toy example, we will use 3 qubits and the ``QNNCircuit`` class to simplify the composition of a feature map and an ansatz circuit. The resulting circuit is then used in the ``SamplerQNN`` class." -msgstr "" +msgstr "``SamplerQNN`` を作成する最初のステップは、パラメーター化された特徴量マップとansatzを定義することです。このおもちゃの例では、3量子ビットと ``QNNCircuit`` クラスを使って、特徴量マップとansatz回路の合成を簡単にします。こうしてできた回路を ``SamplerQNN`` クラスで使います。" #: ../../tutorials/10_effective_dimension.ipynb:176 msgid "The parametrized circuit can then be sent together with an optional interpret map (parity in this case) to the ``SamplerQNN`` constructor." diff --git a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index e46529a5daf948..dafade2bc497b8 100644 --- a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:09\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-19 13:50\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -372,7 +372,7 @@ msgstr "この例では、分類器の学習にCOBYLAオプティマイザーを #: ../../tutorials/11_quantum_convolutional_neural_networks.ipynb:925 msgid "We then place the the callback function, optimizer and operator of our QCNN created above into Qiskit Machine Learning's built in Neural Network Classifier, which we can then use to train our model." -msgstr "" +msgstr "そして、上記で作成したQCNNのコールバック関数、オプティマイザー、演算子をQiskit Machine Learningに内蔵されたニューラルネットワーク分類器に配置し、それを使ってモデルの学習を行います。" #: ../../tutorials/11_quantum_convolutional_neural_networks.ipynb:927 msgid "Since model training may take a long time we have already pre-trained the model for some iterations and saved the pre-trained weights. We'll continue training from that point by setting ``initial_point`` to a vector of pre-trained weights." diff --git a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index 5939092ca12dff..ea9b0b53a5552f 100644 --- a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:09\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2024-01-02 12:08\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -397,7 +397,7 @@ msgstr "このチュートリアルでは、0と1を含むノイズの多いデ #: ../../tutorials/12_quantum_autoencoder.ipynb:955 msgid "Each image contains :math:`32` pixels of which can be encoded into :math:`5` qubits by Amplitude Encoding. This can be done using Qiskit Machine Learning's ``RawFeatureVector`` feature map." -msgstr "" +msgstr "各画像は :math:`32` ピクセルを含み、振幅エンコーディングによって :math:`5` 個の量子ビットにエンコードされます。これはQiskit Machine Learning の ``RawFeatureVector`` 特徴量マップを使用して行うことができます。" #: ../../tutorials/12_quantum_autoencoder.ipynb:1060 msgid "After encoding our image into :math:`5` qubits, we begin to train our Quantum Autoencoder to compress this state into :math:`3` qubits." @@ -417,7 +417,7 @@ msgstr "ここでも、スワップテストが量子ビット :math:`3`, :math: #: ../../tutorials/12_quantum_autoencoder.ipynb:1136 msgid "We build our cost function, based on the swap test between the reference and trash space for the digit dataset. To do this, we again use Qiskit Machine Learning's CircuitQNN network and use the same interpret function as we are measuring the probability of getting the final qubit in the :math:`|1\\rangle` state." -msgstr "" +msgstr "我々は、数字データセットの参照空間とゴミ空間の間のスワップテストに基づいて、コスト関数を構築します。これを行うには、再びQiskit Machine Learning のCircuitQNNネットワークを使用し、最終的な量子ビットが :math:`|1\\rangle` 状態になる確率を測定しているのと同じ解釈関数を使用します。" #: ../../tutorials/12_quantum_autoencoder.ipynb:1170 msgid "Since model training may take a long time we have already pre-trained the model for some iterations and saved the pre-trained weights. We'll continue training from that point by setting ``initial_point`` to a vector of pre-trained weights." diff --git a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/index.po index 80b1a40d1b3500..72b2b73b408a5c 100644 --- a/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:08\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:57\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" diff --git a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/getting_started.po index 9019380f6adba7..c4d90357f5e416 100644 --- a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:10\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:59\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" diff --git a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/index.po b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/index.po index 4a2869da9ef5e3..db56a44411ef7b 100644 --- a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:10\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:59\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" diff --git a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/migration/01_migration_guide_0.5.po index f97da1d6c8f2fd..925f0d824f1caa 100644 --- a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:11\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:00\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" diff --git a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/migration/index.po b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/migration/index.po index e0e243152369b9..03e91cf6f83f79 100644 --- a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/migration/index.po +++ b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/migration/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:11\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:00\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" diff --git a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/01_neural_networks.po b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/01_neural_networks.po index 0f18ff886af5b3..4b6ca64f1599db 100644 --- a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/01_neural_networks.po +++ b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/01_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:11\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:59\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" diff --git a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po index 5989a06978922d..db32f56eddd1ea 100644 --- a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po +++ b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:11\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:59\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" diff --git a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po index e450f627e598b5..ef0c89cc736705 100644 --- a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po +++ b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:11\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:00\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" diff --git a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/03_quantum_kernel.po b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/03_quantum_kernel.po index e5f7343bf6e7ad..821e443ee061ae 100644 --- a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/03_quantum_kernel.po +++ b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/03_quantum_kernel.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:11\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:59\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" diff --git a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/04_torch_qgan.po index c3b2b5af42e5c0..29ba127b9fc902 100644 --- a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:11\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:00\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" diff --git a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/05_torch_connector.po index ba6bb848c0faaf..f9e550c0d004c0 100644 --- a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:38\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:59\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" diff --git a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index de6768c3ed9f35..ce5f1424a02be5 100644 --- a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:11\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:00\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" diff --git a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index d4614950f2d6d9..afef42d0d55445 100644 --- a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:11\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:00\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" diff --git a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index 0e0bf994409873..d00f170d146773 100644 --- a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:11\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:00\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" diff --git a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/10_effective_dimension.po index 7f45211365f072..4a4f6271dd981e 100644 --- a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:11\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:00\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" diff --git a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index 46c2823ecc9efd..5d7bd31a9a0558 100644 --- a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:11\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:00\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" diff --git a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index 8ce99b730488aa..41a99e86dd3f45 100644 --- a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:12\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:01\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" diff --git a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/index.po index 32499f3e14c3f7..480791c3352a2f 100644 --- a/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:11\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 12:59\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" diff --git a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/getting_started.po index 2381dcfb213df6..708a4d3018a30e 100644 --- a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:26\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:15\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" diff --git a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/index.po b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/index.po index 2e92ec5c1e2e81..00151ee1ca0598 100644 --- a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:26\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:15\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" diff --git a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po index f8f7a1ec61e8f1..f3883001d2347d 100644 --- a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:27\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:16\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" diff --git a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/migration/index.po b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/migration/index.po index e1d0b310e60772..95bde5458f7421 100644 --- a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/migration/index.po +++ b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/migration/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:28\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:16\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" diff --git a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/01_neural_networks.po b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/01_neural_networks.po index 00a83b51ba336b..322a74f5720dc7 100644 --- a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/01_neural_networks.po +++ b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/01_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:27\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:15\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" diff --git a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po index bad1e559ee3f7c..0a3224536d33e5 100644 --- a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po +++ b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:27\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:15\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" diff --git a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po index 74dc6314f611fa..c500c43c9114b6 100644 --- a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po +++ b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:28\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:16\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" diff --git a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po index 7d20c0c2f29586..211781b0a4cdae 100644 --- a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po +++ b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:27\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:15\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" diff --git a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/04_torch_qgan.po index f52079a478ba92..8ca61462829d82 100644 --- a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:28\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:16\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" diff --git a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/05_torch_connector.po index 335ec1e792332d..2dddedaf96e611 100644 --- a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:50\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:15\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" diff --git a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index 9cac8ec94f4518..c231ab1130c53c 100644 --- a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:27\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:16\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" diff --git a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index 18f112b26aa398..5e59160c4a3f55 100644 --- a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:27\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:16\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" diff --git a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index df8bb82364af31..d8fac890d33e2a 100644 --- a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:28\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:16\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" diff --git a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/10_effective_dimension.po index 932b8b45afcc8f..7046846148b197 100644 --- a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:27\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:16\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" diff --git a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index b48547f441fa5a..35dd75bc2cb84a 100644 --- a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:27\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:16\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" diff --git a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index 6e9c24edea8e72..d2fb2743868386 100644 --- a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:28\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:17\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" diff --git a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/index.po index 531d0e5c0953eb..a5d141c8aec62f 100644 --- a/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/mr_IN/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:27\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:15\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" diff --git a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/getting_started.po index 7b7a1b3b0e510d..ffa183c25bcb0f 100644 --- a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:13\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:02\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" diff --git a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/index.po b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/index.po index 4094574e95673d..45a583b04aecf0 100644 --- a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:13\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:02\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" diff --git a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/migration/01_migration_guide_0.5.po index 929b3c621cc79d..4b95c95be0e4bf 100644 --- a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:14\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:03\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" diff --git a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/migration/index.po b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/migration/index.po index be28bd5b355a25..c7169da231ec43 100644 --- a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/migration/index.po +++ b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/migration/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:14\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:03\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" diff --git a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/01_neural_networks.po b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/01_neural_networks.po index d5c6f13b2b0269..ba630a0a03191f 100644 --- a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/01_neural_networks.po +++ b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/01_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:13\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:02\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" diff --git a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po index 696e10f08c7708..33351cd29f46aa 100644 --- a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po +++ b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:13\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:02\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" diff --git a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po index fdf6a057873411..0342450ee0bea8 100644 --- a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po +++ b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:14\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:03\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" diff --git a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/03_quantum_kernel.po b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/03_quantum_kernel.po index d1093c545fb638..5354beaa08feeb 100644 --- a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/03_quantum_kernel.po +++ b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/03_quantum_kernel.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:13\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:02\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" diff --git a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/04_torch_qgan.po index 13894ee36e6f8e..da879523ea007f 100644 --- a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:14\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:03\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" diff --git a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/05_torch_connector.po index 08597d6f8047cc..34230141ea7ac5 100644 --- a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:40\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:02\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" diff --git a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index dd945e9ec3440a..7fc21e2f9038ee 100644 --- a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:13\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:02\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" diff --git a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index 6c58d06d8d899b..9eeb1bb99d065e 100644 --- a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:13\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:02\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" diff --git a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index 4c753f694dca75..af8d023e799934 100644 --- a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:14\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:03\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" diff --git a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/10_effective_dimension.po index b571fcb1876d7b..d5d8c2694929e5 100644 --- a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:13\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:02\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" diff --git a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index 64b2b1da2eaeaf..efbcb484d444a8 100644 --- a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:14\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:02\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" diff --git a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index e2da01a77ed9a6..3d1ad17158f40b 100644 --- a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:14\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:03\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" diff --git a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/index.po index f314b7e4a1dbf9..7de443969007c1 100644 --- a/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:13\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:02\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" diff --git a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/getting_started.po index 61d15749217a40..6013276fb43d42 100644 --- a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:40\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:28\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" diff --git a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/index.po b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/index.po index 5a6cb12d66353a..42bc2ec16e52b8 100644 --- a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:40\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:28\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" diff --git a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/migration/01_migration_guide_0.5.po index dfc90149ce1bce..b04d790762517c 100644 --- a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:41\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:29\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" diff --git a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/migration/index.po b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/migration/index.po index d3cd0804336ef9..a433c6d69a4a02 100644 --- a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/migration/index.po +++ b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/migration/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:41\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:30\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" diff --git a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/01_neural_networks.po b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/01_neural_networks.po index e6a7614f04331d..72ace3bbebf382 100644 --- a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/01_neural_networks.po +++ b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/01_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:40\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:29\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" diff --git a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po index f5fbbcce988792..5a03d273cbcb1b 100644 --- a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po +++ b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:40\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:29\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" diff --git a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po index d39311d2656afa..4bbca2f72d4e76 100644 --- a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po +++ b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:41\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:30\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" diff --git a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/03_quantum_kernel.po b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/03_quantum_kernel.po index 711a50a07087f1..2faafd8e11052f 100644 --- a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/03_quantum_kernel.po +++ b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/03_quantum_kernel.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:40\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:29\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" diff --git a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/04_torch_qgan.po index ed20255f1b590e..8bbdb0fbe11840 100644 --- a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:41\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:30\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" diff --git a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/05_torch_connector.po index 92d5baa4fef8d5..c430ef71dd9b67 100644 --- a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:59\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:29\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" diff --git a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index c3a2b8ce28b88d..a40bb6837f4791 100644 --- a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:41\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:29\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" diff --git a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index b5b5d6b0a1ff8f..85e9d444218a92 100644 --- a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:41\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:29\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" diff --git a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index f5c7b5a7ea5417..e235a837ded973 100644 --- a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:41\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:30\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" diff --git a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/10_effective_dimension.po index 4b0eb73e154fbf..829874f5e9f958 100644 --- a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:41\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:29\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" diff --git a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index ea34c310ae65cf..256f5d82e7567d 100644 --- a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:41\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:29\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" diff --git a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index 3ea0e19d8aa7d4..30489abe975de0 100644 --- a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:41\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:30\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" diff --git a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/index.po index 0ff8600a1c5751..5999dc84b56ed2 100644 --- a/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/pt_UN/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:40\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:29\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" diff --git a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/getting_started.po index 610b81bfa73706..071c56e3cb870d 100644 --- a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:15\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:04\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" diff --git a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/index.po b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/index.po index bb345e679afdec..e5df4a1df95e11 100644 --- a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:15\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:04\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" diff --git a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/migration/01_migration_guide_0.5.po index efa8a8c2abe57d..2e0c9d8073116d 100644 --- a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:16\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:05\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" diff --git a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/migration/index.po b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/migration/index.po index 94bcd0e9ff8c97..0cbea5290874ae 100644 --- a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/migration/index.po +++ b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/migration/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:16\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:05\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" diff --git a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/01_neural_networks.po b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/01_neural_networks.po index e08067ae16f671..2f9c87e9f64c36 100644 --- a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/01_neural_networks.po +++ b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/01_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:15\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:04\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" diff --git a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po index a9877bc6148b36..69a8b1b0afc40f 100644 --- a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po +++ b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:15\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:04\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" diff --git a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po index 1cc629902c5f76..02894450092cdc 100644 --- a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po +++ b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:16\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:05\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" diff --git a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/03_quantum_kernel.po b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/03_quantum_kernel.po index 32747863d80d0f..fb61718d061a0d 100644 --- a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/03_quantum_kernel.po +++ b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/03_quantum_kernel.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:15\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:04\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" diff --git a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/04_torch_qgan.po index 7c5ac6a291e296..559a6af7e3e5c8 100644 --- a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:16\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:05\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" diff --git a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/05_torch_connector.po index 11a47037fb8e2b..7aa632f9d56573 100644 --- a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:41\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:04\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" diff --git a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index f663afe177b707..3a2cbc0c29c112 100644 --- a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:15\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:05\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" diff --git a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index 068d83c43e46a0..31fe0cb814227a 100644 --- a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:16\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:05\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" diff --git a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index 10cd67e0cd9f94..79767888848ec3 100644 --- a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:16\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:05\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" diff --git a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/10_effective_dimension.po index c5fbb7cb4dd602..4b718e0edcce38 100644 --- a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:16\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:05\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" diff --git a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index 815df69ef25ea4..c8fdf6848dd1f2 100644 --- a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:16\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:05\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" diff --git a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index 60720e5a56c349..2abd5eb344b12e 100644 --- a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:16\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:05\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" diff --git a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/index.po index 5a9731e5d1cb55..af977e6032cc87 100644 --- a/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:15\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:04\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" diff --git a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/getting_started.po index 79200dd14c7e2d..99eef2c1fa0967 100644 --- a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:24\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:13\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" diff --git a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/index.po b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/index.po index 9fa538e71d7ec4..1cdc00c104bccc 100644 --- a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:24\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:13\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" diff --git a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po index f818e17d512090..eb8c7437471889 100644 --- a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:25\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:14\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" diff --git a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/migration/index.po b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/migration/index.po index c969e2883e2a5c..d2e2ab5dc6eb58 100644 --- a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/migration/index.po +++ b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/migration/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:25\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:14\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" diff --git a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/01_neural_networks.po b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/01_neural_networks.po index 1e5dbdae255667..ebeddc797310de 100644 --- a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/01_neural_networks.po +++ b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/01_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:24\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:13\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" diff --git a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po index e9051896728a03..2ba0d764887ab2 100644 --- a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po +++ b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:24\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:13\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" diff --git a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po index 90213bea74271a..672f5be271d851 100644 --- a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po +++ b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:25\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:14\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" diff --git a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po index 20e70d8560ad80..105dc2cb43c6e1 100644 --- a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po +++ b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:24\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:13\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" diff --git a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/04_torch_qgan.po index 3faf6dda240503..ea68aaf19170b8 100644 --- a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:25\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:14\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" diff --git a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/05_torch_connector.po index dba1027b08ea15..31e847456fd7f8 100644 --- a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:48\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:13\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" diff --git a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index 48529c256d7222..995600c055e4b1 100644 --- a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:25\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:14\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" diff --git a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index b071b96f498f0d..cc1879ae55750a 100644 --- a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:25\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:14\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" diff --git a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index 110b7af91e2bc7..0e212b23c2fbb7 100644 --- a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:25\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:14\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" diff --git a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/10_effective_dimension.po index 225fb5c36baeaa..7b2f78ea686206 100644 --- a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:25\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:14\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" diff --git a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index 8e35a9e564143d..d4978ff8cfd977 100644 --- a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:25\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:14\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" diff --git a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index 87eee186d796da..d8a8e635aa7088 100644 --- a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:25\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:14\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" diff --git a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/index.po index 719bd128e8ec69..b790e7736dea11 100644 --- a/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:24\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:13\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" diff --git a/machine-learning/docs/locale/te_IN/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/te_IN/LC_MESSAGES/getting_started.po index b76b119b13ca44..5cf5e5deef8229 100644 --- a/machine-learning/docs/locale/te_IN/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/te_IN/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:33\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:21\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" diff --git a/machine-learning/docs/locale/te_IN/LC_MESSAGES/index.po b/machine-learning/docs/locale/te_IN/LC_MESSAGES/index.po index f718143b87bc46..bc349f4d6dcfb9 100644 --- a/machine-learning/docs/locale/te_IN/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/te_IN/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:33\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:21\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" diff --git a/machine-learning/docs/locale/te_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/te_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po index 285877d9803ca4..9a92ca4c572f6c 100644 --- a/machine-learning/docs/locale/te_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/te_IN/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:34\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:23\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" diff --git a/machine-learning/docs/locale/te_IN/LC_MESSAGES/migration/index.po b/machine-learning/docs/locale/te_IN/LC_MESSAGES/migration/index.po index b0c2e2c0e4f0df..7df79f503a43f4 100644 --- a/machine-learning/docs/locale/te_IN/LC_MESSAGES/migration/index.po +++ b/machine-learning/docs/locale/te_IN/LC_MESSAGES/migration/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:34\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:23\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" diff --git a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/01_neural_networks.po b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/01_neural_networks.po index 714fa0a33924e9..5cecc03ba55a1a 100644 --- a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/01_neural_networks.po +++ b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/01_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:33\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:22\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" diff --git a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po index b132e31963f57f..cc75034f3fdb9f 100644 --- a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po +++ b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:33\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:22\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" diff --git a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po index 03170d84bfceed..38f8f86110fdf9 100644 --- a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po +++ b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:34\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:23\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" diff --git a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po index a9726d44eb849a..872e5354f93d98 100644 --- a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po +++ b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/03_quantum_kernel.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:33\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:22\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" diff --git a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/04_torch_qgan.po index 3a47044708eb53..aa0f12d627973b 100644 --- a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:34\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:23\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" diff --git a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/05_torch_connector.po index 58d38595efe7ae..ecc9d2505c1440 100644 --- a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:54\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:22\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" diff --git a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index bed6e13f557e56..499645db898d1f 100644 --- a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:34\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:22\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" diff --git a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index f0f8a13a297116..bf3c069f57fbdf 100644 --- a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:34\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:22\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" diff --git a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index c42c03e34a9e8a..0f0ff7caff0d12 100644 --- a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:34\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:23\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" diff --git a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/10_effective_dimension.po index f9c1db96998ad6..e2cd2af1fb64c4 100644 --- a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:34\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:22\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" diff --git a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index a81501a5624ac6..48a48c55c00894 100644 --- a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:34\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:22\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" diff --git a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index 9a05650b46f9ad..ea7fcdcc82ffd7 100644 --- a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:34\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:23\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" diff --git a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/index.po index cdb99c164fa35b..19d45df3c3b74d 100644 --- a/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/te_IN/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:33\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:22\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" diff --git a/machine-learning/docs/locale/th_TH/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/th_TH/LC_MESSAGES/getting_started.po index 5d670518a83030..9e7f098611ad96 100644 --- a/machine-learning/docs/locale/th_TH/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/th_TH/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:29\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:17\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" diff --git a/machine-learning/docs/locale/th_TH/LC_MESSAGES/index.po b/machine-learning/docs/locale/th_TH/LC_MESSAGES/index.po index 7c33a4ecaacba7..8d2c3a1ea955f4 100644 --- a/machine-learning/docs/locale/th_TH/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/th_TH/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:29\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:17\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" diff --git a/machine-learning/docs/locale/th_TH/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/th_TH/LC_MESSAGES/migration/01_migration_guide_0.5.po index 64bf81be93dd18..67cd5dbeb3fe6c 100644 --- a/machine-learning/docs/locale/th_TH/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/th_TH/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:30\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:18\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" diff --git a/machine-learning/docs/locale/th_TH/LC_MESSAGES/migration/index.po b/machine-learning/docs/locale/th_TH/LC_MESSAGES/migration/index.po index d9e1b38275f7ec..f184068fdc2abb 100644 --- a/machine-learning/docs/locale/th_TH/LC_MESSAGES/migration/index.po +++ b/machine-learning/docs/locale/th_TH/LC_MESSAGES/migration/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:30\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:18\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" diff --git a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/01_neural_networks.po b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/01_neural_networks.po index 37de5817ab20f1..34211fae0830f9 100644 --- a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/01_neural_networks.po +++ b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/01_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:29\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:18\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" diff --git a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po index 733d1dece610b7..1fee7b366b0d3f 100644 --- a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po +++ b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:29\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:18\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" diff --git a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po index 2116b816660597..c4cb6e90eb420e 100644 --- a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po +++ b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:30\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:18\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" diff --git a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/03_quantum_kernel.po b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/03_quantum_kernel.po index 64a6fd894eb4ff..e016408795e4ae 100644 --- a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/03_quantum_kernel.po +++ b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/03_quantum_kernel.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:29\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:18\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" diff --git a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/04_torch_qgan.po index d54c570a54d200..f562c73ef4506d 100644 --- a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:30\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:19\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" diff --git a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/05_torch_connector.po index 2804b5c27b271e..36dbdda9cf0994 100644 --- a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:51\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:18\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" diff --git a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index 10940766341307..84f8aabb680e93 100644 --- a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:29\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:18\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" diff --git a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index f4a1a8ca8bff1f..cc9e12c3d2ad41 100644 --- a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:29\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:18\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" diff --git a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index fc187eb068852a..5673e1019f38e2 100644 --- a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:30\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:19\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" diff --git a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/10_effective_dimension.po index 4f83f39552a70f..683fa28e786b81 100644 --- a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:29\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:18\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" diff --git a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index 1e9dab121c6cb8..0981f95e18b7c3 100644 --- a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:30\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:18\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" diff --git a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index f1437c6fe30999..ca9c604d7a56db 100644 --- a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:30\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:19\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" diff --git a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/index.po index de41cb6047748f..3b775f82730d82 100644 --- a/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/th_TH/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:29\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:18\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" diff --git a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/getting_started.po index 632c3a38101c56..959bbc5451d8f2 100644 --- a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:17\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:06\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" diff --git a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/index.po b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/index.po index 652bed1d2746ad..bc1bbb59fcf865 100644 --- a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:17\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:06\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" diff --git a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/migration/01_migration_guide_0.5.po index 627b046458a30c..e41cc904706bbe 100644 --- a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:18\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:07\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" diff --git a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/migration/index.po b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/migration/index.po index 437d12422bb6f5..de37bdcf5c80de 100644 --- a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/migration/index.po +++ b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/migration/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:18\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:07\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" diff --git a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/01_neural_networks.po b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/01_neural_networks.po index e6648d5b518b40..b36cc447a68f2a 100644 --- a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/01_neural_networks.po +++ b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/01_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:17\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:06\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" diff --git a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po index b56b79c0f62dce..0cb55bdb9fb2f6 100644 --- a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po +++ b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:17\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:06\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" diff --git a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po index 669f0d2f4816eb..05b7ec59959e8f 100644 --- a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po +++ b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:18\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:07\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" diff --git a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/03_quantum_kernel.po b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/03_quantum_kernel.po index 530f9ef35984ff..545154bdac9895 100644 --- a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/03_quantum_kernel.po +++ b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/03_quantum_kernel.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:17\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:06\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" diff --git a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/04_torch_qgan.po index 5cf759498d04ba..825fa444eae877 100644 --- a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:18\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:07\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" diff --git a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/05_torch_connector.po index 279ce6e5233ced..75729e88135d98 100644 --- a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:43\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:06\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" diff --git a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index 370693c162b901..5fd5cdfba1da5d 100644 --- a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:18\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:07\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" diff --git a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index 76f3fc4e16ebdd..3da184db0fc587 100644 --- a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:18\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:07\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" diff --git a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index b3439bb0f25f20..acb52fbcf20abf 100644 --- a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:18\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:07\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" diff --git a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/10_effective_dimension.po index b67b4120f8bc07..ba191e12c9be7f 100644 --- a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:18\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:07\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" diff --git a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index bfde8782165991..489a50f3428c31 100644 --- a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:18\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:07\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" diff --git a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index e118690e4e4ddd..94f580b80bae92 100644 --- a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:18\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:08\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" diff --git a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/index.po index 78d09a43b597b9..cd825ade25b711 100644 --- a/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:17\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:06\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" diff --git a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/getting_started.po index 21d25f3b479aec..28baa1ae292292 100644 --- a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:19\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:08\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" diff --git a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/index.po b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/index.po index b7eb12f224625e..ff4053b8052da9 100644 --- a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:19\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:08\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" diff --git a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/migration/01_migration_guide_0.5.po index ec8d329d96c09f..6b8109c49d3204 100644 --- a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:21\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:10\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" diff --git a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/migration/index.po b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/migration/index.po index 69fb0bb1a11cea..aa6c3367376a13 100644 --- a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/migration/index.po +++ b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/migration/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:21\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:10\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" diff --git a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/01_neural_networks.po b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/01_neural_networks.po index 42e87735835dbe..64f42381a16384 100644 --- a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/01_neural_networks.po +++ b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/01_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:20\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:09\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" diff --git a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po index d333b919df8c6c..4c4f241a4fa7aa 100644 --- a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po +++ b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:20\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:09\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" diff --git a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po index 0c48b08195cf38..2bf7cf2d52d735 100644 --- a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po +++ b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:21\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:10\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" diff --git a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/03_quantum_kernel.po b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/03_quantum_kernel.po index 1e1bb5aa19c1ce..b72d3d6ac164b0 100644 --- a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/03_quantum_kernel.po +++ b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/03_quantum_kernel.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:20\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:09\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" diff --git a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/04_torch_qgan.po index 1b8ccd72722683..29532f9d52bdbf 100644 --- a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:21\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:10\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" diff --git a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/05_torch_connector.po index 61b3f5c807af1a..262cfb58d38b99 100644 --- a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:45\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:09\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" diff --git a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index ef966a06073afe..ad3a71807f0480 100644 --- a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:20\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:09\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" diff --git a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index 7e3709dc3ae247..9531b787dff80c 100644 --- a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:20\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:09\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" diff --git a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index c0ce8c5fb0f71f..c17fbd8521d815 100644 --- a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:21\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:10\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" diff --git a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/10_effective_dimension.po index 039a8d7b0a1197..f120212e36aaa5 100644 --- a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:20\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:09\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" diff --git a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index db66c0e0a40c88..8e39bc4143179f 100644 --- a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:20\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:09\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" diff --git a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index 203f9e5bfec7d3..1982c1b902bea1 100644 --- a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:21\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:10\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" diff --git a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/index.po index 79d2b5ed673a69..c607bb7888927a 100644 --- a/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:20\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:09\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" diff --git a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/getting_started.po b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/getting_started.po index 453587d50c8b7e..48bcfa0c7f073c 100644 --- a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/getting_started.po +++ b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/getting_started.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:22\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:11\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" diff --git a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/index.po b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/index.po index a6c0bf0dfdc1da..cfdccee3c222cc 100644 --- a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/index.po +++ b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:22\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:11\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" diff --git a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/migration/01_migration_guide_0.5.po b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/migration/01_migration_guide_0.5.po index 743c7171cba4e0..5e8790ce34faf9 100644 --- a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/migration/01_migration_guide_0.5.po +++ b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/migration/01_migration_guide_0.5.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:23\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:12\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" diff --git a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/migration/index.po b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/migration/index.po index ec065bbd2c86b6..fc3337bd7b2faa 100644 --- a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/migration/index.po +++ b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/migration/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:23\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:12\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" diff --git a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/01_neural_networks.po b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/01_neural_networks.po index 0d1675f6ac51fd..81f927f2b95bd3 100644 --- a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/01_neural_networks.po +++ b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/01_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:22\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:11\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" diff --git a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po index 2dd258d9133025..836eee62c818a3 100644 --- a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po +++ b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/02_neural_network_classifier_and_regressor.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:22\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:11\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" diff --git a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po index 1dcb2592416626..2f15ca59ac4d08 100644 --- a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po +++ b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/02a_training_a_quantum_model_on_a_real_dataset.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:23\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:12\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" diff --git a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/03_quantum_kernel.po b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/03_quantum_kernel.po index eef508bd9bd762..799fefff87b3a7 100644 --- a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/03_quantum_kernel.po +++ b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/03_quantum_kernel.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:22\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:11\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" diff --git a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/04_torch_qgan.po b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/04_torch_qgan.po index 40626db01d3b7a..c57db7824ceb5d 100644 --- a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/04_torch_qgan.po +++ b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/04_torch_qgan.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:23\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:12\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" diff --git a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/05_torch_connector.po b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/05_torch_connector.po index 20877f7ce60023..0c604e02ef298e 100644 --- a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/05_torch_connector.po +++ b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/05_torch_connector.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:46+0000\n" -"PO-Revision-Date: 2023-11-29 14:46\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:11\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" diff --git a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/07_pegasos_qsvc.po b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/07_pegasos_qsvc.po index 4a4786b1a6803e..2fecb0a558f316 100644 --- a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/07_pegasos_qsvc.po +++ b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/07_pegasos_qsvc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:22\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:11\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" diff --git a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po index 6d7ff7b19f6a16..f6f2017beb6bf1 100644 --- a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po +++ b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/08_quantum_kernel_trainer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:22\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:11\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" diff --git a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/09_saving_and_loading_models.po b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/09_saving_and_loading_models.po index 0e4ea716b06b18..9693ac1f3c2a22 100644 --- a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/09_saving_and_loading_models.po +++ b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/09_saving_and_loading_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:23\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:12\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" diff --git a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/10_effective_dimension.po b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/10_effective_dimension.po index 6be029d5889c99..dc27341c9e1220 100644 --- a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/10_effective_dimension.po +++ b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/10_effective_dimension.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:22\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:11\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" diff --git a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po index d17124aaf6e47c..c884d0646b5b59 100644 --- a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po +++ b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/11_quantum_convolutional_neural_networks.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:23\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:12\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" diff --git a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/12_quantum_autoencoder.po b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/12_quantum_autoencoder.po index 55b93bf96ff14b..6d40bf8b27b326 100644 --- a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/12_quantum_autoencoder.po +++ b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/12_quantum_autoencoder.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:23\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:12\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" diff --git a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/index.po b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/index.po index 8ac52429df2385..95105f5a51ade5 100644 --- a/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/index.po +++ b/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials/index.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-10 17:18+0000\n" -"PO-Revision-Date: 2023-11-10 18:22\n" +"POT-Creation-Date: 2023-12-01 12:18+0000\n" +"PO-Revision-Date: 2023-12-01 13:11\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" diff --git a/nature/docs/locale/es_UN/LC_MESSAGES/tutorials/03_ground_state_solvers.po b/nature/docs/locale/es_UN/LC_MESSAGES/tutorials/03_ground_state_solvers.po index b26b4a130345fe..650915764b774f 100644 --- a/nature/docs/locale/es_UN/LC_MESSAGES/tutorials/03_ground_state_solvers.po +++ b/nature/docs/locale/es_UN/LC_MESSAGES/tutorials/03_ground_state_solvers.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-29 13:18+0000\n" -"PO-Revision-Date: 2023-11-29 14:58\n" +"PO-Revision-Date: 2023-12-01 13:27\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" @@ -32,11 +32,11 @@ msgstr "Introducción" #: ../../tutorials/03_ground_state_solvers.ipynb:23 msgid "|9c0ae4b6a23b437fa816289ab58f93fc|" -msgstr "" +msgstr "|9c0ae4b6a23b437fa816289ab58f93fc|" #: ../../tutorials/03_ground_state_solvers.ipynb:31 msgid "9c0ae4b6a23b437fa816289ab58f93fc" -msgstr "" +msgstr "9c0ae4b6a23b437fa816289ab58f93fc" #: ../../tutorials/03_ground_state_solvers.ipynb:25 msgid "In this tutorial we are going to discuss the ground state calculation interface of Qiskit Nature. The goal is to compute the ground state of a molecular Hamiltonian. This Hamiltonian can for example be electronic or vibrational. To know more about the preparation of the Hamiltonian, check out the `Electronic structure <01_electronic_structure.ipynb>`__ and `Vibrational structure tutorials <02_vibrational_structure.ipynb>`__." @@ -72,11 +72,11 @@ msgstr "Para encontrar el estado fundamental también podríamos usar el algorit #: ../../tutorials/03_ground_state_solvers.ipynb:116 msgid "|3351023065a64deeb51c069a8a4536ba|" -msgstr "" +msgstr "|3351023065a64deeb51c069a8a4536ba|" #: ../../tutorials/03_ground_state_solvers.ipynb:120 msgid "3351023065a64deeb51c069a8a4536ba" -msgstr "" +msgstr "3351023065a64deeb51c069a8a4536ba" #: ../../tutorials/03_ground_state_solvers.ipynb:118 msgid "Let's initialize a VQE solver." diff --git a/nature/docs/locale/es_UN/LC_MESSAGES/tutorials/04_excited_states_solvers.po b/nature/docs/locale/es_UN/LC_MESSAGES/tutorials/04_excited_states_solvers.po index d908432d4f987e..50ddeb57ebc77c 100644 --- a/nature/docs/locale/es_UN/LC_MESSAGES/tutorials/04_excited_states_solvers.po +++ b/nature/docs/locale/es_UN/LC_MESSAGES/tutorials/04_excited_states_solvers.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-29 13:18+0000\n" -"PO-Revision-Date: 2023-11-29 14:58\n" +"PO-Revision-Date: 2023-12-01 13:27\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" @@ -32,11 +32,11 @@ msgstr "Introducción" #: ../../tutorials/04_excited_states_solvers.ipynb:23 msgid "|3c7ffd1dde804d40a31af0b6af563c5f|" -msgstr "" +msgstr "|3c7ffd1dde804d40a31af0b6af563c5f|" #: ../../tutorials/04_excited_states_solvers.ipynb:29 msgid "3c7ffd1dde804d40a31af0b6af563c5f" -msgstr "" +msgstr "3c7ffd1dde804d40a31af0b6af563c5f" #: ../../tutorials/04_excited_states_solvers.ipynb:25 msgid "In this tutorial we are going to discuss the excited states calculation interface of Qiskit Nature. The goal is to compute the excited states of a molecular Hamiltonian. This Hamiltonian can be electronic or vibrational. To know more about the preparation of the Hamiltonian, check out the `Electronic structure <01_electronic_structure.ipynb>`__ and `Vibrational structure tutorials <02_vibrational_structure.ipynb>`__." diff --git a/nature/docs/locale/es_UN/LC_MESSAGES/tutorials/06_qubit_mappers.po b/nature/docs/locale/es_UN/LC_MESSAGES/tutorials/06_qubit_mappers.po index 8a0ecae2339c62..1577f7b48236ea 100644 --- a/nature/docs/locale/es_UN/LC_MESSAGES/tutorials/06_qubit_mappers.po +++ b/nature/docs/locale/es_UN/LC_MESSAGES/tutorials/06_qubit_mappers.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-29 13:18+0000\n" -"PO-Revision-Date: 2023-11-29 14:58\n" +"PO-Revision-Date: 2023-12-01 13:27\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" @@ -76,11 +76,11 @@ msgstr "El mapeo de Jordan-Wigner es el mapeo más directo con la interpretació #: ../../tutorials/06_qubit_mappers.ipynb:76 msgid "|41cf3883ceeb41389e11d3d022ca5a26|" -msgstr "" +msgstr "|41cf3883ceeb41389e11d3d022ca5a26|" #: ../../tutorials/06_qubit_mappers.ipynb:80 msgid "41cf3883ceeb41389e11d3d022ca5a26" -msgstr "" +msgstr "41cf3883ceeb41389e11d3d022ca5a26" #: ../../tutorials/06_qubit_mappers.ipynb:78 msgid "You can construct use it like so:" diff --git a/nature/docs/locale/ja_JP/LC_MESSAGES/getting_started.po b/nature/docs/locale/ja_JP/LC_MESSAGES/getting_started.po index 1f6e76a467b482..99b9a93b295825 100644 --- a/nature/docs/locale/ja_JP/LC_MESSAGES/getting_started.po +++ b/nature/docs/locale/ja_JP/LC_MESSAGES/getting_started.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-28 15:28+0000\n" -"PO-Revision-Date: 2023-11-29 13:04\n" +"PO-Revision-Date: 2024-01-04 07:56\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -28,7 +28,7 @@ msgstr "インストール" #: ../../getting_started.rst:10 msgid "Qiskit Nature depends on Qiskit, which has its own `Qiskit Getting Started `__ detailing the installation options and its supported environments/platforms. You should refer to that first. Then the information here can be followed which focuses on the additional installation specific to Qiskit Nature." -msgstr "" +msgstr "Qiskit Natureは、インストール・オプションとそのサポート環境/プラットフォームを詳述した「`Qiskit はじめに `__ 」にて説明されたQiskitに依存しています。 まずそれを参照してください。次に、ここで説明する情報に従って、Qiskit Natureに固有の追加インストールをしましょう。" #: ../../getting_started.rst:16 msgid "Qiskit Nature has some functions that have been made optional where the dependent code and/or support program(s) are not (or cannot be) installed by default. These include, for example, classical library/programs for molecular problems. See :ref:`optional_installs` for more information." @@ -40,15 +40,15 @@ msgstr "ローカルからの開始" #: ../../getting_started.rst:25 msgid "The simplest way to get started is to first follow the `getting started 'Start locally' guide for Qiskit `__" -msgstr "" +msgstr "最も簡単な方法は「 `Qiskit はじめに `__ 」の「ローカルで始める」のガイドを参照して開始することです。" #: ../../getting_started.rst:28 msgid "In your virtual environment, where you installed Qiskit, install Qiskit Nature as follows:" -msgstr "" +msgstr "Qiskit をインストールした仮想環境で、次のように Qiskit Nature をインストールします。" #: ../../getting_started.rst:36 msgid "As Qiskit Nature depends on Qiskit, you can though simply install it into your environment, as above, and pip will automatically install a compatible version of Qiskit if one is not already installed." -msgstr "" +msgstr "Qiskit Nature はQiskitに依存しているため、上記のようにQiskitを環境にインストールするだけで、Qiskitの互換バージョンがまだインストールされていない場合、pipがQiskitを自動的にインストールします。" #: ../../getting_started.rst msgid "Install from source" @@ -100,15 +100,15 @@ msgstr "各ドライバーのリストや必要な依存ライブラリ/プロ #: ../../getting_started.rst:104 msgid "The drivers only provide a very limited set of capabilities of the underlying classical codes. While this is useful for getting started and testing purposes, a better experience can be had in the reversed order of responsibility. That is, in a setup where the classical code runs the Qiskit Nature components. Such an integration currently exists for the following packages:" -msgstr "" +msgstr "これらのドライバーは、基礎となる古典的なコードの非常に限られた機能セットのみを提供します。 これは、使い始めやテスト目的では役に立ちますが、責任の順序を逆にした方が、より良い体験ができます。これは、古典的なコードが Qiskit Natureのコンポーネントを実行するようなセットアップです。 このような統合は、現在、以下のパッケージに対して存在しています:" #: ../../getting_started.rst:109 msgid "PySCF via `qiskit-nature-pyscf `_" -msgstr "" +msgstr "PySCF、`qiskit-nature-pyscf `_ 経由" #: ../../getting_started.rst:111 msgid "If you are interested in using Psi4, we are actively looking for help to get started on a similar integration in `qiskit-nature-psi4 `_" -msgstr "" +msgstr "Psi4 の利用に興味がある場合は、 `qiskit-nature-psi4 `_ での同様の統合を開始するのを手伝っていただける方を積極的に探しています。" #: ../../getting_started.rst:113 msgid "Additionally, you may find the following optional dependencies useful:" @@ -128,7 +128,7 @@ msgstr "準備はいいですか?..." #: ../../getting_started.rst:123 msgid "Now that Qiskit Nature is installed, let's try a chemistry application experiment using the :class:`~qiskit_algorithms.VQE` (Variational Quantum Eigensolver) algorithm to compute the ground-state (minimum) energy of a molecule." -msgstr "" +msgstr "Qiskit Natureがインストールされたので、分子の基底状態 (最小) エネルギーを計算するための :class:`~qiskit_algorithms.VQE` (Variational Quantum Eigensolver) アルゴリズムを使用して化学アプリケーションの実験を試してみましょう。" #: ../../getting_started.rst:213 msgid "The program above computes the ground state energy of molecular Hydrogen, H2, where the two atoms are configured to be at a distance of 0.735 angstroms. The molecular input specification is processed by the PySCF driver. This driver produces an :class:`~qiskit_nature.second_q.problems.ElectronicStructureProblem` which gathers all the problem information required by Qiskit Nature. The second-quantized operators contained in that problem can be mapped to qubit operators with a :class:`~qiskit_nature.second_q.mappers.QubitMapper`. Here, we chose the :class:`~qiskit_nature.second_q.mappers.ParityMapper` which automatically removes 2 qubits due to inherit symmetries when the `num_particles` are provided to it; a reduction in complexity that is particularly advantageous for NISQ computers." @@ -136,9 +136,9 @@ msgstr "上記プログラムは、2つの原子が0.735オングストローム #: ../../getting_started.rst:226 msgid "For actually finding the ground state solution, the Variational Quantum Eigensolver (:class:`~qiskit_algorithms.VQE`) algorithm is used. Its main three components are the estimator primitive (:class:`~qiskit.primitives.Estimator`), wavefunction ansatz (:class:`~qiskit_nature.second_q.circuit.library.UCCSD`), and optimizer (:class:`~qiskit_algorithms.optimizers.L_BFGS_B`). The :class:`~qiskit_nature.second_q.circuit.library.UCCSD` component is the only one provided directly by Qiskit Nature and it is usually paired with the :class:`~qiskit_nature.second_q.circuit.library.HartreeFock` initial state and an all-zero initial point for the optimizer." -msgstr "" +msgstr "基底状態の解を実際に見つけるために、Variational Quantum Eigensolver (:class:`~qiskit_algorithms.VQE`) アルゴリズムが使用されます。主な 3 つの構成要素は、estimator primitive (:class:`~qiskit.primitives.Estimator`)、波動関数ansatz (:class:`~qiskit_nature.second_q.circuit.library.UCCSD`)、およびオプティマイザー (:class:`~qiskit_algorithms.optimizers.L_BFGS_B`) です。 :class:`~qiskit_nature.second_q.circuit.library.UCCSD` コンポーネントは、直接 Qiskit Natureによって提供される唯一のコンポーネントであり、通常は :class:`~qiskit_nature.second_q.circuit.library.HartreeFock` の初期状態と最適化プログラムのすべてのゼロの初期点と対になっています。" #: ../../getting_started.rst:237 msgid "The entire problem is then solved using a :class:`~qiskit_nature.second_q.algorithms.GroundStateEigensolver` which wraps both, the :class:`~qiskit_nature.second_q.mappers.ParityMapper` and :class:`~qiskit_algorithms.VQE`. Since an :class:`~qiskit_nature.second_q.problems.ElectronicStructureProblem` is provided to it (which was the output of the :class:`~qiskit_nature.second_q.drivers.PySCFDriver`) it also returns an :class:`~qiskit_nature.second_q.problems.ElectronicStructureResult`." -msgstr "" +msgstr "問題全体は、:class:`~qiskit_nature.second_q.mappers.ParityMapper` と :class:`~qiskit_algorithms.VQE`の両方をラップする :class:`~qiskit_nature.second_q.algorithms.GroundStateEigensolver` で解決されます。 :class:`~qiskit_nature.second_q.problems.ElectronicStructureProblem` が提供されているので( :class:`~qiskit_nature.second_q.drivers.PySCFDriver`の出力)、 :class:`~qiskit_nature.second_q.problems.ElectronicStructureResult` も返します。" diff --git a/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/adapt_vqe.po b/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/adapt_vqe.po index 3550197ef5b2a8..4d148d191fd662 100644 --- a/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/adapt_vqe.po +++ b/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/adapt_vqe.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-28 15:28+0000\n" -"PO-Revision-Date: 2023-11-29 13:05\n" +"PO-Revision-Date: 2024-01-04 07:56\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -24,7 +24,7 @@ msgstr "AdaptVQE を使用して基底状態エネルギーを見つける" #: ../../howtos/adapt_vqe.rst:4 msgid "This guide outlines how the :class:`~qiskit_algorithms.AdaptVQE` algorithm can be used to find the ground state solutions of natural science problems." -msgstr "" +msgstr "このガイドでは、自然科学問題の基底状態解を求めるために :class:`~qiskit_algorithms.AdaptVQE` アルゴリズムをどのように使用できるかを概説します。" #: ../../howtos/adapt_vqe.rst:8 msgid "We obtain an :class:`~qiskit_nature.second_q.problems.ElectronicStructureProblem` which we want to solve:" @@ -40,11 +40,11 @@ msgstr "Ansatz をセットアップします:" #: ../../howtos/adapt_vqe.rst:40 msgid "We setup a :class:`~qiskit_algorithms.VQE`:" -msgstr "" +msgstr "解きたい :class:`~qiskit_algorithms.VQE` を取得します:" #: ../../howtos/adapt_vqe.rst:51 msgid "We setup the :class:`~qiskit_algorithms.AdaptVQE`:" -msgstr "" +msgstr ":class:`~qiskit_algorithms.AdaptVQE` を設定します:" #: ../../howtos/adapt_vqe.rst:59 msgid "We wrap everything in a :class:`~qiskit_nature.second_q.algorithms.GroundStateEigensolver`:" diff --git a/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/numpy_eigensolver.po b/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/numpy_eigensolver.po index 8ee2c747d33b8a..e53bc7a624e3fa 100644 --- a/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/numpy_eigensolver.po +++ b/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/numpy_eigensolver.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-28 15:28+0000\n" -"PO-Revision-Date: 2023-11-29 13:05\n" +"PO-Revision-Date: 2023-12-29 15:14\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -24,7 +24,7 @@ msgstr "NumPyEigensolver を使用して、励起状態のエネルギーを検 #: ../../howtos/numpy_eigensolver.rst:6 msgid "In order to ensure a physically meaningful excited states of a hamiltonian are found when using the :class:`~qiskit_algorithms.NumPyEigensolver` one needs to set the :attr:`~qiskit_algorithms.NumPyEigensolver.filter_criterion` attribute of the solver." -msgstr "" +msgstr ":class:`~qiskit_algorithms.NumPyEigensolver` クラスを使用して物理的に意味のあるハミルトニアンの励起状態を確実に見つけるためには、ソルバーの :attr:`~qiskit_algorithms.NumPyEigensolver.filter_criterion` 属性を設定する必要があります。" #: ../../howtos/numpy_eigensolver.rst:11 msgid "Subclasses of :class:`~qiskit_nature.second_q.problems.BaseProblem` in Qiskit Nature provide the :meth:`~qiskit_nature.second_q.problems.BaseProblem.get_default_filter_criterion` method which provides a default implementation of such a filter criterion for commonly encountered cases." @@ -44,7 +44,7 @@ msgstr ":class:`~qiskit_nature.second_q.mappers.QubitMapper` をセットアッ #: ../../howtos/numpy_eigensolver.rst:33 msgid "We setup our :class:`~qiskit_algorithms.NumPyEigensolver`:" -msgstr "" +msgstr ":class:`~qiskit_algorithms.NumPyEigensolver` をセットアップします:" #: ../../howtos/numpy_eigensolver.rst:41 msgid "We wrap everything in a :class:`~qiskit_nature.second_q.algorithms.ExcitedStatesEigensolver`:" diff --git a/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/numpy_minimum_eigensolver.po b/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/numpy_minimum_eigensolver.po index 5de85cedc68836..1fd3cbebda020d 100644 --- a/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/numpy_minimum_eigensolver.po +++ b/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/numpy_minimum_eigensolver.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-28 15:28+0000\n" -"PO-Revision-Date: 2023-11-29 13:05\n" +"PO-Revision-Date: 2024-01-04 07:56\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -24,7 +24,7 @@ msgstr "NumPyMinimumEigensolver を使用した励起状態エネルギーの探 #: ../../howtos/numpy_minimum_eigensolver.rst:6 msgid "In order to ensure a physically meaningful ground state of a hamiltonian is found when using the :class:`~qiskit_algorithms.NumPyMinimumEigensolver` one needs to set the :attr:`~qiskit_algorithms.NumPyMinimumEigensolver.filter_criterion` attribute of the solver." -msgstr "" +msgstr ":class:`~qiskit_algorithms.NumPyMinimumEigensolver` クラスを使用して物理的に意味のあるハミルトニアンの基底状態を確実に見つけるためには、ソルバーの :attr:`~qiskit_algorithms.NumPyMinimumEigensolver.filter_criterion` 属性を設定する必要があります。" #: ../../howtos/numpy_minimum_eigensolver.rst:11 msgid "Subclasses of :class:`~qiskit_nature.second_q.problems.BaseProblem` in Qiskit Nature provide the :meth:`~qiskit_nature.second_q.problems.BaseProblem.get_default_filter_criterion` method which provides a default implementation of such a filter criterion for commonly encountered cases." @@ -44,7 +44,7 @@ msgstr ":class:`~qiskit_nature.second_q.mappers.QubitMapper` を設定します #: ../../howtos/numpy_minimum_eigensolver.rst:33 msgid "We setup our :class:`~qiskit_algorithms.minimum_eigensolvers.NumPyMinimumEigensolver`:" -msgstr "" +msgstr ":class:`~qiskit_algorithms.minimum_eigensolvers.NumPyMinimumEigensolver` を設定します:" #: ../../howtos/numpy_minimum_eigensolver.rst:41 msgid "We wrap everything in a :class:`~qiskit_nature.second_q.algorithms.GroundStateEigensolver`:" diff --git a/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/vqe_ucc.po b/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/vqe_ucc.po index 72832fd3e598f5..9371c4b0b130a3 100644 --- a/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/vqe_ucc.po +++ b/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/vqe_ucc.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-28 15:28+0000\n" -"PO-Revision-Date: 2023-11-29 13:05\n" +"PO-Revision-Date: 2024-01-04 07:56\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -24,7 +24,7 @@ msgstr "VQEにおけるUCCのようなansatzの使用" #: ../../howtos/vqe_ucc.rst:6 msgid "When using a :class:`~qiskit_nature.second_q.circuit.library.UCC`-style ansatz with a :class:`~qiskit_algorithms.VQE` one needs to pay particular attention to the :attr:`~qiskit_algorithms.VQE.initial_point` attribute which indicates from which set of initial parameters the optimization routine should start. By default, VQE will start from a *random* initial point. In this how to we show how one can set a custom initial point instead (for example to guarantee that one starts from the Hartree-Fock state)." -msgstr "" +msgstr ":class:`~qiskit_algorithms.VQE` クラスで :class:`~qiskit_nature.second_q.circuit.library.UCC` スタイルのansatzを使用する場合、最適化ルーチンをどの初期パラメータセットから開始するかを示す :attr:`~qiskit_algorithms.VQE.initial_point` 属性に特に注意する必要があります。デフォルトでは、VQEは *ランダム* な初期点からスタートします。このHow toでは、カスタム初期点を設定する方法を紹介します (例えば、Hartree-Fock状態から開始することを保証する場合など)。" #: ../../howtos/vqe_ucc.rst:14 msgid "We obtain an :class:`~qiskit_nature.second_q.problems.ElectronicStructureProblem` which we want to solve:" @@ -40,7 +40,7 @@ msgstr "Ansatz をセットアップします:" #: ../../howtos/vqe_ucc.rst:46 msgid "We setup a :class:`~qiskit_algorithms.VQE`:" -msgstr "" +msgstr "解きたい :class:`~qiskit_algorithms.VQE` を取得します:" #: ../../howtos/vqe_ucc.rst:56 msgid "Now comes the key step: choosing the initial point. Since we picked the :class:`~qiskit_nature.second_q.circuit.library.HartreeFock` initial state before, in order to ensure we start from that, we need to initialize our ``initial_point`` with all-zero parameters. One way to do that is like so:" diff --git a/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/vqe_uvcc.po b/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/vqe_uvcc.po index f9940debd55943..70f7bed76a36ac 100644 --- a/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/vqe_uvcc.po +++ b/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/vqe_uvcc.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-28 15:28+0000\n" -"PO-Revision-Date: 2023-11-29 13:05\n" +"PO-Revision-Date: 2024-01-04 07:56\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -24,7 +24,7 @@ msgstr "VQEにおけるUVCCのようなansatzの使用" #: ../../howtos/vqe_uvcc.rst:6 msgid "When using a :class:`~qiskit_nature.second_q.circuit.library.UVCC`-style ansatz with a :class:`~qiskit_algorithms.VQE` one needs to pay particular attention to the :attr:`~qiskit_algorithms.VQE.initial_point` attribute which indicates from which set of initial parameters the optimization routine should start. By default, VQE will start from a *random* initial point. In this how to we show how one can set a custom initial point instead (for example to guarantee that one starts from the VSCF state)." -msgstr "" +msgstr ":class:`~qiskit_algorithms.VQE` クラスで :class:`~qiskit_nature.second_q.circuit.library.UVCC` スタイルのansatzを使用する場合、最適化ルーチンをどの初期パラメータセットから開始するかを示す :attr:`~qiskit_algorithms.VQE.initial_point` 属性に特に注意する必要があります。デフォルトでは、VQEは *ランダム* な初期点からスタートします。このHow toでは、カスタム初期点を設定する方法を紹介します (例えば、VSCF状態から開始することを保証する場合など)。" #: ../../howtos/vqe_uvcc.rst:14 msgid "The basics of this how-to are identical to the UCC-like ansatz how-to (TODO: add link). Thus, here we will simply show how to use the :class:`~qiskit_nature.second_q.algorithms.initial_points.VSCFInitialPoint` like so:" @@ -40,7 +40,7 @@ msgstr "Ansatz をセットアップします:" #: ../../howtos/vqe_uvcc.rst:43 msgid "We setup a :class:`~qiskit_algorithms.VQE`:" -msgstr "" +msgstr "解きたい :class:`~qiskit_algorithms.VQE` を取得します:" #: ../../howtos/vqe_uvcc.rst:53 msgid "Now comes the key step: choosing the initial point. Since we picked the :class:`~qiskit_nature.second_q.circuit.library.VSCF` initial state before, in order to ensure we start from that, we need to initialize our ``initial_point`` with all-zero parameters. One way to do that is like so:" diff --git a/nature/docs/locale/ja_JP/LC_MESSAGES/index.po b/nature/docs/locale/ja_JP/LC_MESSAGES/index.po index 14b3d06412a7a0..da061448287fe5 100644 --- a/nature/docs/locale/ja_JP/LC_MESSAGES/index.po +++ b/nature/docs/locale/ja_JP/LC_MESSAGES/index.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-28 15:28+0000\n" -"PO-Revision-Date: 2023-11-29 13:04\n" +"PO-Revision-Date: 2024-01-04 07:56\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -84,7 +84,7 @@ msgstr "自然科学分野をターゲットとした量子回路ライブラリ #: ../../index.rst:22 msgid "natural science specific algorithms and utilities to make the use of algorithms from `Qiskit Algorithms `_ easier" -msgstr "" +msgstr "`Qiskit Algorithms `_ のアルゴリズムをより簡単に使用するための、自然科学特有のアルゴリズムとユーティリティー" #: ../../index.rst:24 msgid "and much more" diff --git a/nature/docs/locale/ja_JP/LC_MESSAGES/migration/0.5_b_solving_problems.po b/nature/docs/locale/ja_JP/LC_MESSAGES/migration/0.5_b_solving_problems.po index b39e25f5b2c7e7..a4f801413e1aa6 100644 --- a/nature/docs/locale/ja_JP/LC_MESSAGES/migration/0.5_b_solving_problems.po +++ b/nature/docs/locale/ja_JP/LC_MESSAGES/migration/0.5_b_solving_problems.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-28 15:28+0000\n" -"PO-Revision-Date: 2023-11-29 13:05\n" +"PO-Revision-Date: 2023-12-29 15:14\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -56,7 +56,7 @@ msgstr "``qiskit_nature.mappers``" #: ../../migration/0.5_b_solving_problems.rst:33 msgid "The mappers of Qiskit Nature did **not** receive any API changes (other than potentially requiring certain arguments to be keywords; see also the `“Too many positional arguments” section <./0.5_a_intro.ipynb>`__). However, the entire module ``qiskit_nature.mappers.second_quantization`` has been moved to ``qiskit_nature.second_q.mappers``. So updating your import is all you need to do here." -msgstr "" +msgstr "Qiskit Nature のマッパーは、API の変更を **受け取りませんでした** (特定の引数をキーワードにする必要がある可能性を除いて。: `「多すぎる位置指定引数」セクション <./0.5_a_intro.ipynb>`__ も参照してください)。 しかし、モジュール ``qiskit_nature.mappers.second_quantization`` はすべて ``qiskit_nature.second_q.mappers`` に移動されました。そのため、インポートを更新するだけでよいのです。" #: ../../migration/0.5_b_solving_problems.rst:41 msgid "``qiskit_nature.converters``" diff --git a/nature/docs/locale/ja_JP/LC_MESSAGES/migration/index.po b/nature/docs/locale/ja_JP/LC_MESSAGES/migration/index.po index c937b363c85d20..58a78bd92ab263 100644 --- a/nature/docs/locale/ja_JP/LC_MESSAGES/migration/index.po +++ b/nature/docs/locale/ja_JP/LC_MESSAGES/migration/index.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-28 15:28+0000\n" -"PO-Revision-Date: 2023-11-29 13:05\n" +"PO-Revision-Date: 2024-01-04 07:56\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -24,7 +24,7 @@ msgstr "Qiskit Nature 移行ガイド" #: ../../migration/index.rst:5 msgid "If you are switching over to version 0.7, which has removed all previously deprecated code, simply follow the instructions provided in the sections below." -msgstr "" +msgstr "以前に非推奨になったコードがすべて削除されたバージョン 0.7 に切り替える場合は、以下のセクションに記載されている手順に従ってください。" #: ../../migration/index.rst:9 msgid "Migrating from 0.5 to 0.6" diff --git a/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/03_ground_state_solvers.po b/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/03_ground_state_solvers.po index 4645f963176fb2..ab005d003f0f27 100644 --- a/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/03_ground_state_solvers.po +++ b/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/03_ground_state_solvers.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-29 13:18+0000\n" -"PO-Revision-Date: 2023-11-29 14:37\n" +"PO-Revision-Date: 2023-12-29 15:14\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -32,11 +32,11 @@ msgstr "はじめに" #: ../../tutorials/03_ground_state_solvers.ipynb:23 msgid "|9c0ae4b6a23b437fa816289ab58f93fc|" -msgstr "" +msgstr "|9c0ae4b6a23b437fa816289ab58f93fc|" #: ../../tutorials/03_ground_state_solvers.ipynb:31 msgid "9c0ae4b6a23b437fa816289ab58f93fc" -msgstr "" +msgstr "9c0ae4b6a23b437fa816289ab58f93fc" #: ../../tutorials/03_ground_state_solvers.ipynb:25 msgid "In this tutorial we are going to discuss the ground state calculation interface of Qiskit Nature. The goal is to compute the ground state of a molecular Hamiltonian. This Hamiltonian can for example be electronic or vibrational. To know more about the preparation of the Hamiltonian, check out the `Electronic structure <01_electronic_structure.ipynb>`__ and `Vibrational structure tutorials <02_vibrational_structure.ipynb>`__." @@ -72,11 +72,11 @@ msgstr "基底状態を見つけるために、変分量子固有ソルバー (V #: ../../tutorials/03_ground_state_solvers.ipynb:116 msgid "|3351023065a64deeb51c069a8a4536ba|" -msgstr "" +msgstr "|3351023065a64deeb51c069a8a4536ba|" #: ../../tutorials/03_ground_state_solvers.ipynb:120 msgid "3351023065a64deeb51c069a8a4536ba" -msgstr "" +msgstr "3351023065a64deeb51c069a8a4536ba" #: ../../tutorials/03_ground_state_solvers.ipynb:118 msgid "Let's initialize a VQE solver." @@ -96,7 +96,7 @@ msgstr "変分形式:ここでは、Unitary Coupled Cluster (UCC) ansatzを使 #: ../../tutorials/03_ground_state_solvers.ipynb:163 msgid "An optimizer: this is the classical piece of code in charge of optimizing the parameters in our variational form. See `the corresponding documentation `__ for more information." -msgstr "" +msgstr "オプティマイザー: これは変分形式のパラメーターを最適化する古典的なコードです。詳細は `Qiskit Terraの関連ドキュメント `__ を参照してください。" #: ../../tutorials/03_ground_state_solvers.ipynb:165 msgid "One could also use any available ansatz / initial state or even define one's own. For instance," diff --git a/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/04_excited_states_solvers.po b/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/04_excited_states_solvers.po index c9ed0284cd673d..66e783c0b6bbf0 100644 --- a/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/04_excited_states_solvers.po +++ b/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/04_excited_states_solvers.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-29 13:18+0000\n" -"PO-Revision-Date: 2023-11-29 14:37\n" +"PO-Revision-Date: 2023-12-29 15:14\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -32,11 +32,11 @@ msgstr "はじめに" #: ../../tutorials/04_excited_states_solvers.ipynb:23 msgid "|3c7ffd1dde804d40a31af0b6af563c5f|" -msgstr "" +msgstr "|3c7ffd1dde804d40a31af0b6af563c5f|" #: ../../tutorials/04_excited_states_solvers.ipynb:29 msgid "3c7ffd1dde804d40a31af0b6af563c5f" -msgstr "" +msgstr "3c7ffd1dde804d40a31af0b6af563c5f" #: ../../tutorials/04_excited_states_solvers.ipynb:25 msgid "In this tutorial we are going to discuss the excited states calculation interface of Qiskit Nature. The goal is to compute the excited states of a molecular Hamiltonian. This Hamiltonian can be electronic or vibrational. To know more about the preparation of the Hamiltonian, check out the `Electronic structure <01_electronic_structure.ipynb>`__ and `Vibrational structure tutorials <02_vibrational_structure.ipynb>`__." diff --git a/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/06_qubit_mappers.po b/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/06_qubit_mappers.po index 072f8b6d711693..6a78ab53b5f80c 100644 --- a/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/06_qubit_mappers.po +++ b/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/06_qubit_mappers.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-29 13:18+0000\n" -"PO-Revision-Date: 2023-11-29 14:37\n" +"PO-Revision-Date: 2023-12-29 15:14\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -76,11 +76,11 @@ msgstr "Jordan-Wignerマッピングは、1つのスピン軌道の占有を1つ #: ../../tutorials/06_qubit_mappers.ipynb:76 msgid "|41cf3883ceeb41389e11d3d022ca5a26|" -msgstr "" +msgstr "|41cf3883ceeb41389e11d3d022ca5a26|" #: ../../tutorials/06_qubit_mappers.ipynb:80 msgid "41cf3883ceeb41389e11d3d022ca5a26" -msgstr "" +msgstr "41cf3883ceeb41389e11d3d022ca5a26" #: ../../tutorials/06_qubit_mappers.ipynb:78 msgid "You can construct use it like so:" diff --git a/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/index.po b/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/index.po index b54ee3fdd06b9e..66d2039b22e70c 100644 --- a/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/index.po +++ b/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/index.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-28 15:28+0000\n" -"PO-Revision-Date: 2023-11-29 13:04\n" +"PO-Revision-Date: 2024-01-04 07:56\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -24,17 +24,17 @@ msgstr "Qiskit Natureチュートリアル" #: ../../tutorials/index.rst:7 msgid "On this page you find a number of tutorials covering various topics of Qiskit Nature. These are good references if you are just getting started with Qiskit Nature." -msgstr "" +msgstr "このページではQiskit Natureの様々なトピックを扱ったチュートリアルを多数掲載しています。Qiskit Natureを使い始めたばかりの方はぜひ参考にしてください。" #: ../../tutorials/index.rst:11 msgid "However, the code base provides a significant amount of functionality and advanced capability, and these tutorials below do **not** cover usage of `all` of the features, at the different levels, that are available in Qiskit Nature. In fact, Qiskit Nature is a very modular and flexible code, so if you really want to learn more, we suggest that you explore the API reference and code directly." -msgstr "" +msgstr "しかしながら、コードベースはかなりの量の機能と高度な機能を提供しており、以下のチュートリアルはQiskit Natureで利用可能なすべての機能、さまざまなレベルの使い方を網羅しているわけではありません。実際、Qiskit Natureは非常にモジュール化された柔軟なコードなので、本当にもっと学びたいのであれば、APIリファレンスやコードを直接探索することをお勧めします。" #: ../../tutorials/index.rst:18 msgid "That said, if you learn about a feature which you think deserves its own tutorial, feel free to add it to this list by `opening a pull request `_." -msgstr "" +msgstr "とはいえ、独自のチュートリアルが必要だと思われる機能があれば、 `プルリクエストを送る `_ ことでこのリストに追加できます。" #: ../../tutorials/index.rst:25 msgid "If you are looking for more concise advice, check out the `How-Tos `_." -msgstr "" +msgstr "より簡潔なアドバイスをお探しなら、 `How-Tos `_ をご覧ください。" diff --git a/optimization/docs/locale/bn_BN/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/bn_BN/LC_MESSAGES/tutorials/04_grover_optimizer.po index 4d5eee76941435..c107b7e008cce3 100644 --- a/optimization/docs/locale/bn_BN/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/bn_BN/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 13:35\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-08 18:26\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" @@ -71,11 +71,11 @@ msgid "While implementations of GAS vary around the specific use case, the gener msgstr "GAS বাস্তবায়ন নির্দিষ্ট ব্যবহারের ক্ষেত্রে প্রায় পৃথক হলেও সাধারণ কাঠামো এখনও নীচে বর্ণিত পদক্ষেপগুলি আলগাভাবে অনুসরণ করে।" #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" +msgid "|6ca734fed0024015824561a78d87e967|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" +msgid "6ca734fed0024015824561a78d87e967" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:65 @@ -87,11 +87,11 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "রীত্যনুসারে ``QuadraticProgramToNegativeValueOracle`` :math:`A_y` এবং :math:`O` গঠন করে যাতে:" #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" +msgid "|9648e56adaa642578c061c29a05f5e8a|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" +msgid "9648e56adaa642578c061c29a05f5e8a" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:80 @@ -127,11 +127,11 @@ msgid "This results in the optimal solution :math:`x_0=1`, :math:`x_1=0`, :math: msgstr "এটি সর্বোত্তম সমাধানে ফলাফল :math:`x_0 = 1`, :math:` x_1 = 0`, :math: `x_2 = 1` এবং সর্বোত্তম উদ্দেশ্য মান :math:` -6` (বেশিরভাগ সময়, যেহেতু এটি রন্ডমাইজড অ্যালগরিদম)। নিম্নলিখিতটিতে, কোয়ান্টাম মানের একটি বিশেষায়িত চিত্রায়ন (কাস্টম ভিজ্যুয়ালাইজেশন) এই QUBO তে প্রয়োগ হওয়া ``GroverOptimizer`` এর একটি সম্ভাব্য রান দেখায়।" #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" +msgid "|152c54029dff4932bf4d15c772493835|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" +msgid "152c54029dff4932bf4d15c772493835" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:267 @@ -139,11 +139,11 @@ msgid "Each graph shows a single iteration of GAS, with the current values of :m msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" +msgid "e0a7edbeeeb14dc697f5c923604f6328" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:295 diff --git a/optimization/docs/locale/bn_BN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/bn_BN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index 04d68a9dc2959e..6553a0eb9b441b 100644 --- a/optimization/docs/locale/bn_BN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/bn_BN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:52\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 16:12\n" "Last-Translator: \n" "Language: bn_BN\n" "Language-Team: Bengali Language\n" @@ -78,35 +78,35 @@ msgstr "কিস্কিট অপ্টিমাইজেশন একটি msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "প্রথমত, আমরা ডকপ্লেক্স এবং গুরোবিপি দ্বারা একটি অপ্টিমাইজেশান সমস্যা সংজ্ঞায়িত করি।" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "আমরা ডকপ্লেক্স এবং গুরোবিপি মডেল দুটো থেকে ``QuadraticProgram`` অবজেক্ট তৈরি করতে পারি। আমরা দেখি যে ডকপ্লেক্স এবং গুরোবিপি থেকে উৎপন্ন দুটি ``QuadraticProgram`` বস্তু অভিন্ন।" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "আমরা ``QuadraticProgram`` থেকে একটি ডকপ্লেক্স মডেল এবং একটি গুরোবিপি মডেল তৈরি করতে পারি।" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "ডকপ্লেক্সের নির্দেশক সীমাবদ্ধতা" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "``from_docplex_mp`` সূচক সীমাবদ্ধতাগুলিকে সমর্থন করে, যেমন, ``u = 0 => x + y <= z`` (u: বাইনারি ভেরিয়েবল) যখন আমরা একটি ডকপ্লেক্স মডেলকে ``QuadraticProgram`` এ রূপান্তর করি। এটি বড়-এম সূত্র ব্যবহার করে সূচক সীমাবদ্ধতাগুলিকে রৈখিক সীমাবদ্ধতায় রূপান্তরিত করে।" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "CPLEX সরাসরি ডকপ্লেক্স মডেলে প্রয়োগ করা (এটি ``QuadraticProgram`` এ অনুবাদ না করে। CPLEX solver স্থানীয়ভাবে নির্দেশক সীমাবদ্ধতা সমর্থন করে)," -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "``from_docplex_mp`` দ্বারা প্রাপ্ত ``QuadraticProgram`` এ QAOA প্রয়োগ করা।" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "আমরা দেখি সমাধান একই।" diff --git a/optimization/docs/locale/de_DE/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/de_DE/LC_MESSAGES/tutorials/04_grover_optimizer.po index 7d55d271c898cd..63aea137f87020 100644 --- a/optimization/docs/locale/de_DE/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/de_DE/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 12:59\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-08 18:26\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" @@ -71,11 +71,11 @@ msgid "While implementations of GAS vary around the specific use case, the gener msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" +msgid "|6ca734fed0024015824561a78d87e967|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" +msgid "6ca734fed0024015824561a78d87e967" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:65 @@ -87,11 +87,11 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" +msgid "|9648e56adaa642578c061c29a05f5e8a|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" +msgid "9648e56adaa642578c061c29a05f5e8a" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:80 @@ -127,11 +127,11 @@ msgid "This results in the optimal solution :math:`x_0=1`, :math:`x_1=0`, :math: msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" +msgid "|152c54029dff4932bf4d15c772493835|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" +msgid "152c54029dff4932bf4d15c772493835" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:267 @@ -139,11 +139,11 @@ msgid "Each graph shows a single iteration of GAS, with the current values of :m msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" +msgid "e0a7edbeeeb14dc697f5c923604f6328" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:295 diff --git a/optimization/docs/locale/de_DE/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/de_DE/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index 2e97d7f583b6e7..f5a93aedf6a24b 100644 --- a/optimization/docs/locale/de_DE/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/de_DE/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:20\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 15:57\n" "Last-Translator: \n" "Language: de\n" "Language-Team: German\n" @@ -78,35 +78,35 @@ msgstr "" msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "" diff --git a/optimization/docs/locale/es_UN/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/es_UN/LC_MESSAGES/tutorials/04_grover_optimizer.po index d7eb7ab579dea5..c675cdbc29168c 100644 --- a/optimization/docs/locale/es_UN/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/es_UN/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 13:37\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-08 18:26\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" @@ -71,11 +71,11 @@ msgid "While implementations of GAS vary around the specific use case, the gener msgstr "Si bien las implementaciones de GAS varían según el caso de uso específico, el framework general aún sigue vagamente los pasos que se describen a continuación." #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" +msgid "|6ca734fed0024015824561a78d87e967|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" +msgid "6ca734fed0024015824561a78d87e967" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:65 @@ -87,11 +87,11 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "Dicho formalmente, ``QuadraticProgramToNegativeValueOracle`` construye un :math:`A_y` y un :math:`O` tal que:" #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" +msgid "|9648e56adaa642578c061c29a05f5e8a|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" +msgid "9648e56adaa642578c061c29a05f5e8a" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:80 @@ -127,11 +127,11 @@ msgid "This results in the optimal solution :math:`x_0=1`, :math:`x_1=0`, :math: msgstr "Esto resulta en la solución óptima :math:`x_0=1`, :math:`x_1=0`, :math:`x_2=1` y el valor objetivo óptimo de :math:`-6` (la mayoría del tiempo, ya que es un algoritmo randomizado). A continuación, una visualización personalisada del estado cuántico muestra una posible ejecución de ``GroverOptimizer`` aplicada a este QUBO." #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" +msgid "|152c54029dff4932bf4d15c772493835|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" +msgid "152c54029dff4932bf4d15c772493835" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:267 @@ -139,11 +139,11 @@ msgid "Each graph shows a single iteration of GAS, with the current values of :m msgstr "Cada gráfica muestra una sola iteración de GAS, con los valores actuales de :math:`r` (= contador de iteraciones) y :math:`y` (= umbral/compensación) mostrados en el título. El eje X muestra el entero equivalente de la entrada (ppor ejemplo, '101' :math:`\\rightarrow` 5), y el eje Y muestra los posibles valores de la función. Como hay 3 variables binarias, hay :math:`2^3=8` posibles soluciones, que se muestran en cada gráfica. La intensidad del color indica la probabilidad de medir un resultado determinado (siendo la intensidad del brillo la más alta), mientras que el color en sí indica la fase correspondiente (consulta la rueda de color de fase a continuación). Ten en cuenta que a medida que :math:`y` disminuye, desplazamos todos los valores hacia arriba por esa cantidad, lo que significa que hay cada vez menos valores negativos en la distribución, hasta que solo queda uno (el mínimo)." #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" +msgid "e0a7edbeeeb14dc697f5c923604f6328" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:295 diff --git a/optimization/docs/locale/es_UN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/es_UN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index f5934f818f5c6a..cff5befee3aa1c 100644 --- a/optimization/docs/locale/es_UN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/es_UN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:55\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 16:13\n" "Last-Translator: \n" "Language: es_UN\n" "Language-Team: Spanish (United)\n" @@ -78,35 +78,35 @@ msgstr "Qiskit Optimization puede cargar un ``QuadraticProgram`` desde un modelo msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "Primero, definimos un problema de optimización por Docplex y Gurobipy." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "Podemos generar un objeto ``QuadraticProgram`` a partir de los modelos Docplex y Gurobipy. Vemos que los dos objetos ``QuadraticProgram`` generados a partir de Docplex y Gurobipy son idénticos." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "También podemos generar un modelo Docplex y un modelo Gurobipy de un ``QuadraticProgram``." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "Restricciones de los indicadores de Docplex" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "``from_docplex_mp`` admite restricciones de indicador, por ejemplo, ``u = 0 => x + y <= z`` (u: variable binaria) cuando convertimos un modelo Docplex en un ``QuadraticProgram``. Convierte las restricciones de los indicadores en restricciones lineales utilizando la formulación big-M." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "Comparemos las soluciones del modelo con una restricción de indicador por" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "aplicando CPLEX directamente al modelo Docplex (sin traducirlo a un ``QuadraticProgram``. El solucionador CPLEX admite de forma nativa las restricciones del indicador)," -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "aplicando QAOA a un ``QuadraticProgram`` obtenido por ``from_docplex_mp``." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "Vemos que las soluciones son las mismas." diff --git a/optimization/docs/locale/fr_FR/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/fr_FR/LC_MESSAGES/tutorials/04_grover_optimizer.po index d011995bc1ab2c..ffbebbeb9c5ea7 100644 --- a/optimization/docs/locale/fr_FR/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/fr_FR/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 12:57\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-08 18:26\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" @@ -71,11 +71,11 @@ msgid "While implementations of GAS vary around the specific use case, the gener msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" +msgid "|6ca734fed0024015824561a78d87e967|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" +msgid "6ca734fed0024015824561a78d87e967" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:65 @@ -87,11 +87,11 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" +msgid "|9648e56adaa642578c061c29a05f5e8a|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" +msgid "9648e56adaa642578c061c29a05f5e8a" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:80 @@ -127,11 +127,11 @@ msgid "This results in the optimal solution :math:`x_0=1`, :math:`x_1=0`, :math: msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" +msgid "|152c54029dff4932bf4d15c772493835|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" +msgid "152c54029dff4932bf4d15c772493835" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:267 @@ -139,11 +139,11 @@ msgid "Each graph shows a single iteration of GAS, with the current values of :m msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" +msgid "e0a7edbeeeb14dc697f5c923604f6328" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:295 diff --git a/optimization/docs/locale/fr_FR/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/fr_FR/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index 1932d2721e47c6..3a92f97f374c7f 100644 --- a/optimization/docs/locale/fr_FR/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/fr_FR/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:18\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 15:56\n" "Last-Translator: \n" "Language: fr\n" "Language-Team: French\n" @@ -78,35 +78,35 @@ msgstr "" msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "" diff --git a/optimization/docs/locale/gu_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/gu_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po index f4980692f74a76..08ba955410ae80 100644 --- a/optimization/docs/locale/gu_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/gu_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 13:01\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-08 18:26\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" @@ -71,11 +71,11 @@ msgid "While implementations of GAS vary around the specific use case, the gener msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" +msgid "|6ca734fed0024015824561a78d87e967|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" +msgid "6ca734fed0024015824561a78d87e967" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:65 @@ -87,11 +87,11 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" +msgid "|9648e56adaa642578c061c29a05f5e8a|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" +msgid "9648e56adaa642578c061c29a05f5e8a" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:80 @@ -127,11 +127,11 @@ msgid "This results in the optimal solution :math:`x_0=1`, :math:`x_1=0`, :math: msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" +msgid "|152c54029dff4932bf4d15c772493835|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" +msgid "152c54029dff4932bf4d15c772493835" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:267 @@ -139,11 +139,11 @@ msgid "Each graph shows a single iteration of GAS, with the current values of :m msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" +msgid "e0a7edbeeeb14dc697f5c923604f6328" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:295 diff --git a/optimization/docs/locale/gu_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/gu_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index 0be0b57f64eecb..52131598133695 100644 --- a/optimization/docs/locale/gu_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/gu_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:22\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 15:58\n" "Last-Translator: \n" "Language: gu\n" "Language-Team: Gujarati\n" @@ -78,35 +78,35 @@ msgstr "" msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "" diff --git a/optimization/docs/locale/hi_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/hi_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po index 0b6fb4389f342f..057cf89ed009b0 100644 --- a/optimization/docs/locale/hi_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/hi_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 13:30\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-08 18:26\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" @@ -71,11 +71,11 @@ msgid "While implementations of GAS vary around the specific use case, the gener msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" +msgid "|6ca734fed0024015824561a78d87e967|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" +msgid "6ca734fed0024015824561a78d87e967" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:65 @@ -87,11 +87,11 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" +msgid "|9648e56adaa642578c061c29a05f5e8a|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" +msgid "9648e56adaa642578c061c29a05f5e8a" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:80 @@ -127,11 +127,11 @@ msgid "This results in the optimal solution :math:`x_0=1`, :math:`x_1=0`, :math: msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" +msgid "|152c54029dff4932bf4d15c772493835|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" +msgid "152c54029dff4932bf4d15c772493835" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:267 @@ -139,11 +139,11 @@ msgid "Each graph shows a single iteration of GAS, with the current values of :m msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" +msgid "e0a7edbeeeb14dc697f5c923604f6328" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:295 diff --git a/optimization/docs/locale/hi_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/hi_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index 6c5a70f5c2742e..e6ca20d82a15cb 100644 --- a/optimization/docs/locale/hi_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/hi_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:47\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 16:10\n" "Last-Translator: \n" "Language: hi\n" "Language-Team: Hindi\n" @@ -78,35 +78,35 @@ msgstr "" msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "" diff --git a/optimization/docs/locale/ja_JP/LC_MESSAGES/explanations/index.po b/optimization/docs/locale/ja_JP/LC_MESSAGES/explanations/index.po index ba77bd1a2912df..6a77f4603f26d9 100644 --- a/optimization/docs/locale/ja_JP/LC_MESSAGES/explanations/index.po +++ b/optimization/docs/locale/ja_JP/LC_MESSAGES/explanations/index.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:59\n" +"PO-Revision-Date: 2023-12-29 16:24\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -20,13 +20,13 @@ msgstr "" #: ../../explanations/index.rst:3 msgid "Qiskit Optimization Explanations" -msgstr "" +msgstr "Qiskit Optimization の説明" #: ../../explanations/index.rst:5 msgid "This section of the documentation provides background and explanation around techniques, methods etc. both useful with and used by in Qiskit Optimization." -msgstr "" +msgstr "ドキュメントのこのセクションでは、Qiskit Optimization で有用かつ使用されているテクニックなどについての背景と説明を提供します。" #: ../../explanations/index.rst:9 msgid "Explanations..." -msgstr "" +msgstr "説明" diff --git a/optimization/docs/locale/ja_JP/LC_MESSAGES/explanations/qrao.po b/optimization/docs/locale/ja_JP/LC_MESSAGES/explanations/qrao.po index 220bc00fb32c24..3684c1167b7505 100644 --- a/optimization/docs/locale/ja_JP/LC_MESSAGES/explanations/qrao.po +++ b/optimization/docs/locale/ja_JP/LC_MESSAGES/explanations/qrao.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:59\n" +"PO-Revision-Date: 2024-01-05 06:27\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -20,132 +20,132 @@ msgstr "" #: ../../explanations/qrao.rst:2 msgid "Background on Quantum Random Access Optimization: *Quantum relaxations, quantum random access codes, rounding schemes*" -msgstr "" +msgstr "量子ランダムアクセス最適化 (QRAO) の背景: *量子緩和、量子ランダムアクセス符号、丸めスキーム*" #: ../../explanations/qrao.rst:4 msgid "This material provides a deeper look into the concepts behind Quantum Random Access Optimization." -msgstr "" +msgstr "この資料では、量子ランダムアクセス最適化の背後にある概念について、より深く考察します。" #: ../../explanations/qrao.rst:8 msgid "Relaxations" -msgstr "" +msgstr "緩和(リラクゼーション)" #: ../../explanations/qrao.rst:10 msgid "Consider a binary optimization problem defined on binary variables :math:`m_i \\in \\{-1,1\\}`. The choice of using :math:`\\pm 1` variables instead of :math:`0/1` variables is not important, but will be convenient in terms of notation when we begin to re-cast this problem in terms of quantum observables. We will be primarily interested in `quadratic unconstrained binary optimization (QUBO) `__ problems, although the ideas in this document can readily extend to problems with more than quadratic terms, and problems with non-binary or constrained variables can often be recast as a QUBO (though this conversion will incur some overhead)." -msgstr "" +msgstr "バイナリ変数 :math:`m_i \\in \\{-1,1\\}` に対して定義されたバイナリ最適化問題を考えてみましょう。:math:`0/1` 変数の代わりに :math:`\\pm 1` 変数を使用するという選択は重要ではありませんが、この問題を量子観測量の観点から再キャストし始めるときに、表記の点で便利です。 私たちは主に `2 次の制約なし 2 値最適化 (QUBO) 問題 `__ に興味を持ちますが、このドキュメントのアイデアは 2 次以上の項を含む問題にも簡単に拡張でき、非 2 値変数または制約付き変数の問題は多くの場合 QUBO として再キャストできます。 (この変換にはある程度のオーバーヘッドが発生します)。" #: ../../explanations/qrao.rst:22 msgid "Within mathematical optimization, `relaxation `__ is the strategy of taking some hard problem and mapping it onto a similar version of that problem which is (usually) easier to solve. The core idea here is that for useful relaxations, the solution to the relaxed problem can give information about the original problem and allow one to heuristically find better solutions. An example of relaxation could be something as simple as taking a discrete optimization problem and allowing a solver to optimize the problem using continuous variables. Once a solution is obtained for the relaxed problem, the solver must find a strategy for extracting a discrete solution from the relaxed solution of continuous values. This process of mapping the relaxed solution back onto original problem’s set of admissible solutions is often referred to as **rounding**." -msgstr "" +msgstr "数理最適化において、 `緩和(リラクゼーション) `__ とは、ある難問を取り上げ、その問題の類似バージョンにマッピングする戦略であり、(通常は) より簡単に解くことができます。ここでの核となる考え方は、有用な緩和の場合、緩和された問題の解が元の問題についての情報を与え、より良い解を発見することを可能にするということです。緩和の例としては、離散最適化問題を連続変数で最適化するという単純なものがあります。緩和された問題の解が得られると、ソルバーは連続値の緩和された解から離散解を抽出する戦略を見つけなければなりません。緩和解を元の問題の許容解集合にマッピングするこのプロセスは、しばしば **丸め(rounding)** と呼ばれます。" #: ../../explanations/qrao.rst:37 #, python-format msgid "For a concrete example of relaxation and rounding, see the `Goemans-Williamson Algorithm for MaxCut `__." -msgstr "" +msgstr "緩和と丸めの具体的な例としては、 `MaxCutのGoemans-Williamsonアルゴリズム `__ を参照してください。" #: ../../explanations/qrao.rst:41 msgid "Without loss of generality, the rest of this document will consider a `MaxCut `__ objective function defined on a graph :math:`G = (V,E)`. Our goal is to find a partitioning of our vertices :math:`V` into two sets (:math:`+1` and :math:`-1`), such that we maximize the number of edges which connect both sets. More concretely, each :math:`v_i \\in V` will be assigned a binary variable :math:`m_i \\in \\{-1, 1\\}`, and we will define the *cut* of a variable assignment as:" -msgstr "" +msgstr "一般性を失うことなく、このドキュメントの残りの部分では、グラフ :math:`G = (V,E)` 上で定義された `MaxCut `__ 目的関数を考えます。我々の目的は、頂点 :math:`V` を2つの集合 (:math:`+1` and :math:`-1`) に分割し、両方の集合を結ぶ辺の数を最大にするような分割を見つけることです。より具体的には、 :math:`v_i \\in V` に2値変数 :math:`m_i \\in \\{-1, 1\\}` を代入し、変数代入の *cut* を次のように定義します:" #: ../../explanations/qrao.rst:50 msgid "\\text{cut}(m) = \\sum_{ij; e_{ij} \\in E} \\frac{1}{2}(1-m_i m_j)\n\n" -msgstr "" +msgstr "\\text{cut}(m) = \\sum_{ij; e_{ij} \\in E} \\frac{1}{2}(1-m_i m_j)\n\n" #: ../../explanations/qrao.rst:53 msgid "Quantum Relaxation" -msgstr "" +msgstr "量子緩和" #: ../../explanations/qrao.rst:55 msgid "Our goal is to define a relaxation of our MaxCut objective function. We will do this by mapping our objective function’s binary variables into the space of single qubit Pauli observables and by embedding the set of feasible inputs to cut(:math:`m`) onto the space of single-qubit quantum product states. Let us denote this embedding :math:`F` as:" -msgstr "" +msgstr "我々の目的は、MaxCut目的関数の緩和を定義することです。これは、目的関数の2値変数を単一量子ビット パウリ観測量の空間にマッピングし、 cut(:math:`m`) への実行可能な入力の集合を単一量子ビット量子積状態の空間に埋め込むことによって行います。この埋め込みを :math:`F` とします:" #: ../../explanations/qrao.rst:61 msgid "F: \\{-1,1\\}^{M} \\mapsto \\mathcal{D}(\\mathbb{C}^{2^n}),\n\n" -msgstr "" +msgstr "F: \\{-1,1\\}^{M} \\mapsto \\mathcal{D}(\\mathbb{C}^{2^n}),\n\n" #: ../../explanations/qrao.rst:63 msgid "\\text{cut}(m) \\mapsto \\text{Tr}\\big(H\\cdot F(m)\\big),\n\n" -msgstr "" +msgstr "\\text{cut}(m) \\mapsto \\text{Tr}\\big(H\\cdot F(m)\\big),\n\n" #: ../../explanations/qrao.rst:65 msgid "where :math:`M = |V|`, and :math:`H` is a quantum Hamiltonian which encodes our objective function." -msgstr "" +msgstr "ここで、 :math:`M = |V|` であり、 :math:`H` は目的関数を符号化した量子ハミルトニアンです。" #: ../../explanations/qrao.rst:68 msgid "For this to be `a valid relaxation `__ of our problem, it must be the case that:" -msgstr "" +msgstr "これが我々の問題の `有効な緩和 `__ であるためには、次のようでなければなりません:" #: ../../explanations/qrao.rst:72 msgid "\\text{cut}(m) \\geq \\text{Tr}\\big(H\\cdot F(m)\\big)\\qquad \\forall m \\in \\{-1,1\\}^M.\n\n" -msgstr "" +msgstr "\\text{cut}(m) \\geq \\text{Tr}\\big(H\\cdot F(m)\\big)\\qquad \\forall m \\in \\{-1,1\\}^M.\n\n" #: ../../explanations/qrao.rst:74 msgid "In order to guarantee this is true, we will enforce the stronger condition that our relaxation **commutes** with our objective function. In other words, cut(:math:`m`) is equal to the relaxed objective function for all :math:`m \\in \\{-1,1\\}^M`, rather than simply upper bounding it. This detail will become crucially important further down when we explicitly define our quantum relaxation." -msgstr "" +msgstr "これが真であることを保証するために、我々は緩和が目的関数と **交換する** というより強い条件を強制します。言い換えると、 cut(:math:`m`) は単に上限を定めるのではなく、 :math:`m \\in \\{-1,1\\}^M` に対する緩和された目的関数と等しくなります。 この詳細は、量子緩和を明示的に定義するときにさらに重要になります。" #: ../../explanations/qrao.rst:82 msgid "A Simple Quantum Relaxation" -msgstr "" +msgstr "簡単な量子緩和" #: ../../explanations/qrao.rst:84 msgid "Before explicating the full quantum relaxation scheme based on single-qubit Quantum Random Access Codes (QRACs), it may be helpful to first discuss `a version of quantum optimization `__ which users may be more familiar with, but discussed in the language of quantum relaxation and rounding." -msgstr "" +msgstr "単一量子ビット量子ランダムアクセス符号(QRAC)に基づく完全な量子緩和スキームを説明する前に、まず、量子緩和と丸め込みの言語で議論された、ユーザーにとって馴染み深い `量子最適化 `__ について説明することが役に立つかもしれません。" #: ../../explanations/qrao.rst:91 msgid "Consider the embedding" -msgstr "" +msgstr "埋め込みを考慮して、" #: ../../explanations/qrao.rst:93 msgid "F^{(1)}: m \\in \\{-1,1\\}^M \\mapsto \\{|0\\rangle,|1\\rangle\\}^{\\otimes M},\n\n" -msgstr "" +msgstr "F^{(1)}: m \\in \\{-1,1\\}^M \\mapsto \\{|0\\rangle,|1\\rangle\\}^{\\otimes M},\n\n" #: ../../explanations/qrao.rst:95 msgid "\\text{cut}(m) \\mapsto \\text{Tr}\\big(H^{(1)}F^{(1)}(m)\\big),\\quad H^{(1)} = \\sum_{ij; e_{ij} \\in E} \\frac{1}{2}(1-Z_i Z_j),\n\n" -msgstr "" +msgstr "\\text{cut}(m) \\mapsto \\text{Tr}\\big(H^{(1)}F^{(1)}(m)\\big),\\quad H^{(1)} = \\sum_{ij; e_{ij} \\in E} \\frac{1}{2}(1-Z_i Z_j),\n\n" #: ../../explanations/qrao.rst:97 msgid "where :math:`Z_i` indicates the single qubit Pauli-Z observable defined on the :math:`i`\\ ’th qubit and identity terms on all other qubits. It is worth convincing yourself that this transformation is a valid relaxation of our problem. In particular:" -msgstr "" +msgstr "ここで、 :math:`Z_i` は :math:`i`\\ ’ 番目の量子ビットで定義される単一量子ビットのPauli-Z観測量と、他のすべての量子ビットの恒等項を表します。この変換が我々の問題の有効な緩和であることを納得するのは十分です。特に:" #: ../../explanations/qrao.rst:102 msgid "\\text{cut}(m) = \\text{Tr}\\big(H^{(1)}F^{(1)}(m)\\big) \\quad \\forall m \\in \\{-1,1\\}^M\n\n" -msgstr "" +msgstr "\\text{cut}(m) = \\text{Tr}\\big(H^{(1)}F^{(1)}(m)\\big) \\quad \\forall m \\in \\{-1,1\\}^M\n\n" #: ../../explanations/qrao.rst:104 msgid "This sort of embedding is currently used by many near-term quantum optimization algorithms, including many `QAOA and VQE based approaches `__. Observe how although the relaxed version of our problem can exactly reproduce the objective function cut(:math:`m`) for inputs of the form :math:`\\{|0\\rangle,|1\\rangle\\}^{\\otimes M}`, we are also free to evaluate :math:`H^{(1)}` using a continuous superposition of such states. This stands in analogy to how one might classically relax an optimization problem such that they optimize the objective function using continuous values." -msgstr "" +msgstr "この種の埋め込みは、現在、多くの `QAOAやVQEベースのアプローチ `__ を含む、多くの近未来量子最適化アルゴリズムで使用されています。私たちの問題の緩和版では :math:`\\{|0\\rangle,|1\\rangle\\}^{\\otimes M}` の形式の入力に対する目的関数 cut(:math:`m`) を正確に再現できますが、そのような状態の連続的な重ね合わせを使って :math:`H^{(1)}` を自由に評価することもできます。これは、連続値を用いて目的関数を最適化するような最適化問題を古典的に緩和する方法と類似しています。" #: ../../explanations/qrao.rst:115 msgid "Crucially, a relaxation is only useful if there is some practical way to **round** relaxed solutions back onto the original problem’s set of admissible solutions. For this particular quantum relaxation, the rounding scheme is simply given by measuring each qubit of our relaxed solution in the :math:`Z`-basis. Measurement will project any quantum state onto the set of computational basis states, and consequently, onto the image of :math:`F^{(1)}`." -msgstr "" +msgstr "重要なことは、 **丸められた** 緩和解を元の問題の許容解の集合に戻す実用的な方法がある場合にのみ、緩和は有用であるということです。この特殊な量子緩和では、緩和された解の各量子ビットを :math:`Z`- 基底で測定することで、丸めを行います。測定は、任意の量子状態を計算基底状態の集合に投影し、その結果、 :math:`F^{(1)}` のイメージに投影します。" #: ../../explanations/qrao.rst:124 msgid "Quantum Relaxations via Quantum Random Access Codes (QRACs)" -msgstr "" +msgstr "量子ランダムアクセスコード(QRAC)による量子緩和" #: ../../explanations/qrao.rst:126 msgid "Quantum Random Access Codes were `first outlined in 1983 by Stephen Wiesner [2] `__ and were used in the context of communication complexity theory. We will not be using QRACs in the way they were originally conceived, instead we are co-opting them to define our quantum relaxations. For this reason will not provide a full introduction to RACs or QRACs, but encourage interested readers to seek out more information about them." -msgstr "" +msgstr "量子ランダムアクセスコードは、 `1983年に Stephen Wiesner によって初めて概説され[2] `__ 、通信複雑性理論の文脈で使用されました。我々は、QRACを当初考えられていたように使うのではなく、量子緩和を定義するためにQRACを利用します。このため、RACやQRACの完全な紹介はしませんが、興味のある読者には、より詳しい情報を探すことを推奨します。" #: ../../explanations/qrao.rst:136 msgid ":math:`(1,1,1)`, :math:`(2,1,p)`, and :math:`(3,1,p)` Quantum Random Access Codes" -msgstr "" +msgstr ":math:`(1,1,1)` , :math:`(2,1,p)` , :math:`(3,1,p)' の量子ランダムアクセスコード" #: ../../explanations/qrao.rst:138 msgid "A :math:`(k,1,p)`-QRAC, is a scheme for embedding :math:`k` classical bits into a 1-qubit state, such that given a single copy of this state, you can recover any one of the :math:`k`-bits with probability :math:`p` by performing some measurement. The simple quantum relaxation discussed in the previous section is an example of a trivial :math:`(1,1,1)`-QRAC. For convenience, we will write the :math:`(2,1,0.854)` and :math:`(3,1,0.789)` QRACs as :math:`(2,1,p)` and :math:`(3,1,p)`, respectively. It is worth noting :math:`(4, 1, p)`-QRAC :math:`(p > 1/2)` has been `proven to be impossible. [3] `__" -msgstr "" +msgstr ":math:`(k,1,p)`-QRAC とは、1量子ビットの状態に :math:`k` 個の古典ビットを埋め込むスキームで、この状態のコピーが1つあれば、何らかの測定を行うことで :math:`k` 個のビットのどれかを確率 :math:`p` で復元することができます。前節で説明した単純な量子緩和は、自明な :math:`(1,1,1)`-QRAC の一例です。便宜上、 :math:`(2,1,0.854)` と :math:`(3,1,0.789)` のQRACをそれぞれ :math:`(2,1,p)` と :math:`(3,1,p)` と書きます。 :math:`(4, 1, p)`-QRAC :math:`(p > 1/2)` は`不可能であることが証明されています。[3]`__" #: ../../explanations/qrao.rst:149 msgid "As we generalize the simple example above, it will be helpful to write out single qubit states decomposed in the Hermitian basis of Pauli observables." -msgstr "" +msgstr "上の単純な例を一般化すると、単一量子ビットの状態をパウリ観測量のエルミート基底で分解して書き出すのが役に立つでしょう。" #: ../../explanations/qrao.rst:153 msgid "\\rho = \\frac{1}{2}\\left(I + aX + bY + cZ \\right),\\quad |a|^2 + |b|^2 + |c|^2 = 1\n\n" -msgstr "" +msgstr "\\rho = \\frac{1}{2}\\left(I + aX + bY + cZ \\right),\\quad |a|^2 + |b|^2 + |c|^2 = 1\n\n" #: ../../explanations/qrao.rst:155 msgid "The embeddings :math:`F^{(1)}`, :math:`F^{(2)}`, and :math:`F^{(3)}` associated respectively with the :math:`(1,1,1), (2,1,p),` and :math:`(3,1,p)` QRACs can now be written as follows:" -msgstr "" +msgstr ":math:`(1,1,1), (2,1,p),` :math:`(3,1,p)` のQRACにそれぞれ関連する埋め込み :math:`F^{(1)}` 、 :math:`F^{(2)}` 、 :math:`F^{(3)}` は次のように書くことができます:" #: ../../explanations/qrao.rst:159 msgid "\\begin{array}{l|ll}\n" @@ -155,35 +155,41 @@ msgid "\\begin{array}{l|ll}\n" "(2,1,p)&F^{(2)}(m): \\{-1,1\\}^2 &\\mapsto\\ \\vert\\psi^{(2)}_m\\rangle \\langle\\psi^{(2)}_m\\vert = \\frac{1}{2}\\left(I + \\frac{1}{\\sqrt{2}}\\big({m_0}X+ {m_1}Z \\big)\\right) \\\\\n" "(3,1,p)&F^{(3)}(m): \\{-1,1\\}^3 &\\mapsto\\ \\vert\\psi^{(3)}_m\\rangle \\langle\\psi^{(3)}_m\\vert = \\frac{1}{2}\\left(I + \\frac{1}{\\sqrt{3}}\\big({m_0}X+ {m_1}Y + {m_2}Z\\big)\\right) \\\\\n" "\\end{array}" -msgstr "" +msgstr "\\begin{array}{l|ll}\n" +"\\text{QRAC} & &\\text{Embedding into } \\rho = \\vert \\psi(m)\\rangle\\langle\\psi(m)\\vert \\\\\n" +"\\hline\n" +"(1,1,1)&F^{(1)}(m): \\{-1,1\\} &\\mapsto\\ \\vert\\psi^{(1)}_m\\rangle \\langle\\psi^{(1)}_m\\vert = \\frac{1}{2}\\Big(I + {m_0}Z \\Big) \\\\\n" +"(2,1,p)&F^{(2)}(m): \\{-1,1\\}^2 &\\mapsto\\ \\vert\\psi^{(2)}_m\\rangle \\langle\\psi^{(2)}_m\\vert = \\frac{1}{2}\\left(I + \\frac{1}{\\sqrt{2}}\\big({m_0}X+ {m_1}Z \\big)\\right) \\\\\n" +"(3,1,p)&F^{(3)}(m): \\{-1,1\\}^3 &\\mapsto\\ \\vert\\psi^{(3)}_m\\rangle \\langle\\psi^{(3)}_m\\vert = \\frac{1}{2}\\left(I + \\frac{1}{\\sqrt{3}}\\big({m_0}X+ {m_1}Y + {m_2}Z\\big)\\right) \\\\\n" +"\\end{array}" #: ../../explanations/qrao.rst:169 msgid "\\text{Table 1: QRAC states}\n\n" -msgstr "" +msgstr "\\text{Table 1: QRAC states}" #: ../../explanations/qrao.rst:171 msgid "Note that for when using a :math:`(k,1,p)`-QRAC with bit strings :math:`m \\in \\{-1,1\\}^M, M > k`, these embeddings scale naturally via composition by tensor product." -msgstr "" +msgstr "ビット列 :math:`m \\in \\{-1,1\\}^M, M > k` を持つ :math:`(k,1,p)`-QRAC を使う場合、これらの埋め込みはテンソル積による合成で自然にスケールすることに注意してください。" #: ../../explanations/qrao.rst:175 msgid "m \\in \\{-1,1\\}^6,\\quad F^{(3)}(m) = F^{(3)}(m_0,m_1,m_2)\\otimes F^{(3)}(m_3,m_4,m_5)\n\n" -msgstr "" +msgstr "m \\in \\{-1,1\\}^6,\\quad F^{(3)}(m) = F^{(3)}(m_0,m_1,m_2)\\otimes F^{(3)}(m_3,m_4,m_5)\n\n" #: ../../explanations/qrao.rst:177 msgid "Similarly, when :math:`k \\nmid M`, we can simply pad our input bitstring with the appropriate number of :math:`+1` values." -msgstr "" +msgstr "同様に、 :math:`k \\nmid M` のとき、入力ビット列を適切な数の :math:`+1` 値でパディングすればよいです。" #: ../../explanations/qrao.rst:180 msgid "m \\in \\{-1,1\\}^4,\\quad F^{(3)}(m) = F^{(3)}(m_0,m_1,m_2)\\otimes F^{(3)}(m_3,+1,+1)\n\n" -msgstr "" +msgstr "m \\in \\{-1,1\\}^4,\\quad F^{(3)}(m) = F^{(3)}(m_0,m_1,m_2)\\otimes F^{(3)}(m_3,+1,+1)\n\n" #: ../../explanations/qrao.rst:183 msgid "Recovering Encoded Bits" -msgstr "" +msgstr "符号化されたビットの復元" #: ../../explanations/qrao.rst:185 msgid "Given a QRAC state, we can recover the values of the encoded bits by estimating the expectation value of each bit’s corresponding observable. Note that there is a re-scaling factor which depends on the density of the QRAC." -msgstr "" +msgstr "QRACの状態が与えられた場合、各ビットの対応する観測値の期待値を推定することで、符号化されたビットの値を復元することができます。QRACの密度に依存する再スケーリング係数があることに注意してください。" #: ../../explanations/qrao.rst:190 msgid "\\begin{array}{l|l|l|l}\n" @@ -193,19 +199,25 @@ msgid "\\begin{array}{l|l|l|l}\n" "\\rho = F^{(2)}(m_0,m_1) &\\sqrt{2}\\cdot\\text{Tr}\\big(\\rho X\\big) &\\sqrt{2}\\cdot\\text{Tr}\\big(\\rho Z\\big) & \\\\\n" "\\rho = F^{(3)}(m_0,m_1,m_2) & \\sqrt{3}\\cdot\\text{Tr}\\big(\\rho X\\big) & \\sqrt{3}\\cdot\\text{Tr}\\big(\\rho Y\\big) & \\sqrt{3}\\cdot\\text{Tr}\\big(\\rho Z\\big)\n" "\\end{array}" -msgstr "" +msgstr "\\begin{array}{l|l|l|l}\n" +"\\text{Embedding} & m_0 & m_1 & m_2\\\\\n" +"\\hline\n" +"\\rho = F^{(1)}(m_0) &\\text{Tr}\\big(\\rho Z\\big) & & \\\\\n" +"\\rho = F^{(2)}(m_0,m_1) &\\sqrt{2}\\cdot\\text{Tr}\\big(\\rho X\\big) &\\sqrt{2}\\cdot\\text{Tr}\\big(\\rho Z\\big) & \\\\\n" +"\\rho = F^{(3)}(m_0,m_1,m_2) & \\sqrt{3}\\cdot\\text{Tr}\\big(\\rho X\\big) & \\sqrt{3}\\cdot\\text{Tr}\\big(\\rho Y\\big) & \\sqrt{3}\\cdot\\text{Tr}\\big(\\rho Z\\big)\n" +"\\end{array}" #: ../../explanations/qrao.rst:200 msgid "\\text{Table 2: Bit recovery from QRAC states}\n\n" -msgstr "" +msgstr "\\text{Table 2: Bit recovery from QRAC states}\n\n" #: ../../explanations/qrao.rst:203 msgid "Encoded Problem Hamiltonians" -msgstr "" +msgstr "符号化された問題のハミルトニアン" #: ../../explanations/qrao.rst:205 msgid "Using the tools we have outlined above, we can explicitly write out the Hamiltonians which encode the relaxed versions of our MaxCut problem. We do this by substituting each decision variable with the unique observable that has been assigned to that variable under the embedding :math:`F`." -msgstr "" +msgstr "上記で概説したツールを用いて、MaxCut問題の緩和されたバージョンを符号化するハミルトニアンを明示的に書き出すことができます。これは、各決定変数を、埋め込み :math:`F` のもとでその変数に割り当てられているユニークな観測量に置き換えることで行います。" #: ../../explanations/qrao.rst:211 msgid "\\begin{array}{l|ll}\n" @@ -215,71 +227,77 @@ msgid "\\begin{array}{l|ll}\n" "(2,1,p)&H^{(2)} = \\sum_{ij; e_{ij} \\in E} \\frac{1}{2}(1-2\\cdot P_{[i]} P_{[j]}),\\quad P_{[i]} \\in \\{X,Z\\}\\\\\n" "(3,1,p)&H^{(3)} = \\sum_{ij; e_{ij} \\in E} \\frac{1}{2}(1-3\\cdot P_{[i]} P_{[j]}),\\quad P_{[i]} \\in \\{X,Y,Z\\}\\\\\n" "\\end{array}" -msgstr "" +msgstr "\\begin{array}{l|ll}\n" +"\\text{QRAC} & \\text{Problem Hamiltonian}\\\\\n" +"\\hline\n" +"(1,1,1)&H^{(1)} = \\sum_{ij; e_{ij} \\in E} \\frac{1}{2}(1-Z_i Z_j)\\\\\n" +"(2,1,p)&H^{(2)} = \\sum_{ij; e_{ij} \\in E} \\frac{1}{2}(1-2\\cdot P_{[i]} P_{[j]}),\\quad P_{[i]} \\in \\{X,Z\\}\\\\\n" +"(3,1,p)&H^{(3)} = \\sum_{ij; e_{ij} \\in E} \\frac{1}{2}(1-3\\cdot P_{[i]} P_{[j]}),\\quad P_{[i]} \\in \\{X,Y,Z\\}\\\\\n" +"\\end{array}" #: ../../explanations/qrao.rst:221 msgid "\\text{Table 3: Relaxed MaxCut Hamiltonians after QRAC embedding}\n\n" -msgstr "" +msgstr "\\text{Table 3: Relaxed MaxCut Hamiltonians after QRAC embedding}\n\n" #: ../../explanations/qrao.rst:223 msgid "Note that here, :math:`P_{[i]}` indicates a single-qubit Pauli observable corresponding to decision variable :math:`i`. The bracketed index here is to make clear that :math:`P_{[i]}` will not necessarily be acting on qubit :math:`i`, because the :math:`(2,1,p)` and :math:`(3,1,p)` no longer have a 1:1 relationship between qubits and decision variables." -msgstr "" +msgstr "ここで、 :math:`P_{[i]}` は、決定変数 :math:`i` に対応する1量子ビットのパウリ観測量を示していることに注意してください。ここでの括弧付きインデックスは、 :math:`(2,1,p)` と :math:`(3,1,p)` は、もはや量子ビットと決定変数の間に1:1の関係を持たないため、 :math:`P_{[i]}` は必ずしも量子ビット :math:`i` に作用しないことを明確にするためです。" #: ../../explanations/qrao.rst:231 msgid "Commutation of Quantum Relaxation" -msgstr "" +msgstr "量子緩和の交換" #: ../../explanations/qrao.rst:233 msgid "Note that for the :math:`(2,1,p)` and :math:`(3,1,p)` QRACs, we are associating multiple decision variables to each qubit. This means that each decision variable is assigned a *unique* single-qubit Pauli observable and some subsets of these Pauli observables will be defined on the same qubits. This can potentially pose a problem when trying to ensure the commutativity condition discussed earlier" -msgstr "" +msgstr ":math:`(2,1,p)` と :math:`(3,1,p)` のQRACでは、各量子ビットに複数の決定変数を割り当てていることに注意してください。これは、各決定変数に *ユニーク* な1量子ビットのパウリ観測変数が割り当てられ、これらのパウリ観測変数のいくつかのサブセットが同じ量子ビット上で定義されることを意味します。このことは、先に説明した可換性を保証する際に問題となる可能性があります。" #: ../../explanations/qrao.rst:240 msgid "Observe that under the :math:`(3,1,p)`-QRAC, any term in our objective function of the form :math:`(1 - x_i x_j)` will map to a Hamiltonian term of the form :math:`(1-3\\cdot P_{[i]} P_{[j]})`. If both :math:`P_{[i]}` and :math:`P_{[j]}` are acting on different qubits, then :math:`P_{[i]}\\cdot P_{[j]} = P_{[i]}\\otimes P_{[j]}` and this term of our Hamiltonian will behave as we expect." -msgstr "" +msgstr ":math:`(3,1,p)` -QRACの下では、 :math:`(1 - x_i x_j)` の形の目的関数の任意の項は、:math:`(1-3\\cdot P_{[i]} P_{[j]})` の形のハミルトニアン項にマップされることに注意してください。 :math:`P_{[i]}` と :math:`P_{[j]}` の両方が異なる量子ビットに作用する場合、 :math:`P_{[i]}\\cdot P_{[j]} = P_{[i]}\\otimes P_{[j]}` となり、ハミルトニアンのこの項は期待通りの振る舞いをします。" #: ../../explanations/qrao.rst:247 msgid "If however, :math:`P_{[i]}` and :math:`P_{[j]}` are acting on the same qubit, the two Paulis will compose directly. Recall that the Pauli matrices form a group and are self-inverse, thus we can deduce that the product of two distinct Paulis will yield another element of the group and it will not be the identity." -msgstr "" +msgstr "しかし、:math:`P_{[i]}` と :math:`P_{[j]}` が同じ量子ビットに作用する場合、2つのパウリは直接合成されます。パウリ行列は群を形成し、自己逆行列であることを思い出してください。したがって、2つの異なるパウリの積は群の別の要素をもたらし、それは恒等式にはならないことが推測できます。" #: ../../explanations/qrao.rst:253 msgid "Practically, this means that our commutation relationship will break and :math:`\\text{cut}(m) \\not= \\text{Tr}\\big(H^{(1)}F^{(3)}(m)\\big)`" -msgstr "" +msgstr "実用的には、これは交換関係が崩れて、 :math:`\\text{cut}(m) \\not= \\text{Tr}\\big(H^{(1)}F^{(3)}(m)\\big)` になることを意味します。" #: ../../explanations/qrao.rst:256 msgid "In order to restore the commutation of our encoding with our objective function, we must introduce an additional constraint on the form of our problem Hamiltonian. Specifically, we must guarantee that decision variables which share an edge in our input graph :math:`G` are not assigned to the same qubit under our embedding :math:`F`" -msgstr "" +msgstr "符号化と目的関数の交換性を復元するためには、問題のハミルトニアンの形に追加の制約を導入する必要があります。具体的には、入力グラフ :math:`G` のエッジを共有する決定変数は、埋め込み :math:`F` のもとでは同じ量子ビットに割り当てられないことを保証しなければなりません。" #: ../../explanations/qrao.rst:262 msgid "\\forall e_{ij} \\in E,\\quad F^{(3)}(\\dots,m_i,\\dots,m_j,\\dots) = F^{(3)}(\\dots,m_i,\\dots)\\otimes F^{(3)}(\\dots,m_j,\\dots)\n\n" -msgstr "" +msgstr "\\forall e_{ij} \\in E,\\quad F^{(3)}(\\dots,m_i,\\dots,m_j,\\dots) = F^{(3)}(\\dots,m_i,\\dots)\\otimes F^{(3)}(\\dots,m_j,\\dots)\n\n" #: ../../explanations/qrao.rst:264 msgid "In [1] this is accomplished by finding a coloring of the graph G such that no vertices with the same color share an edge, and then assigning variables to the same qubit only if they have the same color." -msgstr "" +msgstr "[1] では、同じ色を持つ頂点がエッジを共有しないようなグラフGのカラーリングを見つけ、同じ色を持つ場合にのみ同じ量子ビットに変数を割り当てることで実現しています。" #: ../../explanations/qrao.rst:269 msgid "Quantum Rounding Schemes" -msgstr "" +msgstr "量子丸めスキーム" #: ../../explanations/qrao.rst:271 msgid "Because the final solution we obtain for the relaxed problem :math:`\\rho_\\text{relax}` is unlikely to be in the image of :math:`F`, we need a strategy for mapping :math:`\\rho_\\text{relax}` to the image of :math:`F` so that we may extract a solution to our original problem." -msgstr "" +msgstr "緩和問題 :math:`\\rho_\\text{relax}` に対して得られる最終的な解は :math:`F` マッピング の画像内にある可能性は低いため、抽出できるように :math:`\\rho_\\text{relax}` を :math:`F` の画像にマッピングする戦略が必要です。 私たちの元々の問題に対する解決策です。" #: ../../explanations/qrao.rst:276 msgid "In [1] there are two strategies proposed for rounding :math:`\\rho_\\text{relax}` back to :math:`m \\in \\{-1,1\\}^M`." -msgstr "" +msgstr "[1] では、 :math:`\\rho_\\text{relax}` を :math:`m \\in \\{-1,1\\}^M` に丸めるために 2 つの戦略が提案されています。" #: ../../explanations/qrao.rst:280 msgid "Semi-deterministic Rounding" -msgstr "" +msgstr "半決定論的丸め" #: ../../explanations/qrao.rst:282 msgid "A natural choice for extracting a solution is to use the results of Table :math:`2` and simply estimate :math:`\\text{Tr}(P_{[i]}\\rho_\\text{relax})` for all :math:`i` in order to assign a value to each variable :math:`m_i`. The procedure described in Table :math:`2` was intended for use on states in the image of :math:`F`, however, we are now applying it to arbitrary input states. The practical consequence is we will no longer measure a value close to {:math:`\\pm 1`}, {:math:`\\pm \\sqrt{2}`}, or {:math:`\\pm \\sqrt{3}`}, as we would expect for the :math:`(1,1,1)`, :math:`(2,1,p)`, and :math:`(3,1,p)` QRACs, respectively." -msgstr "" +msgstr "解を抽出するための自然な選択は、表 :math:`2` の結果を使用し、各変数 :math:`m_i` に値を割り当てるためにすべての :math:`i` について単純に :math:`\\text{Tr}(P_{[i]}\\rho_\\text{relax})` を推定することです。 表 :math:`2` で説明されている手順は、:math:`F` の画像内の状態で使用することを目的としていましたが、現在はそれを任意の入力状態に適用しています。 実際の結果として、:math:`(1,1,1)`, :math:`(2,1,p)` や :math:`(3,1,p)` QRACに対して期待されるような、{:math:`\\pm 1`}, {:math:`\\pm \\sqrt{2}`}, または {:math:`\\pm \\sqrt{3}`} に近い値は測定されなくなります。" #: ../../explanations/qrao.rst:293 msgid "We handle this by returning the sign of the expectation value, leading to the following rounding scheme." -msgstr "" +msgstr "期待値の符号を返すことでこれを処理し、以下のような丸めスキームを導き出します。" #: ../../explanations/qrao.rst:296 msgid "m_i = \\left\\{\\begin{array}{rl}\n" @@ -287,69 +305,73 @@ msgid "m_i = \\left\\{\\begin{array}{rl}\n" " X \\sim\\{-1,1\\} & \\text{Tr}(P_{[i]}\\rho_\\text{relax}) = 0 \\\\\n" " -1 & \\text{Tr}(P_{[i]}\\rho_\\text{relax}) < 0\n" " \\end{array}\\right." -msgstr "" +msgstr "m_i = \\left\\{\\begin{array}{rl}\n" +" +1 & \\text{Tr}(P_{[i]}\\rho_\\text{relax}) > 0 \\\\\n" +" X \\sim\\{-1,1\\} & \\text{Tr}(P_{[i]}\\rho_\\text{relax}) = 0 \\\\\n" +" -1 & \\text{Tr}(P_{[i]}\\rho_\\text{relax}) < 0\n" +" \\end{array}\\right." #: ../../explanations/qrao.rst:304 msgid "Where :math:`X` is a random variable which returns either -1 or 1 with equal probability." -msgstr "" +msgstr "ここで :math:`X` は-1か1を等確率で返す確率変数です。" #: ../../explanations/qrao.rst:307 msgid "Notice that semi-deterministic rounding will faithfully recover :math:`m` from :math:`F(m)` with a failure probability that decreases exponentially with the number of shots used to estimate each :math:`\\text{Tr}(P_{[i]}\\rho_\\text{relax})`" -msgstr "" +msgstr "半決定論的丸めは、各 :math:`\\text{Tr}(P_{[i]}\\rho_\\text{relax})` の推定に使用されるショットの数に応じて指数関数的に減少する失敗確率で :math:`F(m)` から :math:`m` を忠実に復元することに注意してください。" #: ../../explanations/qrao.rst:313 msgid "Magic State Rounding" -msgstr "" +msgstr "マジック状態丸め" #: ../../explanations/qrao.rst:319 msgid "Three different encodings, the states and the measurement bases, of variables into a single qubit. (a) One variable per qubit. (b) Two variables per qubit. (c) Three variables per qubit. Taken from `[1] `__." -msgstr "" +msgstr "3つの異なる符号化、状態および測定規定、1つの量子ビットへの変数のエンコーディング。(a) 1量子ビットあたり1変数。(b) 1量子ビットあたり2変数。(c) 1量子ビットあたり3変数。 `[1] `__ から引用。" #: ../../explanations/qrao.rst:323 msgid "Rather than seeking to independently distinguish each :math:`m_i`, magic state rounding randomly selects a measurement basis which will perfectly distinguish a particular pair of orthogonal QRAC states :math:`\\{ F(m), F(\\bar m)\\}`, where :math:`\\bar m` indicates that every bit of :math:`m` has been flipped." -msgstr "" +msgstr "マジック状態丸めでは、各 :math:`m_i` を独立して区別しようとするのではなく、直交 QRAC 状態の特定のペア :math:`\\{ F(m), F(\\bar m)\\}` を完全に区別する測定基底がランダムに選択されます。ここで、 :math:`\\bar m` は、:math:`m` のすべてのビットが反転されていることを示します。" #: ../../explanations/qrao.rst:329 msgid "Let :math:`\\mathcal{M}` be the randomized rounding procedure which takes as input a state :math:`\\rho_\\text{relax}` and samples a bitstring :math:`m` by measuring in a randomly selected magic-basis." -msgstr "" +msgstr ":math:`\\mathcal{M}` および を、状態 :math:`\\rho_\\text{relax}` を入力として受け取り、ランダムに選択されたマジック基底で測定することによってビット列 :math:`m` をサンプリングするランダム化された丸め手順とします。" #: ../../explanations/qrao.rst:333 msgid "\\mathcal{M}^{\\otimes n}(\\rho_\\text{relax}) \\rightarrow F(m)\n\n" -msgstr "" +msgstr "\\mathcal{M}^{\\otimes n}(\\rho_\\text{relax}) \\rightarrow F(m)\n\n" #: ../../explanations/qrao.rst:335 msgid "First, notice that for the :math:`(1,1,1)`-QRAC, there is only one basis to choose and the magic state rounding scheme is essentially equivalent to the semi-deterministic rounding scheme." -msgstr "" +msgstr "まず、 :math:`(1,1,1)`-QRAC の場合、選択する基底は1つだけであり、マジック状態丸め方式は本質的に半決定論的丸め方式と等価であることに注意してください。" #: ../../explanations/qrao.rst:339 msgid "For the :math:`(2,1,p)` and :math:`(3,1,p)` QRACs, if we apply the magic state rounding scheme to an :math:`n`-qubit QRAC state :math:`F(m)`, we will have a :math:`2^{-n}` and :math:`4^{-n}` probability of picking the correct basis on each qubit to perfectly extract the solution :math:`m`. Put differently, if we are given an unknown state :math:`F(m)` the probability that :math:`\\mathcal{M}^{\\otimes n}(F(m))\\mapsto F(m)` decreases exponentially with the number of qubits measured - it is far more likely to be mapped to some other :math:`F(m^*)`. Similarly, when we perform magic rounding on an arbitrary state :math:`\\rho_\\text{relax}`, we have similarly low odds of randomly choosing the optimal magic basis for all :math:`n`-qubits. Fortunately magic state rounding does offer a lower bound on the approximation ratio under certain conditions." -msgstr "" +msgstr ":math:`(2,1,p)` と :math:`(3,1,p)` のQRACでは、 :math:`n` 量子ビットのQRAC状態 :math:`F(m)` にマジック状態丸めスキームを適用すると、解 :math:`m` を完全に抽出するために各量子ビットの正しい基底を選ぶ確率は :math:`2^{-n}` と :math:`4^{-n}` pになります。言い換えると、未知の状態 :math:`F(m)` が与えられた場合、 :math:`\\mathcal{M}^{\\otimes n}(F(m))\\mapsto F(m)` の確率は、測定される量子ビットの数とともに指数関数的に減少します。 他の :math:`F(m^*)` にマッピングされる可能性がはるかに高くなります。同様に、任意の状態 :math:`\\rho_\\text{relax}` でマジック丸めを実行する場合、すべての :math:`n` 量子ビットに対して最適なマジック基底がランダムに選択される確率は同様に低くなります。 幸いなことに、マジック状態丸めは、特定の条件下で近似比の下限を提供します。" #: ../../explanations/qrao.rst:353 msgid "Let :math:`F(m^*)` be the highest energy state in the image of F, and let :math:`\\rho^*` be the maximal eigenstate of H." -msgstr "" +msgstr ":math:`F(m^*)` を F の画像内の最高エネルギー状態とし、 :math:`\\rho^*` を H の最大固有状態とします。" #: ../../explanations/qrao.rst:356 msgid "\\forall \\rho_\\text{relax}\\quad \\text{s.t.}\\quad \\text{Tr}\\left(F(m^*)\\cdot H\\right) \\leq \\text{Tr}\\left(\\rho_\\text{relax}\\cdot H\\right)\\leq \\text{Tr}\\left(\\rho^*\\cdot H\\right)\n\n" -msgstr "" +msgstr "\\forall \\rho_\\text{relax}\\quad \\text{s.t.}\\quad \\text{Tr}\\left(F(m^*)\\cdot H\\right) \\leq \\text{Tr}\\left(\\rho_\\text{relax}\\cdot H\\right)\\leq \\text{Tr}\\left(\\rho^*\\cdot H\\right)\n\n" #: ../../explanations/qrao.rst:358 msgid "\\frac{\\text{expected fval}}{\\text{optimal fval}} = \\frac{\\mathbb{E}\\left[\\text{Tr}\\left(H\\cdot \\mathcal{M}^{\\otimes n}(\\rho_\\text{relax})\\right)\\right]}{\\text{Tr}\\left(H\\cdot F(m^*)\\right)} \\geq \\frac{5}{9}\n\n" -msgstr "" +msgstr "\\frac{\\text{expected fval}}{\\text{optimal fval}} = \\frac{\\mathbb{E}\\left[\\text{Tr}\\left(H\\cdot \\mathcal{M}^{\\otimes n}(\\rho_\\text{relax})\\right)\\right]}{\\text{Tr}\\left(H\\cdot F(m^*)\\right)} \\geq \\frac{5}{9}\n\n" #: ../../explanations/qrao.rst:361 msgid "References" -msgstr "" +msgstr "参考文献" #: ../../explanations/qrao.rst:363 msgid "[1] Bryce Fuller et al., “Approximate solutions of combinatorial problems via quantum relaxations,” (2021), `arXiv:2111.03167 `__," -msgstr "" +msgstr "[1] Bryce Fuller et al., “Approximate solutions of combinatorial problems via quantum relaxations,” (2021), `arXiv:2111.03167 `__," #: ../../explanations/qrao.rst:366 msgid "[2] Stephen Wiesner, “Conjugate coding,” SIGACT News, vol. 15, issue 1, pp. 78-88, 1983. `link `__" -msgstr "" +msgstr "[2] Stephen Wiesner, “Conjugate coding,” SIGACT News, vol. 15, issue 1, pp. 78-88, 1983. `link `__" #: ../../explanations/qrao.rst:370 msgid "[3] Masahito Hayashi et al., “(4,1)-Quantum random access coding does not exist—one qubit is not enough to recover one of four bits,” New Journal of Physics, vol. 8, number 8, pp. 129, 2006. `link `__" -msgstr "" +msgstr "[3] Masahito Hayashi et al., “(4,1)-Quantum random access coding does not exist—one qubit is not enough to recover one of four bits,” New Journal of Physics, vol. 8, number 8, pp. 129, 2006. `link `__" diff --git a/optimization/docs/locale/ja_JP/LC_MESSAGES/getting_started.po b/optimization/docs/locale/ja_JP/LC_MESSAGES/getting_started.po index ad03378a0d24d8..9d6fb0ee9a6bdb 100644 --- a/optimization/docs/locale/ja_JP/LC_MESSAGES/getting_started.po +++ b/optimization/docs/locale/ja_JP/LC_MESSAGES/getting_started.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:24\n" +"PO-Revision-Date: 2024-01-04 09:58\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -28,7 +28,7 @@ msgstr "インストール" #: ../../getting_started.rst:10 msgid "Qiskit Optimization depends Qiskit. which has its own `Qiskit Getting Started `__ detailing the installation options and its supported environments/platforms. You should refer to that first. Then the information here can be followed which focuses on the additional installation specific to Qiskit Optimization." -msgstr "" +msgstr "Qiskit Optimizationは、インストール・オプションとそのサポート環境/プラットフォームを詳述した「`Qiskit はじめに `__ 」にて説明されたQiskitに依存しています。 まずそれを参照してください。次に、ここで説明する情報に従って、Qiskit Optimizationに固有の追加インストールをしましょう。" #: ../../getting_started.rst:16 msgid "Qiskit Optimization has some functions that have been made optional where the dependent code and/or support program(s) are not (or cannot be) installed by default. Those are IBM CPLEX, CVXPY and Matplotlib. See :ref:`optional_installs` for more information." @@ -40,15 +40,15 @@ msgstr "ローカルからの開始" #: ../../getting_started.rst:24 msgid "The simplest way to get started is to first follow the `getting started 'Start locally' guide for Qiskit `__" -msgstr "" +msgstr "最も簡単な方法は「 `Qiskit はじめに `__ 」の「ローカルで始める」のガイドを参照して開始することです。" #: ../../getting_started.rst:27 msgid "In your virtual environment where you installed Qiskit simply add ``optimization`` to the extra list in a similar manner to how the extra ``visualization`` support is installed for Qiskit, i.e: In your virtual environment, where you installed Qiskit, install Qiskit Optimization as follows:" -msgstr "" +msgstr "Qiskit をインストールした仮想環境では、Qiskit の追加の視覚化サポートをインストールする方法と同様の方法で、追加リストに最適化を追加するだけです。つまり、Qiskit をインストールした仮想環境では、次のように Qiskit Optimization をインストールします。" #: ../../getting_started.rst:38 msgid "As Qiskit Optimization depends on Qiskit, you can though simply install it into your environment, as above, and pip will automatically install a compatible version of Qiskit if one is not already installed." -msgstr "" +msgstr "Qiskit Optimization はQiskitに依存しているため、上記のようにQiskitを環境にインストールするだけで、Qiskitの互換バージョンがまだインストールされていない場合、pipがQiskitを自動的にインストールします。" #: ../../getting_started.rst msgid "Install from source" diff --git a/optimization/docs/locale/ja_JP/LC_MESSAGES/index.po b/optimization/docs/locale/ja_JP/LC_MESSAGES/index.po index dd0da7541e9541..5d389780276f44 100644 --- a/optimization/docs/locale/ja_JP/LC_MESSAGES/index.po +++ b/optimization/docs/locale/ja_JP/LC_MESSAGES/index.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:24\n" +"PO-Revision-Date: 2024-01-04 09:58\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -40,7 +40,7 @@ msgstr "API リファレンス" #: ../../index.rst:34 msgid "Explanations" -msgstr "" +msgstr "説明" #: ../../index.rst:34 msgid "Release Notes" @@ -60,7 +60,7 @@ msgstr "**Qiskit Optimization** は、最適化問題のハイレベル・モデ #: ../../index.rst:13 msgid "The Optimization module enables easy, efficient modeling of optimization problems using `docplex `__. A uniform interface as well as automatic conversion between different problem representations allows users to solve problems using a large set of algorithms, from variational quantum algorithms, such as the Quantum Approximate Optimization Algorithm QAOA, to Grover Adaptive Search using the GroverOptimizer, leveraging fundamental algorithms provided by `Qiskit Algorithms `__. Furthermore, the modular design of the optimization module allows it to be easily extended and facilitates rapid development and testing of new algorithms. Compatible classical optimizers are also provided for testing, validation, and benchmarking." -msgstr "" +msgstr "最適化モジュールは、 `docplex `__ を使用した最適化問題の簡単で効率的なモデリングを可能にします。 統一されたインターフェースとさまざまな問題表現間の自動変換により、ユーザーは `Qiskit Algorithms `__ によって、量子近似最適化アルゴリズム(Quantum Approximate Optimization Algorithm、QAOA)などの変分量子アルゴリズムからGroverOptimizerを使用したグローバー適応探索(Grover Adaptive Search)まで、多数のアルゴリズムセットを使用して問題を解決できます。 さらに、最適化モジュールのモジュラー設計により、モジュールを簡単に拡張でき、新しいアルゴリズムの迅速な開発とテストが容易になります。 互換性のある古典的オプティマイザーも、テスト、検証、およびベンチマーク用に提供されています。" #: ../../index.rst:26 msgid "Next Steps" diff --git a/optimization/docs/locale/ja_JP/LC_MESSAGES/migration/02_migration_guide_to_v0.6.po b/optimization/docs/locale/ja_JP/LC_MESSAGES/migration/02_migration_guide_to_v0.6.po index 47b3152d36a2df..b5e0170aa34917 100644 --- a/optimization/docs/locale/ja_JP/LC_MESSAGES/migration/02_migration_guide_to_v0.6.po +++ b/optimization/docs/locale/ja_JP/LC_MESSAGES/migration/02_migration_guide_to_v0.6.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:59\n" +"PO-Revision-Date: 2024-01-04 11:47\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -20,91 +20,91 @@ msgstr "" #: ../../migration/02_migration_guide_to_v0.6.rst:2 msgid "Qiskit Optimization v0.6 Migration Guide" -msgstr "" +msgstr "Qiskit Optimization v0.6 移行ガイド" #: ../../migration/02_migration_guide_to_v0.6.rst:4 msgid "This tutorial will guide you through the process of migrating your code from Qiskit Optimization v0.5 to v0.6." -msgstr "" +msgstr "このチュートリアルでは、コードを Qiskit Optimization v0.5 から v0.6 へマイグレーションするプロセスをガイドします。" #: ../../migration/02_migration_guide_to_v0.6.rst:8 msgid "Overview" -msgstr "" +msgstr "概要" #: ../../migration/02_migration_guide_to_v0.6.rst:10 msgid "Qiskit Terra v0.25 deprecated the ``qiskit.algorithms`` module. It has been superseded by a new standalone library `Qiskit Algorithms `__." -msgstr "" +msgstr "Qiskit Terra v0.25では ``qiskit.algorithms`` モジュールが廃止されました。これは新しいスタンドアロンライブラリー `Qiskit Algorithms `__ に取って代わられました。" #: ../../migration/02_migration_guide_to_v0.6.rst:14 msgid "Qiskit Optimization v0.6 supports only the new algorithms of Qiskit Algorithms." -msgstr "" +msgstr "Qiskit Optimization v0.6は、Qiskit Algorithmsの新しいアルゴリズムのみをサポートしています。" #: ../../migration/02_migration_guide_to_v0.6.rst:16 msgid "It is not the intention to provide detailed explanations of the new Qiskit Algorithms in this migration guide. We suggest that you read the `corresponding resources `__ of the Qiskit Algorithms documentation instead." -msgstr "" +msgstr "この移行ガイドでは、新しいQiskit Algorithmsの詳細な説明を提供する意図はありません。代わりにQiskit Algorithmsドキュメントの `対応するリソース `__ を読むことをお勧めします。" #: ../../migration/02_migration_guide_to_v0.6.rst:22 msgid "We can basically use the existing codes by replacing ``qiskit.algorithms`` with ``qiskit_algorithms``." -msgstr "" +msgstr "基本的には、 ``qiskit.algorithms`` を ``qiskit_algorithms`` に置き換えることで、既存のコードを利用することができます。" #: ../../migration/02_migration_guide_to_v0.6.rst:27 msgid "``MinimumEigenOptimizer``" -msgstr "" +msgstr "``MinimumEigenOptimizer``" #: ../../migration/02_migration_guide_to_v0.6.rst:29 msgid "The former algorithms exist in ``qiskit.algorithms.minimum_eigensolvers``. On the other hand, the new algorithms exist in ``qiskit_algorithms.minimum_eigensolvers`` and we can access them by ``qiskit_algorithms.*``." -msgstr "" +msgstr "以前のアルゴリズムは ``qiskit.algorithms.minimum_eigensolvers`` に存在します。一方、新しいアルゴリズムは ``qiskit_algorithms.minimum_eigensolvers`` に存在し、 ``qiskit_algorithms.*`` でアクセスできます。" #: ../../migration/02_migration_guide_to_v0.6.rst:35 msgid "``MinimumEigenOptimizer`` of Qiskit Optimization can use ``qiskit_algorithms.SamplingMinimumEigensolver`` interface of the new algorithms. Note that ``MinimumEigenOptimizer`` cannot basically handle ``qiskit_algorithms.MinimumEigensolver`` of the new algorithms. But there is an exception. ``MinimumEigenOptimizer`` can handle ``qiskit_algorithms.NumPyMinimumEigensolver`` because ``qiskit_algorithms.NumPyMinimumEigensolver`` has an extension that allows users to access the eigen states." -msgstr "" +msgstr "Qiskit Optimization の ``MinimumEigenOptimizer`` は、新アルゴリズムの ``qiskit_algorithms.SamplingMinimumEigensolver`` インターフェースを使用できます。 ``MinimumEigenOptimizer`` は基本的に新アルゴリズムの ``qiskit_algorithms.MinimumEigensolver`` を扱えないことに注意してください。しかし、例外があります。 ``MinimumEigenOptimizer`` は ``qiskit_algorithms.NumPyMinimumEigensolver`` を扱うことができます。なぜなら ``qiskit_algorithms.NumPyMinimumEigensolver`` には固有状態にアクセスできる拡張機能があるからです。" #: ../../migration/02_migration_guide_to_v0.6.rst:45 msgid "The following is the corresponding table." -msgstr "" +msgstr "対応する表を以下に示します。" #: ../../migration/02_migration_guide_to_v0.6.rst:1 msgid "Former algorithm" -msgstr "" +msgstr "以前のアルゴリズム" #: ../../migration/02_migration_guide_to_v0.6.rst:1 msgid "New algorithm" -msgstr "" +msgstr "新しいアルゴリズム" #: ../../migration/02_migration_guide_to_v0.6.rst:1 msgid "``qiskit.algorithms.minimum_eigensolvers.SamplingMinimumEigensolver``" -msgstr "" +msgstr "``qiskit.algorithms.minimum_eigensolvers.SamplingMinimumEigensolver``" #: ../../migration/02_migration_guide_to_v0.6.rst:1 msgid "``qiskit_algorithms.SamplingMinimumEigensolver``" -msgstr "" +msgstr "``qiskit_algorithms.SamplingMinimumEigensolver``" #: ../../migration/02_migration_guide_to_v0.6.rst:1 msgid "``qiskit.algorithms.minimum_eigensolver.NumPyMinimumEigensolver``" -msgstr "" +msgstr "``qiskit.algorithms.minimum_eigensolver.NumPyMinimumEigensolver``" #: ../../migration/02_migration_guide_to_v0.6.rst:1 msgid "``qiskit_algorithms.NumPyMinimumEigensolver``" -msgstr "" +msgstr "``qiskit_algorithms.NumPyMinimumEigensolver``" #: ../../migration/02_migration_guide_to_v0.6.rst:1 msgid "``qiskit.algorithms.minimum_eigensolvers.QAOA``" -msgstr "" +msgstr "``qiskit.algorithms.minimum_eigensolvers.QAOA``" #: ../../migration/02_migration_guide_to_v0.6.rst:1 msgid "``qiskit_algorithms.QAOA``" -msgstr "" +msgstr "``qiskit_algorithms.QAOA``" #: ../../migration/02_migration_guide_to_v0.6.rst:1 msgid "``qiskit.algorithms.minimum_eigensolvers.SamplingVQE``" -msgstr "" +msgstr "``qiskit.algorithms.minimum_eigensolvers.SamplingVQE``" #: ../../migration/02_migration_guide_to_v0.6.rst:1 msgid "``qiskit_algorithms.SamplingVQE``" -msgstr "" +msgstr "``qiskit_algorithms.SamplingVQE``" #: ../../migration/02_migration_guide_to_v0.6.rst:58 msgid "NumPyMinimumEigensolver" -msgstr "" +msgstr "NumPyMinimumEigensolver" #: ../../migration/02_migration_guide_to_v0.6.rst:60 #: ../../migration/02_migration_guide_to_v0.6.rst:92 @@ -112,7 +112,7 @@ msgstr "" #: ../../migration/02_migration_guide_to_v0.6.rst:169 #: ../../migration/02_migration_guide_to_v0.6.rst:210 msgid "Previously" -msgstr "" +msgstr "以前" #: ../../migration/02_migration_guide_to_v0.6.rst:74 #: ../../migration/02_migration_guide_to_v0.6.rst:109 @@ -120,21 +120,21 @@ msgstr "" #: ../../migration/02_migration_guide_to_v0.6.rst:187 #: ../../migration/02_migration_guide_to_v0.6.rst:224 msgid "New" -msgstr "" +msgstr "新規" #: ../../migration/02_migration_guide_to_v0.6.rst:90 msgid "QAOA" -msgstr "" +msgstr "QAOA" #: ../../migration/02_migration_guide_to_v0.6.rst:128 msgid "SamplingVQE" -msgstr "" +msgstr "SamplingVQE" #: ../../migration/02_migration_guide_to_v0.6.rst:166 msgid "``WarmStartQAOAOptimizer``" -msgstr "" +msgstr "``WarmStartQAOAOptimizer``" #: ../../migration/02_migration_guide_to_v0.6.rst:207 msgid "``GroverOptimizer``" -msgstr "" +msgstr "``GroverOptimizer``" diff --git a/optimization/docs/locale/ja_JP/LC_MESSAGES/migration/index.po b/optimization/docs/locale/ja_JP/LC_MESSAGES/migration/index.po index fb19cb9ce44bc6..533aca39eaf7b7 100644 --- a/optimization/docs/locale/ja_JP/LC_MESSAGES/migration/index.po +++ b/optimization/docs/locale/ja_JP/LC_MESSAGES/migration/index.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:25\n" +"PO-Revision-Date: 2024-01-04 11:47\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -24,5 +24,5 @@ msgstr "Qiskit Optimization 移行ガイド" #: ../../migration/index.rst:5 msgid "If you are switching over to version 0.6, which has removed all previously deprecated code, simply follow the instructions provided in the sections below." -msgstr "" +msgstr "以前に非推奨になったコードがすべて削除されたバージョン 0.6 に切り替える場合は、以下のセクションに記載されている手順に従ってください。" diff --git a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/01_quadratic_program.po b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/01_quadratic_program.po index 8fbd1614ac6372..3f2a57506a6d21 100644 --- a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/01_quadratic_program.po +++ b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/01_quadratic_program.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:24\n" +"PO-Revision-Date: 2023-12-29 16:24\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -32,7 +32,7 @@ msgstr "はじめに" #: ../../tutorials/01_quadratic_program.ipynb:32 msgid "In this tutorial, we briefly introduce how to build optimization problems using Qiskit optimization module. Qiskit optimization introduces the ``QuadraticProgram`` class to make a model of an optimization problem. More precisely, it deals with quadratically constrained quadratic programs given as follows:" -msgstr "" +msgstr "このチュートリアルでは、Qiskit の最適化モジュールを利用して最適化問題をビルドする方法について簡単に紹介します。最適化問題のモデルを構築するために、Qiskit optimizationには ``QuadraticProgram`` クラスが導入されています。より正確には、次のような二次制約二次計画問題を扱います:" #: ../../tutorials/01_quadratic_program.ipynb:34 msgid "\\begin{align}\n" @@ -66,7 +66,7 @@ msgstr "空のモデルから始めます。モデルに変数と制約を追加 #: ../../tutorials/01_quadratic_program.ipynb:100 msgid "Qiskit optimization module supports the conversion from Docplex model. You can easily make a model of an optimization problem with Docplex. You can find the documentation of Docplex at https://ibmdecisionoptimization.github.io/docplex-doc/mp/index.html" -msgstr "" +msgstr "Qiskit optimizationモジュールはDocplexモデルからの変換をサポートしています。Docplexで簡単に最適化問題のモデルを作成できます。 Docplex のドキュメントは https://ibmdecisonoptimization.github.io/docplex-doc/mp/index.html にあります。" #: ../../tutorials/01_quadratic_program.ipynb:102 msgid "You can load a Docplex model to ``QuadraticProgram`` by using ``from_docplex_mp`` function." diff --git a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/02_converters_for_quadratic_programs.po b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/02_converters_for_quadratic_programs.po index b4dccf59a6a234..0977087940363a 100644 --- a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/02_converters_for_quadratic_programs.po +++ b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/02_converters_for_quadratic_programs.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:24\n" +"PO-Revision-Date: 2024-01-04 09:58\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -28,15 +28,15 @@ msgstr "二次計画法のコンバーター" #: ../../tutorials/02_converters_for_quadratic_programs.ipynb:20 msgid "Optimization problems in Qiskit optimization module are represented with the ``QuadraticProgram`` class, which is a generic and powerful representation for optimization problems. In general, optimization algorithms are defined for a certain formulation of a quadratic program, and we need to convert our problem to the right type." -msgstr "" +msgstr "Qiskitの最適化モジュールの最適化問題は、 ``QuadraticProgram`` クラスで表されます。これは、最適化問題の一般的で強力な表現です。一般に、最適化アルゴリズムは二次計画法の特定の定式化に対して定義されており、問題を適切なタイプに変換する必要があります。" #: ../../tutorials/02_converters_for_quadratic_programs.ipynb:22 msgid "For instance, Qiskit optimization provides several optimization algorithms that can handle `Quadratic Unconstrained Binary Optimization `__ (QUBO) problems. These are mapped to Ising Hamiltonians, for which Qiskit optimization uses the ``qiskit.quantum_info.SparsePauliOp`` object, and then their ground state is approximated. For this optimization, commonly known algorithms such as VQE or QAOA can be used as underlying routine. See the following tutorial about the `Minimum Eigen Optimizer <./03_minimum_eigen_optimizer.ipynb>`__ for more detail. Note that also other algorithms exist that work differently, such as the ``GroverOptimizer``." -msgstr "" +msgstr "たとえば、Qiskit optimizationは、 `Quadratic Unconstrained Binary Optimization `__ (QUBO)問題を処理できるいくつかの最適化アルゴリズムを提供します。これらは、Qiskit optimizationが ``qiskit.quantum_info.SparsePauliOp`` オブジェクトを使用するイジングハミルトニアンにマッピングされ、基底状態が近似されます。この最適化では、VQE や QAOA などの一般的に知られているアルゴリズムを基礎となるルーチンとして使用できます。詳細については、 `Minimum Eigen Optimizer <./03_minimum_eigen_optimizer.ipynb>`__ に関するチュートリアルを参照してください。 ``GroverOptimizer`` など、動作が異なる他のアルゴリズムも存在することに注意してください。" #: ../../tutorials/02_converters_for_quadratic_programs.ipynb:25 msgid "To map a problem to the correct input format, the optimization module of Qiskit optimization offers a variety of converters. In this tutorial we're providing an overview on this functionality. Currently, Qiskit optimization contains the following converters." -msgstr "" +msgstr "問題を正しい入力形式にマッピングするために、Qiskit optimizationの最適化モジュールはさまざまなコンバーターを提供します。当チュートリアルでは、この機能の概要を説明します。現在、Qiskit optimizationには次のコンバーターが含まれています。" #: ../../tutorials/02_converters_for_quadratic_programs.ipynb:27 msgid "``InequalityToEquality``: convert inequality constraints into equality constraints with additional slack variables." @@ -96,15 +96,15 @@ msgstr "変換がどのように機能するかを説明しましょう。 た #: ../../tutorials/02_converters_for_quadratic_programs.ipynb:299 msgid "Let us see how the ``interpret`` method works. The purpose of this method is to convert the solution of the converted problem back to that of the original problem. To use this method, we would first require to solve the problem. For the purpose of this tutorial, we will use docplex to solve. We will first translate the quadratic problem into a docplex.mp model." -msgstr "" +msgstr "では、 ``interpret`` 法がどのように機能するか見てみましょう。この方法の目的は、変換された問題の解を元の問題の解に戻すことです。この方法を使うには、まず問題を解く必要があります。このチュートリアルではdocplexを使って解きます。まず、2次問題をdocplex.mpモデルに変換します。" #: ../../tutorials/02_converters_for_quadratic_programs.ipynb:392 msgid "The result ``result_eq`` of ``qp_eq`` has 5 variable values (``x=1.0, y=1.0, z=3.0, xyz_leq@int_slack=0.0, xyz_geq@int_slack=2.0``) while result ``result_orig`` of the original ``qp`` has three values (``x=1.0, y=1.0, z=3.0``). We can call ``InequalityToEquality.interpret`` method by passing a list or an array to the method that has values of ``qp_eq.variables`` as follows. ``result_eq.x`` has the list of values that each variable takes in the solution in correspondence to their position in the variable list ``qp_eq.variables``." -msgstr "" +msgstr "``qp_eq`` の結果 ``result_eq`` には 5 つの変数値 (``x=1.0, y=1.0, z=3.0, xyz_leq@int_slack=0.0, xyz_geq@int_slack=2.0``) があり、元の ``qp`` の結果 ``result_orig`` には 3 つの値 (``x=1.0, y=1.0, z=3.0``) があります。 次のように、``qp_eq.variables`` の値を持つメソッドにリストまたは配列を渡すことで、``InequalityToEquality.interpret`` メソッドを呼び出すことができます。 ``result_eq.x`` には、変数リスト ``qp_eq.variables`` 内の位置に対応して、各変数が解の中で取る値のリストがあります。" #: ../../tutorials/02_converters_for_quadratic_programs.ipynb:442 msgid "We notice that :math:`[1., 1., 3.]` are the values taken in the solution of the converted problem for the common variables between converted and original problems (variables: :math:`x`, :math:`y`, :math:`z`). The interpret method shows the same values are the solution of the original problem. This is because the objective function for the converted and original problems is exactly the same. The slack variables are just ensuring equality in the constraints of the converted problem, where the constraints are also exactly same between the original and converted problems, except that the original problem has inequality constraints." -msgstr "" +msgstr "我々は、 :math:`[1., 1., 3.]` が、変換された問題と元の問題の間の共通変数(変数::math:`x`, :math:`y`, :math:`z` )について、変換された問題の解で取られた値であることに気づきます。解釈法は元の問題の解と同じ値を示します。これは、変換後の問題と元の問題の目的関数が全く同じだからです。スラック変数は、変換後の問題の制約における等式を保証しているだけであり、制約も、元の問題が不等式制約を持っていることを除けば、元の問題と変換後の問題の間で全く同じです。" #: ../../tutorials/02_converters_for_quadratic_programs.ipynb:455 msgid "IntegerToBinary" @@ -132,11 +132,11 @@ msgstr "注記:ここでの係数は、取り得る値 :math:`\\{0, \\ldots, 7 #: ../../tutorials/02_converters_for_quadratic_programs.ipynb:670 msgid "``IntegerToBinary`` also provides ``interpret`` method that is the functionality to translate a given binary result back to the original integer representation. Let us see how the ``interpret`` method works." -msgstr "" +msgstr "``IntegerToBinary`` は、与えられたバイナリ結果を元の整数表現に変換する機能である ``interpret`` メソッドも提供します。この ``interpret`` メソッドがどのように動作するか見てみましょう。" #: ../../tutorials/02_converters_for_quadratic_programs.ipynb:751 msgid "``result_eq_bin`` has more binary variables due to the conversion by ``IntegerToBinary.convert``. ``IntegerToBinary.interpret`` translates them back to the integer values by aggregating binary variables values associated with the original integer variables of ``qp_eq``." -msgstr "" +msgstr "``result_eq_bin`` は ``IntegerToBinary.convert`` による変換により、より多くのバイナリ変数を持っています。 ``IntegerToBinary.interpret`` は、 ``qp_eq`` の元の整数変数に関連付けられたバイナリ変数の値を集約することで、それらを整数値に戻します。" #: ../../tutorials/02_converters_for_quadratic_programs.ipynb:801 msgid "LinearEqualityToPenalty" @@ -156,7 +156,7 @@ msgstr "``LinearEqualityToPenalty`` の ``convert`` メソッドを呼び出し #: ../../tutorials/02_converters_for_quadratic_programs.ipynb:1070 msgid "After converting, the equality constraints are added to the objective function as additional terms with the default penalty factor provided by Qiskit optimization. The resulting problem is now a QUBO and compatible with many quantum optimization algorithms such as VQE, QAOA and so on." -msgstr "" +msgstr "変換後、等式制約はQiskit optimizationに提供されたデフォルトのペナルティ係数を持つ追加項として目的関数に追加されます。 変換後の問題はQUBOとなり、VQE、QAOAなどの多くの量子最適化アルゴリズムと互換性があります。" #: ../../tutorials/02_converters_for_quadratic_programs.ipynb:1081 msgid "This gives the same result as before." @@ -164,13 +164,13 @@ msgstr "これは以前と同じ結果を与えます。" #: ../../tutorials/02_converters_for_quadratic_programs.ipynb:1092 msgid "Like we did for the other converters, let us see how ``interpret`` method works for this case." -msgstr "" +msgstr "他のコンバーターでやったように、``interpret`` メソッドがこのケースでどのように機能するか見てみましょう。" #: ../../tutorials/02_converters_for_quadratic_programs.ipynb:1211 msgid "We can see that the result of the ``interpret`` method implies that both the original and converted problems have exactly the same solution. This is expected because the converted problem has exactly the same variables as the original problem, the objective has been modified in such a way that we do not have the constraints anymore in the converted problem." -msgstr "" +msgstr "``interpret`` メソッドの結果は、元の問題と変換された問題の両方が全く同じ解を持つことを意味していることがわかります。これは、変換された問題には元の問題と全く同じ変数があり、変換された問題には制約がないように目的が変更されているためです。" #: ../../tutorials/02_converters_for_quadratic_programs.ipynb:1222 msgid "Finally, let us see how we interpret the result of QUBO back to the solution of the original problem ``qp``. The following code shows that the interpreted values are equivalent to the result of the original problem ``qp``." -msgstr "" +msgstr "最後に、QUBO の結果をどのように解釈して元の問題 ``qp`` の解に戻すかを見てみましょう。以下のコードは、解釈された値が元の問題 ``qp`` の結果と等価であることを示しています。" diff --git a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/03_minimum_eigen_optimizer.po b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/03_minimum_eigen_optimizer.po index 8f67d4381a8646..4772ddd035c420 100644 --- a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/03_minimum_eigen_optimizer.po +++ b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/03_minimum_eigen_optimizer.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:24\n" +"PO-Revision-Date: 2023-12-29 16:24\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -36,7 +36,7 @@ msgstr "量子コンピューティングを適用する最適化問題の興味 #: ../../tutorials/03_minimum_eigen_optimizer.ipynb:35 msgid "Qiskit optimization provides automatic conversion from a suitable ``QuadraticProgram`` to an Ising Hamiltonian, which then allows leveraging all the ``SamplingMinimumEigensolver`` implementations, such as" -msgstr "" +msgstr "Qiskit optimizationは、適切な ``QuadraticProgram`` からイジング・ハミルトニアンへの自動変換を提供します。これにより、次のようなすべての ``SamplingMinimumEigensolver`` を活用できます。" #: ../../tutorials/03_minimum_eigen_optimizer.ipynb:37 msgid "``SamplingVQE``," @@ -52,7 +52,7 @@ msgstr "``NumpyMinimumEigensolver`` (古典的厳密法)。" #: ../../tutorials/03_minimum_eigen_optimizer.ipynb:41 msgid "Note 1: ``MinimumEigenOptimizer`` does not support ``qiskit_algorithms.VQE``. But ``qiskit_algorithms.SamplingVQE`` can be used instead." -msgstr "" +msgstr "注 1: ``MinimumEigenOptimizer`` は ``qiskit_algorithms.VQE`` をサポートしていません。しかし、代わりに ``qiskit_algorithms.SamplingVQE`` を使用できます。" #: ../../tutorials/03_minimum_eigen_optimizer.ipynb:43 msgid "Note 2: ``MinimumEigenOptimizer`` can use ``NumpyMinimumEigensolver`` as an exception case though it inherits ``MinimumEigensolver`` (not ``SamplingMinimumEigensolver``)." @@ -60,15 +60,15 @@ msgstr "注 2: ``NumpyMinimumEigensolver`` は、( ``SamplingMinimumEigensolver` #: ../../tutorials/03_minimum_eigen_optimizer.ipynb:45 msgid "Qiskit optimization provides a the ``MinimumEigenOptimizer`` class, which wraps the translation to an Ising Hamiltonian (in Qiskit Terra also called ``SparsePauliOp``), the call to a ``MinimumEigensolver``, and the translation of the results back to an ``OptimizationResult``." -msgstr "" +msgstr "Qiskit optimization は、 ``MinimumEigenOptimizer`` クラスを提供します。これは、変換をイジングハミルトニアン(Qiskit Terra では ``SparsePauliOp`` とも呼ばれます)にラップし、 ``MinimumEigensolver`` を呼び出し、結果を ``OptimizationResult`` に変換します。" #: ../../tutorials/03_minimum_eigen_optimizer.ipynb:47 msgid "In the following we first illustrate the conversion from a ``QuadraticProgram`` to a ``SparsePauliOp`` and then show how to use the ``MinimumEigenOptimizer`` with different ``MinimumEigensolver``\\ s to solve a given ``QuadraticProgram``. The algorithms in Qiskit optimization automatically try to convert a given problem to the supported problem class if possible, for instance, the ``MinimumEigenOptimizer`` will automatically translate integer variables to binary variables or add linear equality constraints as a quadratic penalty term to the objective. It should be mentioned that a ``QiskitOptimizationError`` will be thrown if conversion of a quadratic program with integer variables is attempted." -msgstr "" +msgstr "以下では、まず、``QuadraticProgram`` から ``SparsePauliOp`` への変換を示します。次に、与えられた ``QuadraticProgram`` を解くのに、``MinimumEigenOptimizer`` を異なる ``MinimumEigensolver`` にどう使うのかを示します。Qiskit optimizationのアルゴリズムは、与えられた問題を、可能であればサポートされている問題クラスに自動的に変換しようとします。例えば、``MinimumEigenOptimizer`` は整数変数をバイナリー変数に自動的に変換したり、線形等価制約を2次ペナルティ項として目的関数に追加したりします。整数変数を持つ二次計画問題を変換しようとすると、 ``QiskitOptimizationError`` が投げられることに注意してください。" #: ../../tutorials/03_minimum_eigen_optimizer.ipynb:50 msgid "The circuit depth of ``QAOA`` potentially has to be increased with the problem size, which might be prohibitive for near-term quantum devices. A possible workaround is Recursive QAOA, as introduced in [2]. Qiskit optimization generalizes this concept to the ``RecursiveMinimumEigenOptimizer``, which is introduced at the end of this tutorial." -msgstr "" +msgstr "``QAOA`` の回路の深さは、問題の大きさに応じて必然的に増加する可能性があり、これは近未来の量子デバイスにとっては障害となる可能性があります。考えられる回避策として、 [2] で紹介されている再帰QAOAがあります。このチュートリアルの最後で紹介しますが、Qiskit optimizationはこの概念を ``RecursiveMinimumEigenOptimizer`` に一般化しています。" #: ../../tutorials/03_minimum_eigen_optimizer.ipynb:53 msgid "References" @@ -84,19 +84,19 @@ msgstr "[2] `S. Bravyi, A. Kliesch, R. Koenig, E. Tang, Obstacles to State Prepa #: ../../tutorials/03_minimum_eigen_optimizer.ipynb:69 msgid "Converting a QUBO to a SparsePauliOp" -msgstr "" +msgstr "QUBOをSparsePauliOpに変換する" #: ../../tutorials/03_minimum_eigen_optimizer.ipynb:173 msgid "Next we translate this QUBO into an Ising operator. This results not only in a ``SparsePauliOp`` but also in a constant offset to be taken into account to shift the resulting value." -msgstr "" +msgstr "次に、このQUBOをIsingオペレータに変換します。 変換の結果は、``SparsePauliOp`` だけではなく、結果の値をシフトするのに考慮すべき定数オフセットにもなります。" #: ../../tutorials/03_minimum_eigen_optimizer.ipynb:230 msgid "Sometimes a ``QuadraticProgram`` might also directly be given in the form of a ``SparsePauliOp``. For such cases, Qiskit optimization also provides a translator from a ``SparsePauliOp`` back to a ``QuadraticProgram``, which we illustrate in the following." -msgstr "" +msgstr "ときには、``QuadraticProgram`` が ``SparsePauliOp`` の形でも直接与えられる場合があります。 このような場合、Qiskit optimizationは ``SparsePauliOp`` から ``QuadraticProgram`` に戻す変換機能を備えています。これについては以下で説明します。" #: ../../tutorials/03_minimum_eigen_optimizer.ipynb:307 msgid "This translator allows, for instance, one to translate a ``SparsePauliOp`` to a ``QuadraticProgram`` and then solve the problem with other algorithms that are not based on the Ising Hamiltonian representation, such as the ``GroverOptimizer``." -msgstr "" +msgstr "このコンバーターにより、例えば、``SparsePauliOp`` を ``QuadraticProgram`` に変換して、イジング・ハミルトニアン表現に基づいていない他のアルゴリズム(例えば ``GroverOptimizer`` )で問題を解くことができます。" #: ../../tutorials/03_minimum_eigen_optimizer.ipynb:319 msgid "Solving a QUBO with the MinimumEigenOptimizer" diff --git a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/04_grover_optimizer.po index bb2ba094adc36b..8b4fcb5c6411e1 100644 --- a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 13:04\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-29 16:24\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -71,12 +71,12 @@ msgid "While implementations of GAS vary around the specific use case, the gener msgstr "GASの実装は特定のユースケースによって異なりますが、一般的なフレームワークは、以下で説明する手順に大まかに従います。" #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" -msgstr "" +msgid "|6ca734fed0024015824561a78d87e967|" +msgstr "|6ca734fed0024015824561a78d87e967|" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" -msgstr "" +msgid "6ca734fed0024015824561a78d87e967" +msgstr "6ca734fed0024015824561a78d87e967" #: ../../tutorials/04_grover_optimizer.ipynb:65 msgid "``GroverOptimizer`` uses ``QuadraticProgramToNegativeValueOracle`` to construct :math:`A_y` such that it prepares a :math:`n`-qubit register to represent the equal superposition of all :math:`|x\\rangle_n` and a :math:`m`-qubit register to (approximately) represent the corresponding :math:`|Q(x)-y\\rangle_m`. Then, all states with :math:`(Q(x) - y)` negative should be flagged by :math:`O_y`. Note that in the implementation discussed, the oracle operator is actually independent of :math:`y`, but this is not a requirement. For clarity, we will refer to the oracle as :math:`O` when the oracle is independent of :math:`y`." @@ -87,12 +87,12 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "正式に言えば、 ``QuadraticProgramToNegativeValueOracle`` は、次のような :math:`A_y` と :math:`O` を構成します。" #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" -msgstr "" +msgid "|9648e56adaa642578c061c29a05f5e8a|" +msgstr "|9648e56adaa642578c061c29a05f5e8a|" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" -msgstr "" +msgid "9648e56adaa642578c061c29a05f5e8a" +msgstr "9648e56adaa642578c061c29a05f5e8a" #: ../../tutorials/04_grover_optimizer.ipynb:80 msgid "where :math:`|x\\rangle` is the binary encoding of the integer :math:`x`." @@ -127,24 +127,24 @@ msgid "This results in the optimal solution :math:`x_0=1`, :math:`x_1=0`, :math: msgstr "この結果、最適解 :math:`x_0=1` 、 :math:`x_1=0` 、:math:`x_2=1` が得られ、最適目的値は :math:`-6` となります(ほとんどの時間は、ランダム化されたアルゴリズムによる)。 以下の例では、量子状態のカスタム可視化は、このQUBOに適用される ``GroverOptimizer`` の実行可能性が示されています。" #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" -msgstr "" +msgid "|152c54029dff4932bf4d15c772493835|" +msgstr "|152c54029dff4932bf4d15c772493835|" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" -msgstr "" +msgid "152c54029dff4932bf4d15c772493835" +msgstr "152c54029dff4932bf4d15c772493835" #: ../../tutorials/04_grover_optimizer.ipynb:267 msgid "Each graph shows a single iteration of GAS, with the current values of :math:`r` (= iteration counter) and :math:`y` (= threshold/offset) shown in the title. The X-axis displays the integer equivalent of the input (e.g. '101' :math:`\\rightarrow` 5), and the Y-axis shows the possible function values. As there are 3 binary variables, there are :math:`2^3=8` possible solutions, which are shown in each graph. The color intensity indicates the probability of measuring a certain result (with bright intensity being the highest), while the actual color indicates the corresponding phase (see phase color-wheel below). Note that as :math:`y` decreases, we shift all of the values up by that amount, meaning there are fewer and fewer negative values in the distribution, until only one remains (the minimum)." msgstr "各グラフはGASの単一の反復を示しており、 :math:`r` (=反復カウンター)と :math:`y` (=しきい値/オフセット)の現在の値がタイトルに示されています。X軸は入力に相当する整数(例: '101' :math:`\\rightarrow` 5)を表示し、Y軸は可能な関数値を表示します。3つのバイナリ変数があるため、 :math:`2^3=8` の可能な解決策があり、各グラフに示されています。色の強度は特定の結果を測定する確率を示し(明るい強度が最も高い)、実際の色は対応するフェーズを示します(以下のフェーズのカラーホイールを参照)。 :math:`y` が減少すると、すべての値がその量だけ上にシフトすることに注意してください。つまり、1つだけが残る(最小)まで、分布内の負の値はますます少なくなります。" #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" -msgstr "" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" +msgstr "|e0a7edbeeeb14dc697f5c923604f6328|" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" -msgstr "" +msgid "e0a7edbeeeb14dc697f5c923604f6328" +msgstr "e0a7edbeeeb14dc697f5c923604f6328" #: ../../tutorials/04_grover_optimizer.ipynb:295 msgid "Check that GroverOptimizer finds the correct value" @@ -152,5 +152,5 @@ msgstr "GroverOptimizerが正しい値を見つけることの確認" #: ../../tutorials/04_grover_optimizer.ipynb:297 msgid "We can verify that the algorithm is working correctly using the ``MinimumEigenOptimizer`` in Qiskit optimization." -msgstr "" +msgstr "Qiskit optimizationの ``MinimumEigenOptimizer`` を使用してアルゴリズムが正しく動作していることを確認できます。" diff --git a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/05_admm_optimizer.po b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/05_admm_optimizer.po index e8e135afa2c698..734841e25156bb 100644 --- a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/05_admm_optimizer.po +++ b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/05_admm_optimizer.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:24\n" +"PO-Revision-Date: 2023-12-29 16:24\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -188,7 +188,7 @@ msgstr "古典的解法" #: ../../tutorials/05_admm_optimizer.ipynb:298 msgid "3-ADMM-H needs a QUBO optimizer to solve the QUBO subproblem, and a continuous optimizer to solve the continuous convex constrained subproblem. We first solve the problem classically: we use the ``MinimumEigenOptimizer`` with the ``NumPyMinimumEigenSolver`` as a classical and exact QUBO solver and we use the ``CobylaOptimizer`` as a continuous convex solver. 3-ADMM-H supports any other suitable solver available in Qiskit optimization. For instance, ``SamplingVQE``, ``QAOA``, and ``GroverOptimizer`` can be invoked as quantum solvers, as demonstrated later. If CPLEX is installed, the ``CplexOptimizer`` can also be used as both, a QUBO and convex solver." -msgstr "" +msgstr "3-ADMM-Hは、QUBOサブ問題を解くのにはQUBOオプティマイザーを、連続凸制約問題を解くのには連続オプティマイザーを必要とします。まず最初に、問題を古典的な方法で解きます: ``NumPyMinimumEigenSolver`` による ``MinimumEigenOptimizer`` を古典的かつ正確な QUBO ソルバーとして使用し、連続凸問題ソルバーとして ``CobylaOptimizer`` を使用します。 3-ADMM-Hは、他にもQiskit optimizationで利用可能な適切なソルバーをすべてサポートしています。例えば、``SamplingVQE`` 、 ``QAOA`` 、 ``GroverOptimizer`` は、後述するように、量子ソルバーとして呼び出すことができます。 CPLEXがインストールされていれば、``CplexOptimizer`` をQUBOと凸ソルバーのいずれにも使用することができます。" #: ../../tutorials/05_admm_optimizer.ipynb:311 msgid "Parameters" diff --git a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/06_examples_max_cut_and_tsp.po b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/06_examples_max_cut_and_tsp.po index df0eeceb5f384f..8e5466e9b91210 100644 --- a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/06_examples_max_cut_and_tsp.po +++ b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/06_examples_max_cut_and_tsp.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:24\n" +"PO-Revision-Date: 2023-12-29 16:24\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -52,7 +52,7 @@ msgstr "最大化: 利益、価値、生産高、リターン、利回り、有 #: ../../tutorials/06_examples_max_cut_and_tsp.ipynb:33 msgid "We consider here max-cut problems of practical interest in many fields, and show how they can be mapped on quantum computers manually and how Qiskit optimization module supports this." -msgstr "" +msgstr "ここでは、多くの分野で実用的関心のある最大カット問題を考えます。それらをどのようにすれば量子コンピューターに手動でマッピングできるか、あるいはQiskitの最適化モジュールがこれをどのようにサポートしているかを示します。" #: ../../tutorials/06_examples_max_cut_and_tsp.ipynb:36 msgid "Weighted Max-Cut" @@ -100,7 +100,7 @@ msgstr "H = \\sum_i w_i Z_i + \\sum_{i`__. Particularly, it is shown how to setup the ``MinimumEigenOptimizer`` using ``SamplingVQE`` accordingly. For a given set of shots with corresponding objective values of the considered optimization problem, the CVaR with confidence level :math:`\\alpha \\in [0, 1]` is defined as the average of the :math:`\\alpha` best shots. Thus, :math:`\\alpha = 1` corresponds to the standard expected value, while :math:`\\alpha=0` corresponds to the minimum of the given shots, and :math:`\\alpha \\in (0, 1)` is a tradeoff between focusing on better shots, but still applying some averaging to smoothen the optimization landscape." -msgstr "" +msgstr "このノートブックは、`Qiskit Algorithms `__が提供する変分量子最適化アルゴリズム内で [1] で紹介されたConditional Value at Risk (CVaR) 目的関数を使用する方法を示しています。 特に、 ``SamplingVQE`` を使用して ``MinimumEigenOptimizer`` を設定する方法を示します。 考慮される最適化問題に対応する客観的価値を持つショットの特定のセットについて、信頼水準 :math:`\\alpha \\in [0, 1]` のCVaRは、 :math:`\\alpha` ベストショットの平均として定義されます。 したがって、 :math:`\\alpha = 1` は標準の期待値に対応し、 :math:`\\alpha=0` は与えられたショットの最小値に対応し、 :math:`\\alpha \\in (0, 1)` はより良いショットに焦点を合わせる間のトレードオフですが、最適化ランドスケープをスムーズにするために平均化を適用します。" #: ../../tutorials/08_cvar_optimization.ipynb:27 msgid "References" diff --git a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/10_warm_start_qaoa.po b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/10_warm_start_qaoa.po index 94705391bafaa7..36faaf553f2b44 100644 --- a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/10_warm_start_qaoa.po +++ b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/10_warm_start_qaoa.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:24\n" +"PO-Revision-Date: 2023-12-29 16:24\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -100,7 +100,7 @@ msgstr "標準的な QAOA" #: ../../tutorials/10_warm_start_qaoa.ipynb:505 msgid "First, we use standard QAOA to solve the QUBO. To do this, we convert the QUBO to ``QuadraticProgram`` class (note that the resulting problem is still a binary problem)." -msgstr "" +msgstr "まず標準の QAOA を使用して、QUBOを解きます。これを行うために、QUBO を ``QuadraticProgram`` クラスに変換します (結果として生じる問題は依然としてバイナリー問題であることに注意してください) 。" #: ../../tutorials/10_warm_start_qaoa.ipynb:580 #: ../../tutorials/10_warm_start_qaoa.ipynb:892 diff --git a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index 853193bafacd45..9f58429654de21 100644 --- a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:24\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 15:59\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -78,35 +78,35 @@ msgstr "Qiskit Optimization は、Docplex モデルと Gurobipy モデルから msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "まず、Docplex および Gurobipy によって最適化問題を定義します。" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "Docplex と Groubipy の両方のモデルから ``QuadraticProgram`` オブジェクトを生成することができます。Docplex と Gurobipy から生成された2つの ``QuadraticProgram`` オブジェクトが同じであることを見てみましょう。" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "``QuadraticProgram`` から Docplex モデルと Gurobipy モデルを生成することもできます。" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "Docplex のインディケーター制約" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "``from_docplex_mp`` は Docplex モデルを ``QuadraticProgram`` に変換する時、インディケーター制約、すなわち ``u = 0 => x + y <= z`` (u: バイナリー変数) をサポートします。それはインディケーター制約を big-M 定式化で線形制約に変換します。" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "インディケーター制約のあるモデルの解を比較してみましょう" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "CPLEX を直接 Docplex モデルに適用する ( ``QuadraticProgram`` に変換せずに。CPLEX ソルバーはインディケーター制約をネイティブにサポートします)" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "QAOA を ``from_docplex_mp`` から得た ``QuadraticProgram`` に適用する" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "解は同じになります。" diff --git a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/12_quantum_random_access_optimizer.po b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/12_quantum_random_access_optimizer.po index 0977ded9fdde90..fe5576fd2e99ae 100644 --- a/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/12_quantum_random_access_optimizer.po +++ b/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/12_quantum_random_access_optimizer.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:59\n" +"PO-Revision-Date: 2024-01-08 02:39\n" "Last-Translator: \n" "Language: ja\n" "Language-Team: Japanese\n" @@ -20,221 +20,221 @@ msgstr "" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:9 msgid "This page was generated from `docs/tutorials/12_quantum_random_access_optimizer.ipynb`__." -msgstr "" +msgstr "このページは `docs/tutorials/12_quantum_random_access_optimizer.ipynb`__ から生成されました。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:9 msgid "Quantum Random Access Optimization" -msgstr "" +msgstr "量子ランダムアクセス最適化 (Quantum Random Access Optimization)" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:20 msgid "The Quantum Random Access Optimization (QRAO) module is designed to enable users to leverage a new quantum method for combinatorial optimization problems [1]. This approach incorporates Quantum Random Access Codes (QRACs) as a tool to encode multiple classical binary variables into a single qubit, thereby saving quantum resources and enabling exploration of larger problem instances on a quantum computer. The encodings produce a local quantum Hamiltonian whose ground state can be approximated with standard algorithms such as VQE, and then rounded to yield approximation solutions of the original problem." -msgstr "" +msgstr "量子ランダムアクセス最適化(Quantum Random Access Optimization: QRAO)モジュールは、組合せ最適化問題[1] に新しい量子手法を活用できるように設計されています。この手法は、量子ランダムアクセスコード(Quantum Random Access Codes: QRAC)を、複数の古典的なバイナリ変数を1つの量子ビットにエンコードするツールとして組み込んだもので、これにより量子リソースを節約し、量子コンピューター上でより大規模な問題インスタンスを探索することが可能になります。この符号化により、局所的な量子ハミルトニアンが生成され、その基底状態はVQEなどの標準的なアルゴリズムで近似することができ、その後、元の問題の近似解を得るために丸められます。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:23 msgid "QRAO through a series of 3 classes: 1. The encoding class (``QuantumRandomAccessEncoding``): This class encodes the original problem into a relaxed problem that requires fewer resources to solve. 2. The rounding schemes (``SemideterministicRounding`` and ``MagicRounding``): This scheme is used to round the solution obtained from the relaxed problem back to a solution of the original problem. 3. The optimizer class (``QuantumRandomAccessOptimizer``): This class performs the high-level optimization algorithm, utilizing the capabilities of the encoding class and the rounding scheme." -msgstr "" +msgstr "QRAOは3つのクラスで構成されています: 1. 符号化クラス(``QuantumRandomAccessEncoding``): このクラスは元の問題を、解くのに必要なリソースがより少ない緩和された問題にエンコードします。 2. 丸めスキーム (``SemideterministicRounding`` と ``MagicRounding``): このスキームは、緩和された問題から得られた解を元の問題の解に丸めるために使用されます。 3. オプティマイザークラス(``QuantumRandomAccessOptimizer``): このクラスは、符号化クラスと丸めスキームの機能を利用して、高レベルの最適化アルゴリズムを実行します。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:26 msgid "*References*" -msgstr "" +msgstr "*参考文献*" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:28 msgid "[1] Bryce Fuller et al., *Approximate Solutions of Combinatorial Problems via Quantum Relaxations,* `arXiv:2111.03167 `__" -msgstr "" +msgstr "[1] Bryce Fuller et al., *Approximate Solutions of Combinatorial Problems via Quantum Relaxations,* `arXiv:2111.03167 `__" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:54 msgid "Set up a combinatorial optimization problem" -msgstr "" +msgstr "組合せ最適化問題を設定する" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:56 msgid "In this tutorial, we will consider a random max-cut problem instance and use QRAO to try to find a maximum cut; in other words, a partition of the graph's vertices (nodes) into two sets that maximizes the number of edges between the sets." -msgstr "" +msgstr "このチュートリアルでは、ランダムなマックスカット問題のインスタンスを検討し、QRAO を使用して最大カットを見つけようとします。 言い換えれば、グラフの頂点 (ノード) を 2 つのセットに分割し、セット間のエッジの数を最大化します。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:58 msgid "To begin, we utilize the ``Maxcut`` class from Qiskit Optimization's application module. It allows us to generate a ``QuadraticProgram`` representation of the given graph." -msgstr "" +msgstr "はじめに、Qiskit Optimizationのアプリケーションモジュールにある ``Maxcut`` クラスを利用します。これにより、与えられたグラフの ``QuadraticProgram`` 表現を生成することができます。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:60 msgid "Note that once our problem has been represented as a ``QuadraticProgram``, it will need to be converted to the correct type, a `quadratic unconstrained binary optimization (QUBO) `__ problem, so that it is compatible with QRAO. A ``QuadraticProgram`` generated by ``Maxcut`` is already a QUBO, but if you define your own problem be sure you convert it to a QUBO before proceeding. Here is `a tutorial `__ on converting ``QuadraticPrograms``." -msgstr "" +msgstr "問題が ``QuadraticProgram`` として表現されたら、QRAOと互換性があるように、正しい型である `二次制約なし二項最適化(QUBO) `__ 問題に変換する必要があることに注意してください。 ``Maxcut`` によって生成された``QuadraticProgram`` はすでにQUBOですが、もし自分で問題を定義する場合には、先に進む前に必ずQUBOに変換してください。 ``QuadraticPrograms`` の変換についての `チュートリアルはこちら `__ です。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:163 msgid "Encode the problem into a quantum Hamiltonian" -msgstr "" +msgstr "量子ハミルトニアンに問題を符号化する" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:165 msgid "Once we have appropriately configured our problem, we proceed to encode it using the ``QuantumRandomAccessEncoding`` class from the ``qrao`` module. This encoding step allows us to generate a quantum Hamiltonian operator that represents our problem. In particular, we employ a Quantum Random Access Code (QRAC) to encode multiple classical binary variables (corresponding to the nodes of our max-cut graph) into each qubit." -msgstr "" +msgstr "問題を適切に設定したら、 ``qrao`` モジュールの ``QuantumRandomAccessEncoding`` クラスを使って符号化します。この符号化ステップによって、問題を表す量子ハミルトニアン演算子を生成することができます。特に、量子ランダムアクセスコード(QRAC) を用いて、複数の古典バイナリ変数(マックスカットグラフのノードに対応) を各量子ビットにエンコードします。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:167 msgid "It's important to note that the resulting \"relaxed\" Hamiltonian, produced by this encoding, will not be diagonal. This differs from the standard workflow in ``qiskit-optimization``, which typically generates a diagonal (Ising) Hamiltonian suitable for optimization using a ``MinimumEigenOptimizer``. You can find a tutorial on the ``MinimumEigenOptimizer`` `here `__." -msgstr "" +msgstr "この符号化によって生成される \"relaxed\" ハミルトニアンは対角ではないことに注意することが重要です。これは 通常は ``MinimumEigenOptimizer`` を使った最適化に適した対角(Ising)ハミルトニアンを生成する ``qiskit-optimization`` の標準的なワークフローとは異なります。 ``MinimumEigenOptimizer`` の `チュートリアルはこちら`__ です。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:169 msgid "In our encoding process, we employ a :math:`(3,1,p)-`\\ QRAC, where each qubit can accommodate a maximum of 3 classical binary variables. The parameter :math:`p` represents the bit recovery probability achieved through measurement. Depending on the nature of the problem, some qubits may have fewer than 3 classical variables assigned to them. To evaluate the compression achieved, we can examine the ``compression_ratio`` attribute of the encoding, which provides the ratio between the number of original binary variables and the number of qubits used (at best, a factor of 3)." -msgstr "" +msgstr "私たちの符号化プロセスでは、 :math:`(3,1,p)-`\\ QRAC を採用しており、各量子ビットは最大 3 つの古典的なバイナリ変数に対応できます。 パラメータ :math:`p` は、測定によって得られたビット回復確率を表します。 問題の性質によっては、一部の量子ビットに割り当てられている古典的な変数が 3 つ未満である場合があります。 達成された圧縮を評価するには、符号化の ``compression_ratio`` 属性を調べることができます。これは、元のバイナリ変数の数と使用される量子ビットの数の間の比率 (最大で 3 の係数) を提供します。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:249 msgid "Solve the problem using the ``QuantumRandomAccessOptimizer``" -msgstr "" +msgstr "``QuantumRandomAccessOptimizer`` を使って問題を解く" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:251 msgid "Having successfully encoded our input problem as a relaxed Hamiltonian, we proceed to solve it using the ``QuantumRandomAccessOptimizer``. This optimizer allows us to find an approximate solution to the relaxed problem by leveraging quantum computing techniques." -msgstr "" +msgstr "入力問題を緩和されたハミルトニアンとして符号化することに成功したので、 ``QuantumRandomAccessOptimizer`` を使って解を求めます。このオプティマイザーは、量子計算技術を活用することで、緩和された問題の近似解を求めることができます。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:253 msgid "To set up the optimizer, we need to specify two crucial components:" -msgstr "" +msgstr "オプティマイザーを設定するには、2つの重要なコンポーネントを指定する必要があります:" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:255 msgid "**Minimum Eigensolver**: We specify a minimum eigensolver to heuristically search for the ground state of the relaxed problem Hamiltonian. As an example, we can use the Variational Quantum Eigensolver (VQE). For simulation purposes, we'll employ an simulator, but you can choose a quantum device as the backend if desired." -msgstr "" +msgstr "**最小固有値解法**: 緩和問題のハミルトニアンの基底状態を発見的に探索する最小固有値解法を指定します。例として、変分量子固有値ソルバー(VQE) を使うことができます。シミュレーションのために、シミュレーターを使用しますが、必要であればバックエンドに量子デバイスを選択することもできます。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:256 msgid "**Rounding Scheme**: To map the ground state results back to a solution for the original problem, we specify a rounding scheme. By default, the ``SemideterministicRounding`` is used, but alternative scheme, ``MagicRounding``, is also available." -msgstr "" +msgstr "**丸めスキーム**: 基底状態の結果を元の問題の解に戻すために、丸めスキームを指定します。デフォルトでは ``SemideterministicRounding`` が使用されますが、 ``MagicRounding`` も使用できます。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:302 msgid "Finally, we move forward with solving the problem by invoking the ``solve()`` method. It's important to note that when calling ``solve()``, we pass the ``problem`` itself as an argument. Although we previously used ``encode()`` in ``QuantumRandomAccessEncoding`` to provide a clear understanding of the flow, ``solve(problem)`` automatically encodes the problem internally using ``QuantumRandomAccessEncoding``. This provides a streamlined and simplified workflow that eliminates the need for explicit encoding steps." -msgstr "" +msgstr "最後に、 ``solve()`` メソッドを呼び出して問題を解きます。 ``solve()`` を呼び出すときに、 ``problem`` そのものを引数として渡すことに注意することが重要です。以前は ``QuantumRandomAccessEncoding`` の ``encode()`` を使って流れを明確に理解していましたが、 ``solve(problem)`` は自動的に ``QuantumRandomAccessEncoding`` を使って問題を内部的に符号化します。これにより、明示的な符号化手順が不要になり、合理的で簡素化されたワークフローが実現します。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:305 msgid "The result is provides us as a ``QuantumRandomAccessOptimizationResult``. The ``x`` contains the binary values representing the best solution found, while the ``fval`` contains the corresponding objective value." -msgstr "" +msgstr "結果は ``QuantumRandomAccessOptimizationResult`` として提供されます。 ``x`` には、見つかった最適解を表すバイナリ値が格納され、 ``fval`` には対応する目的値が格納されます。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:307 msgid "The ``relaxed_fval`` provides the expectation value of the relaxed Hamiltonian, adjusted to be in the units of the original optimization problem. For maximization problems, the best possible relaxed function value will always be greater than or equal to the best possible objective function value of the original problem. In practice, this often holds true for the best found value and best found objective function value as well." -msgstr "" +msgstr "``relaxed_fval`` は、元の最適化問題の単位になるように調整された緩和ハミルトニアンの期待値を提供します。最大化問題では、可能な限り最良の緩和された関数値は、常に元の問題の可能な限り最良の目的関数値以上となります。実際には、これは最良の発見値と最良の発見された目的関数値にも当てはまることが多いです。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:369 msgid "Interpret the solution" -msgstr "" +msgstr "解の解釈" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:380 msgid "In the context of `max-cut `__, the result's \"optimal value\" tells us which subset each node belongs to given the partition found by the optimizer." -msgstr "" +msgstr "`max-cut `__ の文脈では、結果の \"最適値\" は、オプティマイザーによって発見されたパーティションが与えられたときに、各ノードがどのサブセットに属するかを教えてくれます。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:440 msgid "Inspect the results of subroutines" -msgstr "" +msgstr "サブルーチンの結果の検査" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:451 msgid "The `MinimumEigensolverResult `__ that results from performing VQE on the relaxed Hamiltonian is available:" -msgstr "" +msgstr "緩和されたハミルトニアンに対してVQEを実行した結果の `MinimumEigensolverResult `__ が利用できます:" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:497 msgid "The result of the rounding scheme is also worth considering. In this example, we used the ``SemideterministricRounding``. It's important to note that with semi-deterministic rounding, a single sample is generated as the result, making it the optimal solution candidate." -msgstr "" +msgstr "丸めスキームの結果も検討に値します.。この例では、 ``SemideterministricRounding`` を使用しました。ここで重要なのは、半決定論的な丸め(semi-deterministic rounding)では、結果として1つのサンプルが生成され、それが最適解候補となることです。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:499 msgid "However, if we use the ``MagicRounding`` instead, multiple samples would be generated, each with a probability associated with it. These probabilities sum up to one, providing a distribution of potential optimal solutions." -msgstr "" +msgstr "しかし、代わりに ``MagicRounding`` を使用すると、複数のサンプルが生成され、それぞれに確率が関連付けられます。これらの確率の合計は1になり、最適解候補の分布が得られます。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:546 msgid "Exact Problem Solution with the ``NumpyMinimumEigensolver``" -msgstr "" +msgstr "``NumpyMinimumEigensolver`` による問題の厳密解" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:548 msgid "To assess the performance of QRAO in approximating the optimal solution, we can utilize the ``NumpyMinimumEigensolver``, an exact classical optimizer. We can obtain the exact optimal solution to the problem as follows:" -msgstr "" +msgstr "最適解を近似するQRAOの性能を評価するために、厳密な古典的オプティマイザーである ``NumpyMinimumEigensolver`` を利用することができます。この問題の厳密最適解は次のように得られます:" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:606 msgid "The approximation ratio (QRAO's objective function value divided by the optimal objective function value) tells us how closely QRAO approximated the optimal solution to the problem." -msgstr "" +msgstr "近似比(QRAOの目的関数値を最適目的関数値で割った値)は、QRAOが問題の最適解にどれだけ近づいたかを示しています。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:660 msgid "Solve the problem using the ``QuantumRandomAccessOptimizer`` with ``MagicRounding``" -msgstr "" +msgstr "``QuantumRandomAccessOptimizer`` と ``MagicRounding`` を使って問題を解く" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:662 msgid "Magic rounding is a quantum technique employed to map the ground state results of our encoded Hamiltonian back to a solution of the original problem. Unlike semi-deterministic rounding, magic rounding requires a quantum backend, which can be either hardware or a simulator. The backend is passed to the ``MagicRounding`` class through a ``Sampler``, which also determines the total number of shots (samples) that magic rounding will utilize. Note that to specify the backend, you need to choose a ``Sampler`` from providers such as Aer or IBM Runtime. Consequently, we need to specify ``Estimator`` and ``Sampler`` for the optimizer and the rounding scheme, respectively." -msgstr "" +msgstr "Magic rounding は、符号化されたハミルトニアンの基底状態の結果を元の問題の解にマップするために採用される量子テクニックです。半決定論的丸め(semi-deterministic rounding)とは異なり、Magic rounding には量子バックエンドが必要であり、ハードウェアでもシミュレーターでもよいです。このバックエンドは ``Sampler`` を通して ``MagicRounding`` クラスに渡され、この ``Sampler`` が Magic rounding が利用するショット(サンプル)の総数を決定します。バックエンドを指定するには、AerやIBM Runtimeなどのプロバイダーから ``Sampler`` を選択する必要があることに注意してください。その結果、オプティマイザーには ``Estimator`` を、丸め方式には ``Sampler`` をそれぞれ指定する必要があります。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:665 msgid "In practice, users may choose to set a significantly higher number of magic rounding shots compared to the shots used by the minimum eigensolver for the relaxed problem. This difference arises because the minimum eigensolver estimates expectation values, while the magic rounding scheme returns the sample corresponding to the maximum function value found. The number of magic rounding shots directly impacts the diversity of the computational basis we can generate. When estimating an expectation value, increasing the number of shots enhances the convergence to the true value. However, when aiming to identify the largest possible function value, we often sample from the tail of a distribution of outcomes. As a result, until we observe the highest value outcome in our distribution, each additional shot increases the expected return value." -msgstr "" +msgstr "実際には、緩和された問題に対して最小固有値解法が使用するショット数と比較して、magic roundingのショット数を大幅に多く設定することがあります。この違いは、最小固有値ソルバーが期待値を推定するのに対して、magic rounding スキームは発見された最大関数値に対応するサンプルを返すことから生じます。magic rounding のショット数は、生成できる計算基底の多様性に直接影響します。期待値を推定する場合、ショット数を増やすと真の値への収束が向上します。しかし、可能な限り大きな関数値を特定することを目的とする場合、結果の分布の末尾からサンプリングすることがよくあります。その結果、分布の中で最高値の結果を観察するまでは、ショットを追加するごとに期待値が増加します。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:668 msgid "In this tutorial, we use the ``Estimator`` for solving the relaxed Hamiltonian and the ``Sampler`` for performing magic rounding. Here, 10 times as many shots are used in the ``Sampler``. As the number of qubits increases, you may need more shots or ``weighted`` basis sampling, as explained above.\"" -msgstr "" +msgstr "このチュートリアルでは、緩和されたハミルトニアンを解くために ``Estimator`` を使用し、magic rounding を実行するために ``Sampler`` を使用します。ここで、 ``Sampler`` では10倍のショットを使用します。量子ビット数が増加するにつれて、上記で説明したように、より多くのショットや ``weighted`` 基底サンプリングが必要になるかもしれません。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:759 msgid "Since magic rounding relies on nondeterministic measurements, the method collects a number of samples based on the shots count provided to the ``Sampler`` mentioned earlier. These samples are then consolidated, taking into account duplicates and calculating the empirical probability for each ``SolutionSample``. Each sample in the consolidation process includes a corresponding function value (``fval``)." -msgstr "" +msgstr "Magic rounding は非決定的な測定に依存するため、このメソッドは、前述の ``Sampler`` に提供されたショット数に基づいて、いくつかのサンプルを収集します。これらのサンプルは、重複を考慮して統合され、各 ``SolutionSample`` の経験確率が計算されます。連結プロセスの各サンプルには、対応する関数値 (``fval``) が含まれます。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:761 msgid "From the consolidated samples, we select the sample with the \"optimal\" function value. In the case of a max-cut problem, this means choosing the sample with the largest function value as our solution." -msgstr "" +msgstr "連結されたサンプルから、「最適な」関数値を持つサンプルを選択します。max-cut 問題の場合、これは最大の関数値を持つサンプルを解として選択することを意味します。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:843 msgid "Alternative: Solve the Problem in Two Explicit Steps" -msgstr "" +msgstr "別の方法:2つの明示的なステップで問題を解く" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:845 msgid "In the previous part of this tutorial, we utilized the ``qrao.solve()`` method, which solved the encoded problem (the ground state of the relaxed Hamiltonian) and performed rounding to map the ground state results back to a solution of the original problem. However, it is also possible to explicitly break down the calculation into these two distinct steps. This can be beneficial, especially when comparing solutions obtained across multiple rounding schemes applied to a candidate ground state." -msgstr "" +msgstr "このチュートリアルの前のパートでは、 ``qrao.solve()`` メソッドを利用し、符号化された問題(緩和ハミルトニアンの基底状態)を解き、基底状態の結果を元の問題の解に戻すために丸めを行いました。しかし、計算をこの2つの異なるステップに明確に分けることも可能です。これは、特に基底状態の候補に適用される複数の丸めスキームで得られた解を比較する場合に有益です。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:847 msgid "In this section, we will explore how to perform each of these steps explicitly." -msgstr "" +msgstr "このセクションでは、これらの各ステップを明示的に実行する方法を探ります。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:850 msgid "Manually solve the relaxed problem." -msgstr "" +msgstr "手動で緩和問題を解く" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:852 msgid "Let's start by invoking the ``qrao.solve_relaxed()`` method to directly solve the relaxed problem encoded by ``QuantumRandomAccessEncoding``. This method allows us to focus solely on solving the relaxed problem without performing rounding." -msgstr "" +msgstr "まず、 ``qrao.solve_relaxed()`` メソッドを呼び出して、 ``QuantumRandomAccessEncoding`` で符号化された緩和問題を直接解くことから始めましょう。このメソッドにより、丸めを行わずに緩和問題を解くことだけに集中することができます。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:854 msgid "By invoking ``qrao.solve_relaxed()``, we obtain two essential outputs:" -msgstr "" +msgstr "``qrao.solve_relaxed()`` を呼び出すことで、2つの重要な出力が得られます:" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:856 msgid "``MinimumEigensolverResult``: This object contains the results of running the minimum eigen optimizer such as the VQE on the relaxed problem. It provides information about the eigenvalue, and other relevant details. You can refer to the Qiskit Algorithms `documentation `__ for a comprehensive explanation of the entries within this object." -msgstr "" +msgstr "``MinimumEigensolverResult``: このオブジェクトは、緩和された問題に対してVQEなどの最小固有値オプティマイザーを実行した結果を含みます。固有値やその他の関連する詳細についての情報を提供します。このオブジェクト内の項目の包括的な説明については、Qiskit Algorithmsの `documentation `__ を参照してください。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:857 msgid "``RoundingContext``: This object encapsulates essential information about the encoding and the solution of the relaxed problem in a form that is ready for consumption by the rounding schemes." -msgstr "" +msgstr "``RoundingContext``: このオブジェクトは符号化と緩和問題の解に関する重要な情報を、丸めスキームがすぐに利用できる形でカプセル化します。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:983 msgid "Manually perform rounding on the relaxed problem results" -msgstr "" +msgstr "緩和問題の結果に対して手動で丸めを行う" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:985 msgid "Next, we proceed with rounding the results obtained from solving the relaxed problem. To achieve this, we call the ``round()`` method on an instance of the desired rounding scheme and pass it the ``RoundingContext`` object. Below, we provide an example for both rounding schemes, utilizing the relaxed solution obtained in the previous step." -msgstr "" +msgstr "次に、緩和問題を解いて得られた結果の丸めを行います。これを実現するために、希望する丸めスキームのインスタンスで ``round()`` メソッドを呼び出し、 ``RoundingContext`` オブジェクトを渡します。以下では、前のステップで得られた緩和解を使用して、両方の丸めスキームの例を示します。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:987 msgid "By manually performing the rounding step, we have more flexibility and control over the rounding scheme applied to the relaxed problem results. This allows for greater exploration and comparison of different rounding strategies." -msgstr "" +msgstr "丸めステップを手動で実行することで、緩和された問題の結果に適用される丸めスキームをより柔軟に制御することができます。これにより、様々な丸め方についてより深く検討し、比較することができます。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:1108 msgid "Appendix" -msgstr "" +msgstr "付録" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:1111 msgid "How to verify correctness of your encoding" -msgstr "" +msgstr "符号化の正しさを検証する方法" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:1113 msgid "We assume for sake of the QRAO method that **the relaxation commutes with the objective function.** This notebook demonstrates how one can verify this for any problem (a ``QuadraticProgram`` in the language of Qiskit Optimization). One might want to verify this for pedagogical purposes, or as a sanity check when investigating unexpected behavior with the QRAO. Any problem that does not commute should be considered a bug, and if such a problem is discovered, we encourage that you submit it as `an issue on GitHub `__." -msgstr "" +msgstr "QRAO法のために、 **緩和が目的関数と交換関係にあること** を仮定します。このノートブックは、どのような問題(Qiskit Optimizationの言語における ``QuadraticProgram`` )においても、この仮定を検証する方法を示しています。教育目的や、QRAOの予期せぬ動作を調査する際の整合性チェックとして、これを検証したい場合があります。もし交換関係にない場合はバグとみなされる問題であり、もしそのような問題が発見された場合は、 `GitHubにissueとして提出する `__ ことをお勧めします。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:1116 msgid "The ``EncodingCommutationVerifier`` class allows one to conveniently iterate over all decision variable states and compare each objective value with the corresponding encoded objective value, in order to identify any discrepancy." -msgstr "" +msgstr "``EncodingCommutationVerifier`` クラスを使えば、すべての決定変数の状態を繰り返し、各目的値を対応する符号化された目的値と比較し、矛盾を特定することができます。" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:1215 msgid "As before, we ``encode()`` the problem using the QuantumRandomAccessEncoding class:" -msgstr "" +msgstr "前回と同様に、QuantumRandomAccessEncoding クラスを使って問題を ``encode()`` します:" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:1284 msgid "Finally, we iterate over every decision variable state using ``EncodingCommutationVerifier`` and verify that, in each case, the problem objective value matches the encoded objective value:" -msgstr "" +msgstr "最後に、 ``EncodingCommutationVerifier`` を使ってすべての決定変数の状態を繰り返し、それぞれのケースで問題の目的値が符号化された目的値と一致することを検証します:" #: ../../tutorials/12_quantum_random_access_optimizer.ipynb:1316 msgid "If you are able to construct a problem that causes a violation, it is quite possible that you have discovered a bug in the ``QuantumRandomAccessEncoding`` logic. We would greatly appreciate it if you could share the problem with us by `submitting it as an issue `__ on GitHub." -msgstr "" +msgstr "違反が発生する問題を構築できた場合、``QuantumRandomAccessEncoding`` のロジックにバグを発見した可能性が十分にあります。その問題を GitHubに `issueとして提出する `__ ことで、私たちと共有していただけると大変ありがたいです。" diff --git a/optimization/docs/locale/ko_KR/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/ko_KR/LC_MESSAGES/tutorials/04_grover_optimizer.po index 72ac38bebcd598..c7d3fa6025ed9c 100644 --- a/optimization/docs/locale/ko_KR/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/ko_KR/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 13:07\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-08 18:26\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" @@ -71,11 +71,11 @@ msgid "While implementations of GAS vary around the specific use case, the gener msgstr "GAS의 구현은 특정 사용사례에 따라 다르지만, 일반적인 틀은 여전히 아래에 설명된 단계를 대략적으로 따른다." #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" +msgid "|6ca734fed0024015824561a78d87e967|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" +msgid "6ca734fed0024015824561a78d87e967" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:65 @@ -87,11 +87,11 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "공식적으로 말하면 ``QuadraticProgramToNegativeValueOracle`` 은 :math:`A_y` 및 :math:`O` 같은것을 구성한다." #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" +msgid "|9648e56adaa642578c061c29a05f5e8a|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" +msgid "9648e56adaa642578c061c29a05f5e8a" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:80 @@ -127,11 +127,11 @@ msgid "This results in the optimal solution :math:`x_0=1`, :math:`x_1=0`, :math: msgstr "이는 최적의 용액 :math:`x_0=1`, :math:`x_1=0`, :math:`x_2=1` 및 :math:`-6` 의 최적 목표 값을 초래한다 (대부분의 경우, 이는 랜덤화 알고리즘이기 때문이다). 다음은 이 QUBO에 적용된 ``GroverOptimizer`` 의 가능한 실행이 다음과 같다." #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" +msgid "|152c54029dff4932bf4d15c772493835|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" +msgid "152c54029dff4932bf4d15c772493835" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:267 @@ -139,11 +139,11 @@ msgid "Each graph shows a single iteration of GAS, with the current values of :m msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" +msgid "e0a7edbeeeb14dc697f5c923604f6328" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:295 diff --git a/optimization/docs/locale/ko_KR/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/ko_KR/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index 1982c692f43f98..7fc2a3cff5a6ee 100644 --- a/optimization/docs/locale/ko_KR/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/ko_KR/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:27\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 16:00\n" "Last-Translator: \n" "Language: ko\n" "Language-Team: Korean\n" @@ -78,35 +78,35 @@ msgstr "Qiskit 최적화는 Docplex 모델과 Gurobipy 모델을 통해 ``Quadra msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "먼저, Docplex 및 Gurobipy에 의한 최적화 문제를 정의한다." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "우리는 Docplex 및 Gurobipy 모델 모두에서 ``QuadraticProgram`` 객체를 생성할 수 있다. 우리는 Docplex 및 Gurobipy에서 생성된 두 개의 ``QuadraticProgram`` 객체가 동일하다는 것을 알 수 있다." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "우리는 ``QuadraticProgram`` 에서 Docplex 모델과 Gurobipy 모델을 생성할 수 있다." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "Docplex의 표시기 제한조건" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "``from_docplex_mp`` 는 ``u = 0 => x + y <= z`` (u: 바이너리 변수) 와 같은 표시기 제한조건을 지원하는데, 이는 Docplex 모델을 ``QuadraticProgram`` 로 변환할 때이다. 이는 표시기 제한조건을 big-M 공식을 사용하여 선형 제한조건으로 변환한다." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "CPLEX를 Docplex 모델 ( ``QuadraticProgram`` 로 번역하지 않음. CPLEX 해석기는 기본적으로 표시기 제한조건을 지원함) 에 직접 적용," -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "QAOA를 ``from_docplex_mp`` 로 얻은 ``QuadraticProgram`` 에 적용하는 것." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "해결책이 같다는 것을 알 수 있다." diff --git a/optimization/docs/locale/mr_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/mr_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po index 53143432dfe5dd..254a599aca0d2d 100644 --- a/optimization/docs/locale/mr_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/mr_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 13:25\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-08 18:26\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" @@ -71,11 +71,11 @@ msgid "While implementations of GAS vary around the specific use case, the gener msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" +msgid "|6ca734fed0024015824561a78d87e967|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" +msgid "6ca734fed0024015824561a78d87e967" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:65 @@ -87,11 +87,11 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" +msgid "|9648e56adaa642578c061c29a05f5e8a|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" +msgid "9648e56adaa642578c061c29a05f5e8a" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:80 @@ -127,11 +127,11 @@ msgid "This results in the optimal solution :math:`x_0=1`, :math:`x_1=0`, :math: msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" +msgid "|152c54029dff4932bf4d15c772493835|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" +msgid "152c54029dff4932bf4d15c772493835" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:267 @@ -139,11 +139,11 @@ msgid "Each graph shows a single iteration of GAS, with the current values of :m msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" +msgid "e0a7edbeeeb14dc697f5c923604f6328" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:295 diff --git a/optimization/docs/locale/mr_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/mr_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index a7088e54f70b99..c40dc974e10f15 100644 --- a/optimization/docs/locale/mr_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/mr_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:43\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 16:08\n" "Last-Translator: \n" "Language: mr\n" "Language-Team: Marathi\n" @@ -78,35 +78,35 @@ msgstr "" msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "" diff --git a/optimization/docs/locale/pl_PL/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/pl_PL/LC_MESSAGES/tutorials/04_grover_optimizer.po index eadc4ed8fc2ae2..18c8c45f354201 100644 --- a/optimization/docs/locale/pl_PL/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/pl_PL/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 13:09\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-08 18:26\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" @@ -71,11 +71,11 @@ msgid "While implementations of GAS vary around the specific use case, the gener msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" +msgid "|6ca734fed0024015824561a78d87e967|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" +msgid "6ca734fed0024015824561a78d87e967" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:65 @@ -87,11 +87,11 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" +msgid "|9648e56adaa642578c061c29a05f5e8a|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" +msgid "9648e56adaa642578c061c29a05f5e8a" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:80 @@ -127,11 +127,11 @@ msgid "This results in the optimal solution :math:`x_0=1`, :math:`x_1=0`, :math: msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" +msgid "|152c54029dff4932bf4d15c772493835|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" +msgid "152c54029dff4932bf4d15c772493835" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:267 @@ -139,11 +139,11 @@ msgid "Each graph shows a single iteration of GAS, with the current values of :m msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" +msgid "e0a7edbeeeb14dc697f5c923604f6328" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:295 diff --git a/optimization/docs/locale/pl_PL/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/pl_PL/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index 127d6fb571d2d1..e438b56aeac2da 100644 --- a/optimization/docs/locale/pl_PL/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/pl_PL/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:29\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 16:01\n" "Last-Translator: \n" "Language: pl\n" "Language-Team: Polish\n" @@ -78,35 +78,35 @@ msgstr "" msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "" diff --git a/optimization/docs/locale/pt_UN/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/pt_UN/LC_MESSAGES/tutorials/04_grover_optimizer.po index 468151ee308473..4af26de17b724f 100644 --- a/optimization/docs/locale/pt_UN/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/pt_UN/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 13:39\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-08 18:26\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" @@ -71,11 +71,11 @@ msgid "While implementations of GAS vary around the specific use case, the gener msgstr "Enquanto as implementações de GAS variam em torno de um caso de uso específico, o framework geral ainda segue livremente os passos descritos abaixo." #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" +msgid "|6ca734fed0024015824561a78d87e967|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" +msgid "6ca734fed0024015824561a78d87e967" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:65 @@ -87,11 +87,11 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "Formalmente, ``QuadraticProgramToNegativeValueOracle`` constrói um :math:`A_y` e :math:`O` tal que:" #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" +msgid "|9648e56adaa642578c061c29a05f5e8a|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" +msgid "9648e56adaa642578c061c29a05f5e8a" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:80 @@ -127,11 +127,11 @@ msgid "This results in the optimal solution :math:`x_0=1`, :math:`x_1=0`, :math: msgstr "Este resultado é a solução ótima :math:` x_0 = 1 `, :math:` x_1 = 0 `, :math:` x_2 = 1 ` e o valor objetivo de :math:` -6 ` (na maioria das vezes, considerando que é um algoritmo randomizado). Posteriormente, uma visualização customizada do estado quântico mostra uma possível execução de `` GroverOptimizer `` aplicada a este QUBO." #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" +msgid "|152c54029dff4932bf4d15c772493835|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" +msgid "152c54029dff4932bf4d15c772493835" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:267 @@ -139,11 +139,11 @@ msgid "Each graph shows a single iteration of GAS, with the current values of :m msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" +msgid "e0a7edbeeeb14dc697f5c923604f6328" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:295 diff --git a/optimization/docs/locale/pt_UN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/pt_UN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index 5dcad15b509a9f..3ee62ef4d7ec7a 100644 --- a/optimization/docs/locale/pt_UN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/pt_UN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:57\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 16:14\n" "Last-Translator: \n" "Language: pt_UN\n" "Language-Team: Portuguese (United)\n" @@ -78,35 +78,35 @@ msgstr "O Qiskit Optimization pode carregar ``QuadraticProgram`` a partir de um msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "Primeiro, definimos um problema de otimização com Docplex e Gurobipy." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "Podemos gerar um objeto ``QuadraticProgram`` a partir de ambos os modelos Docplex e Gurobipy. Vemos que os dois objetos ``QuadraticProgram`` gerados a partir de Docplex e Gurobipy são idênticos." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "Podemos gerar um modelo Docplex e um modelo Gurobipy a partir de um ``QuadraticProgram`` também." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "Restrições de indicador do Docplex" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "``from_docplex_mp`` suporta restrições de indicador, por exemplo, ``u = 0 => x + y <= z`` (u: variável binária) quando convertemos um modelos Docplex em um ``QuadraticProgram``. Ele converte restrições de indicador em restrições lineares utilizando a formulação big-M." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "aplicar o CPLEX diretamente ao modelo Docplex (sem traduzi-lo para ``QuadraticProgram``. O solucionador CPLEX suporta nativamente as restrições de indicador)," -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "aplicar QAOA ao ``QuadraticProgram`` obtido por ``from_docplex_mp``." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "Vemos que as soluções são as mesmas." diff --git a/optimization/docs/locale/ru_RU/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/ru_RU/LC_MESSAGES/tutorials/04_grover_optimizer.po index 216fe7c7e7b6c3..dd6f413df19c86 100644 --- a/optimization/docs/locale/ru_RU/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/ru_RU/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 13:12\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-08 18:26\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" @@ -71,11 +71,11 @@ msgid "While implementations of GAS vary around the specific use case, the gener msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" +msgid "|6ca734fed0024015824561a78d87e967|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" +msgid "6ca734fed0024015824561a78d87e967" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:65 @@ -87,11 +87,11 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" +msgid "|9648e56adaa642578c061c29a05f5e8a|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" +msgid "9648e56adaa642578c061c29a05f5e8a" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:80 @@ -127,11 +127,11 @@ msgid "This results in the optimal solution :math:`x_0=1`, :math:`x_1=0`, :math: msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" +msgid "|152c54029dff4932bf4d15c772493835|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" +msgid "152c54029dff4932bf4d15c772493835" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:267 @@ -139,11 +139,11 @@ msgid "Each graph shows a single iteration of GAS, with the current values of :m msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" +msgid "e0a7edbeeeb14dc697f5c923604f6328" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:295 diff --git a/optimization/docs/locale/ru_RU/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/ru_RU/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index 31e3092b8bffcd..c0999c93bcef6f 100644 --- a/optimization/docs/locale/ru_RU/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/ru_RU/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:31\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 16:02\n" "Last-Translator: \n" "Language: ru\n" "Language-Team: Russian\n" @@ -78,35 +78,35 @@ msgstr "" msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "" diff --git a/optimization/docs/locale/ta_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/ta_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po index 50e1fcf4b4860f..b14c157b7e7ce6 100644 --- a/optimization/docs/locale/ta_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/ta_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 13:23\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-08 18:26\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" @@ -71,11 +71,11 @@ msgid "While implementations of GAS vary around the specific use case, the gener msgstr "குறிப்பிட்ட பயன்பாட்டு வழக்கில் GAS இன் செயல்பாடுகள் வேறுபடுகையில், பொதுவான கட்டமைப்பு இன்னும் கீழே விவரிக்கப்பட்டுள்ள படிகளைப் பின்பற்றுகிறது." #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" +msgid "|6ca734fed0024015824561a78d87e967|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" +msgid "6ca734fed0024015824561a78d87e967" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:65 @@ -87,11 +87,11 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "முறையாகச் சொன்னால், `` QuadraticProgramToNegativeValueOracle`` ஆனது :math:`A_y`மற்றும் :math:`O` ஐ உருவாக்குகிறது அதுபோல்:" #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" +msgid "|9648e56adaa642578c061c29a05f5e8a|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" +msgid "9648e56adaa642578c061c29a05f5e8a" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:80 @@ -127,11 +127,11 @@ msgid "This results in the optimal solution :math:`x_0=1`, :math:`x_1=0`, :math: msgstr "இது உகந்த தீர்வில் விளைகிறது:math: `x_0 = 1` ,:math:` x_1 = 0` ,:math: `x_2 = 1` மற்றும் உகந்த புறநிலை மதிப்பு :math:` -6` (பெரும்பாலான நேரம் , இது ஒரு சீரற்ற வழிமுறை என்பதால்). பின்வருவனவற்றில், குவாண்டம் நிலையின் தனிப்பயன் காட்சிப்படுத்தல் இந்த QUBO க்குப் பயன்படுத்தப்படும் ``GroverOptimizer`` இன் சாத்தியமான ஓட்டத்தைக் காட்டுகிறது." #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" +msgid "|152c54029dff4932bf4d15c772493835|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" +msgid "152c54029dff4932bf4d15c772493835" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:267 @@ -139,11 +139,11 @@ msgid "Each graph shows a single iteration of GAS, with the current values of :m msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" +msgid "e0a7edbeeeb14dc697f5c923604f6328" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:295 diff --git a/optimization/docs/locale/ta_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/ta_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index 5ad1c00b265b3e..ab770c6da770ca 100644 --- a/optimization/docs/locale/ta_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/ta_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:41\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 16:07\n" "Last-Translator: \n" "Language: ta\n" "Language-Team: Tamil\n" @@ -78,35 +78,35 @@ msgstr "Qiskit உகப்பாக்கம் ``QuadraticProgram`` ஒரு msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "முதலில், டாக்பலெக்ஸ் மற்றும் குரோபிபை மூலம் ஒரு தேர்வுமுறை சிக்கலை நாங்கள் வரையறுக்கிறோம்." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "டாக்பலெக்ஸ் மற்றும் குரோபிபை மாதிரிகள் இரண்டிலிருந்தும் நாம் ``QuadraticProgram`` பொருளை உருவாக்கலாம். டாக்பலெக்ஸ் மற்றும் குரோபிபை இலிருந்து உருவாக்கப்பட்ட இரண்டு ``QuadraticProgram`` பொருள்கள் ஒரே மாதிரியாக இருப்பதைக் காண்கிறோம்." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "நாம் ஒரு டாக்பலெக்ஸ் மாதிரி மற்றும் ஒரு குரோபிபை மாதிரியை உருவாக்கலாம் ``QuadraticProgram`` too." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "டாக்பலெக்ஸ் இன் காட்டி கட்டுப்பாடுகள்" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "``from_docplex_mp`` காட்டி கட்டுப்பாடுகளை ஆதரிக்கிறது, e.g., ``u = 0 => x + y <= z`` (u: பைனரி மாறி) நாம் ஒரு டாக்பலெக்ஸ் மாதிரியாக மாற்றும் போது ``QuadraticProgram``.இது big-M சூத்திரத்தைப் பயன்படுத்தி காட்டி தடைகளை நேரியல் தடைகளாக மாற்றுகிறது." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "cPLEX ஐ நேரடியாக Docplex மாடலுக்குப் பயன்படுத்துதல் (இதை மொழிபெயர்க்காமல் ``QuadraticProgram``. CPLEX கரைப்பான் சொந்தமாக காட்டி கட்டுப்பாடுகளை ஆதரிக்கிறது)," -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "qAOA ஐப் பயன்படுத்துதல் ``QuadraticProgram`` மூலம் பெறப்பட்டது ``from_docplex_mp``." -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "நாங்கள் தீர்வுகள் ஒரே மாதிரியாக இருப்பதை காண்கிறோம்." diff --git a/optimization/docs/locale/te_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/te_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po index 36cbd8cdbf387d..cb1857f50cf03b 100644 --- a/optimization/docs/locale/te_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/te_IN/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 13:32\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-08 18:26\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" @@ -71,11 +71,11 @@ msgid "While implementations of GAS vary around the specific use case, the gener msgstr "నిర్దిష్ట వినియోగ సందర్భంలో GAS ఇంప్లిమెంటేషన్లు మారుతూ ఉండగా, సాధారణ ఫ్రేమ్‌వర్క్ ఇప్పటికే క్రింద వివరించిన దశలను అనుసరిస్తుంది." #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" +msgid "|6ca734fed0024015824561a78d87e967|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" +msgid "6ca734fed0024015824561a78d87e967" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:65 @@ -87,11 +87,11 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "అధికారికంగా చెప్పాలంటే, ``QuadraticProgram ToNegativeValue Oracle`` ఒక :math:`A_y` మరియు :math:`O`ని నిర్మిస్తుంది:" #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" +msgid "|9648e56adaa642578c061c29a05f5e8a|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" +msgid "9648e56adaa642578c061c29a05f5e8a" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:80 @@ -128,11 +128,11 @@ msgstr "దీని వలన సరైన పరిష్కారం :math:`x "). కింది వాటిలో, క్వాంటం స్టేట్ యొక్క అనుకూల విజువలైజేషన్ ఈ QUBOకి వర్తింపజేయబడిన ``GroverOptimizer`` యొక్క సాధ్యమైన రన్ను చూపుతుంది." #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" +msgid "|152c54029dff4932bf4d15c772493835|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" +msgid "152c54029dff4932bf4d15c772493835" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:267 @@ -140,11 +140,11 @@ msgid "Each graph shows a single iteration of GAS, with the current values of :m msgstr "ప్రతి గ్రాఫ్ టైటిల్‌లో చూపిన :math:`r` (= పునరుక్తి కౌంటర్) మరియు :math:`y` (= థ్రెషోల్డ్/ఆఫ్‌సెట్) ప్రస్తుత విలువలతో GAS యొక్క ఒకే పునరావృతాన్ని చూపుతుంది. X-axis ఇన్‌పుట్‌కు సమానమైన integer ని ప్రదర్శిస్తుంది (ఉదా. '101' :math:`\\rightarrow` 5), మరియు Y-axis సాధ్యమయ్యే ఫంక్షన్ విలువలను చూపుతుంది. 3 బైనరీ వేరియబుల్స్ ఉన్నందున, :math:`2^3=8` సాధ్యమయ్యే పరిష్కారాలు ఉన్నాయి, ఇవి ప్రతి గ్రాఫ్‌లో చూపబడతాయి. రంగు తీవ్రత నిర్దిష్ట ఫలితాన్ని కొలిచే సంభావ్యతను సూచిస్తుంది (ప్రకాశవంతమైన తీవ్రతతో అత్యధికంగా ఉంటుంది), అయితే వాస్తవ రంగు సంబంధిత ఫేస్ను సూచిస్తుంది (క్రింద ఫేస్ color-wheelని చూడండి). :math:`y` తగ్గినప్పుడు, మేము అన్ని విలువలను ఆ మొత్తంతో పైకి మారుస్తాము, అంటే పంపిణీలో తక్కువ మరియు తక్కువ ప్రతికూల విలువలు మాత్రమే మిగిలి ఉండే వరకు (కనీసం) ఉంటాయి." #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" +msgid "e0a7edbeeeb14dc697f5c923604f6328" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:295 diff --git a/optimization/docs/locale/te_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/te_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index e5109c094b74f4..89d0d4176301bd 100644 --- a/optimization/docs/locale/te_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/te_IN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:50\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 16:11\n" "Last-Translator: \n" "Language: te\n" "Language-Team: Telugu\n" @@ -78,35 +78,35 @@ msgstr "" msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "" diff --git a/optimization/docs/locale/th_TH/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/th_TH/LC_MESSAGES/tutorials/04_grover_optimizer.po index c6053c58c6e8b8..80086ba814a51a 100644 --- a/optimization/docs/locale/th_TH/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/th_TH/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 13:28\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-08 18:26\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" @@ -72,11 +72,11 @@ msgid "While implementations of GAS vary around the specific use case, the gener msgstr "วิธีการใช้งาน GAS จะแตกต่างกันไปแล้วแต่โจทย์ปัญหาของเรา โดยเฟรมเวิร์กของขั้นตอนการนำไปใช้งานอธิบายไว้อย่างคร่าว ๆ ดังนี้" #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" +msgid "|6ca734fed0024015824561a78d87e967|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" +msgid "6ca734fed0024015824561a78d87e967" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:65 @@ -88,11 +88,11 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "นำ ``QuadraticProgramToNegativeValueOracle`` มาเขียนเป็น :math:`A_y` และ :math:`O` ได้:" #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" +msgid "|9648e56adaa642578c061c29a05f5e8a|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" +msgid "9648e56adaa642578c061c29a05f5e8a" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:80 @@ -128,11 +128,11 @@ msgid "This results in the optimal solution :math:`x_0=1`, :math:`x_1=0`, :math: msgstr "ผลลัพธ์ที่ดีที่สุดที่ได้เป็น :math:`x_0=1`, :math:`x_1=0`, :math:`x_2=1` และ ค่าที่ดีที่สุดของฟังก์ชันวัตถุประสงค์คือ :math:`-6` (ดีที่สุดในการทำงานครั้งนี้ เนื่องจากเป็นการทำงานแบบสุ่ม) ในส่วนถัดไปภาพแสดงของสถานะทางควอนตัมแสดงให้เห็นถึงผลลัพธ์ที่เป็นไปได้จากการทำงานของ ``GroverOptimizer`` เมื่อใช้งานกับ QUBO นี้" #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" +msgid "|152c54029dff4932bf4d15c772493835|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" +msgid "152c54029dff4932bf4d15c772493835" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:267 @@ -140,11 +140,11 @@ msgid "Each graph shows a single iteration of GAS, with the current values of :m msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" +msgid "e0a7edbeeeb14dc697f5c923604f6328" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:295 diff --git a/optimization/docs/locale/th_TH/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/th_TH/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index b3777dcb4466b9..efa84ea193878d 100644 --- a/optimization/docs/locale/th_TH/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/th_TH/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:45\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 16:09\n" "Last-Translator: \n" "Language: th\n" "Language-Team: Thai\n" @@ -78,35 +78,35 @@ msgstr "" msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "" diff --git a/optimization/docs/locale/tr_TR/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/tr_TR/LC_MESSAGES/tutorials/04_grover_optimizer.po index 4f5a86226ec9da..afe568d971837d 100644 --- a/optimization/docs/locale/tr_TR/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/tr_TR/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 13:15\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-08 18:26\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" @@ -72,11 +72,11 @@ msgstr "Grover Adaptive Search'ün uygulamaları özel kullanım örneğine gör "genel çerçevede aşağıda açıklanan adımları hâlâ üstünkörü bir şekilde takip etmektedir." #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" +msgid "|6ca734fed0024015824561a78d87e967|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" +msgid "6ca734fed0024015824561a78d87e967" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:65 @@ -88,11 +88,11 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "Resmi olarak ``QuadraticProgramToNegativeValueOracle``, bir :math:`A_y` ve :math:`O` oluşturur, öyle ki:" #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" +msgid "|9648e56adaa642578c061c29a05f5e8a|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" +msgid "9648e56adaa642578c061c29a05f5e8a" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:80 @@ -128,11 +128,11 @@ msgid "This results in the optimal solution :math:`x_0=1`, :math:`x_1=0`, :math: msgstr "En uygun çözüm :math:`x_0=1`, :math:`x_1=0`, :math:`x_2=1` ve en iyi objektif değeri :math:`-6` ile sonuçlanır (çoğu zaman, rastgele bir algoritma olduğu için). İlerleyen yerde bir kuantum durumunun özel görselleştirimi, bu QUBO'ya uygulanan ``GroverOptimizer`` için olası bir çalıştırılış gösterir." #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" +msgid "|152c54029dff4932bf4d15c772493835|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" +msgid "152c54029dff4932bf4d15c772493835" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:267 @@ -140,11 +140,11 @@ msgid "Each graph shows a single iteration of GAS, with the current values of :m msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" +msgid "e0a7edbeeeb14dc697f5c923604f6328" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:295 diff --git a/optimization/docs/locale/tr_TR/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/tr_TR/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index b8a413c800bcaa..f5a0e12020be51 100644 --- a/optimization/docs/locale/tr_TR/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/tr_TR/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:33\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 16:03\n" "Last-Translator: \n" "Language: tr\n" "Language-Team: Turkish\n" @@ -78,35 +78,35 @@ msgstr "" msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "" diff --git a/optimization/docs/locale/zh_CN/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/zh_CN/LC_MESSAGES/tutorials/04_grover_optimizer.po index 0aede12fdc0d75..28e5e176b91e19 100644 --- a/optimization/docs/locale/zh_CN/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/zh_CN/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 13:17\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-08 18:26\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" @@ -71,11 +71,11 @@ msgid "While implementations of GAS vary around the specific use case, the gener msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" +msgid "|6ca734fed0024015824561a78d87e967|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" +msgid "6ca734fed0024015824561a78d87e967" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:65 @@ -87,11 +87,11 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" +msgid "|9648e56adaa642578c061c29a05f5e8a|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" +msgid "9648e56adaa642578c061c29a05f5e8a" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:80 @@ -127,11 +127,11 @@ msgid "This results in the optimal solution :math:`x_0=1`, :math:`x_1=0`, :math: msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" +msgid "|152c54029dff4932bf4d15c772493835|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" +msgid "152c54029dff4932bf4d15c772493835" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:267 @@ -139,11 +139,11 @@ msgid "Each graph shows a single iteration of GAS, with the current values of :m msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" +msgid "e0a7edbeeeb14dc697f5c923604f6328" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:295 diff --git a/optimization/docs/locale/zh_CN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/zh_CN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index 1ec93048d40828..86c6ab7413547d 100644 --- a/optimization/docs/locale/zh_CN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/zh_CN/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:36\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 16:05\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Simplified\n" @@ -78,35 +78,35 @@ msgstr "" msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "" diff --git a/optimization/docs/locale/zh_TW/LC_MESSAGES/tutorials/04_grover_optimizer.po b/optimization/docs/locale/zh_TW/LC_MESSAGES/tutorials/04_grover_optimizer.po index a6edd3b37721b5..dd25cc3cc96298 100644 --- a/optimization/docs/locale/zh_TW/LC_MESSAGES/tutorials/04_grover_optimizer.po +++ b/optimization/docs/locale/zh_TW/LC_MESSAGES/tutorials/04_grover_optimizer.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-29 12:44+0000\n" -"PO-Revision-Date: 2023-11-29 13:20\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-08 18:26\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" @@ -71,11 +71,11 @@ msgid "While implementations of GAS vary around the specific use case, the gener msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:59 -msgid "|3bae244020e549dda02ade8b902f151c|" +msgid "|6ca734fed0024015824561a78d87e967|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:84 -msgid "3bae244020e549dda02ade8b902f151c" +msgid "6ca734fed0024015824561a78d87e967" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:65 @@ -87,11 +87,11 @@ msgid "Put formally, ``QuadraticProgramToNegativeValueOracle`` constructs an :ma msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:74 -msgid "|f1f9516c3cfd45f787a4ab9d9284500f|" +msgid "|9648e56adaa642578c061c29a05f5e8a|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:87 -msgid "f1f9516c3cfd45f787a4ab9d9284500f" +msgid "9648e56adaa642578c061c29a05f5e8a" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:80 @@ -127,11 +127,11 @@ msgid "This results in the optimal solution :math:`x_0=1`, :math:`x_1=0`, :math: msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:261 -msgid "|fb2107da349640ae92629d5116930953|" +msgid "|152c54029dff4932bf4d15c772493835|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:280 -msgid "fb2107da349640ae92629d5116930953" +msgid "152c54029dff4932bf4d15c772493835" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:267 @@ -139,11 +139,11 @@ msgid "Each graph shows a single iteration of GAS, with the current values of :m msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:274 -msgid "|9088fd9de6dd47b1ac9209add95975dc|" +msgid "|e0a7edbeeeb14dc697f5c923604f6328|" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:283 -msgid "9088fd9de6dd47b1ac9209add95975dc" +msgid "e0a7edbeeeb14dc697f5c923604f6328" msgstr "" #: ../../tutorials/04_grover_optimizer.ipynb:295 diff --git a/optimization/docs/locale/zh_TW/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po b/optimization/docs/locale/zh_TW/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po index 3747e61c5bce10..f242bbcecd6941 100644 --- a/optimization/docs/locale/zh_TW/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po +++ b/optimization/docs/locale/zh_TW/LC_MESSAGES/tutorials/11_using_classical_optimization_solvers_and_models.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: qiskit-docs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-14 08:10+0000\n" -"PO-Revision-Date: 2023-11-14 08:38\n" +"POT-Creation-Date: 2023-12-08 18:20+0000\n" +"PO-Revision-Date: 2023-12-12 16:06\n" "Last-Translator: \n" "Language: zh\n" "Language-Team: Chinese Traditional\n" @@ -78,35 +78,35 @@ msgstr "Qiskit Optimization可以從 Daplex 模型和 Gurobiby 模型載入 ``Qu msgid "First, we define an optimization problem by Docplex and Gurobipy." msgstr "首先,我們定義了 Dockplex 和 Gurobipy的最佳化問題。" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:546 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:572 msgid "We can generate ``QuadraticProgram`` object from both Docplex and Gurobipy models. We see that the two ``QuadraticProgram`` objects generated from Docplex and Gurobipy are identical." msgstr "我們可以從 Docplex 和 Gurobipy 模型產生 ``QuadricProgram`` 物件。 我們可以觀察到從 Dockplex 和 Gurobipy 產生的兩個 ``QuadricProgram`` 物件是相同的。" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:695 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:721 msgid "We can generate a Docplex model and a Gurobipy model from ``QuadraticProgram`` too." msgstr "我們可以從 ``QuadraticProgram`` 中產生 Doclex 模型和Gurobiby 模型。" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:845 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:883 msgid "Indicator constraints of Docplex" msgstr "Docplex 的指示變量約束" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:847 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:885 msgid "``from_docplex_mp`` supports indicator constraints, e.g., ``u = 0 => x + y <= z`` (u: binary variable) when we convert a Docplex model into ``QuadraticProgram``. It converts indicator constraints into linear constraints using the big-M formulation." msgstr "當我們將 Dockplex 模型轉換為``QuadricProgram`` 時,``from_docplex_mp`` 支援指示變量約束,例如 ``u = 0 => x + y <= z``(u: 二進制的變數)。此會使用大M法將指示變量約束轉換成線性約束。" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:958 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:996 msgid "Let's compare the solutions of the model with an indicator constraint by" msgstr "" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:960 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:998 msgid "applying CPLEX directly to the Docplex model (without translating it to ``QuadraticProgram``. CPLEX solver natively supports the indicator constraints)," msgstr "將 CPLEX 直接套用至Docplex模型 (不將它轉換為 ``QuadraticProgram``。 CPLEX 解算器自然地支援指示變量約束)," -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:961 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:999 msgid "applying QAOA to ``QuadraticProgram`` obtained by ``from_docplex_mp``." msgstr "將 QAOA 套用至 ``from_docplex_mp`` 所取得的 ` ` QuadraticProgram`` 。" -#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:963 +#: ../../tutorials/11_using_classical_optimization_solvers_and_models.ipynb:1001 msgid "We see the solutions are same." msgstr "我們可以觀察到的解都是一樣的。"