├── .github ├── ISSUE_TEMPLATE │ ├── add-new-language.md │ └── other.md ├── pull_request_template.md └── workflows │ ├── main-ML.yml │ ├── main-finance.yml │ ├── main-nature.yml │ ├── main-optimization.yml │ └── staging-apps-workflow.yml ├── .gitignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── LOCALIZATION_CONTRIBUTORS ├── README.md ├── badges.md ├── crowdin.yml ├── finance ├── README.md ├── docs │ └── locale │ │ ├── bn_BN │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ └── 11_time_series.po │ │ ├── de_DE │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ └── 11_time_series.po │ │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ ├── 11_time_series.po │ │ │ └── index.po │ │ ├── es_UN │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ └── 11_time_series.po │ │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ └── 11_time_series.po │ │ ├── gu_IN │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── sphinx.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ ├── 11_time_series.po │ │ │ └── index.po │ │ ├── hi_IN │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ └── 11_time_series.po │ │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ └── 11_time_series.po │ │ ├── ko_KR │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ └── 11_time_series.po │ │ ├── mr_IN │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── sphinx.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ ├── 11_time_series.po │ │ │ └── index.po │ │ ├── pl_PL │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ └── 11_time_series.po │ │ ├── pt_UN │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── sphinx.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ ├── 11_time_series.po │ │ │ └── index.po │ │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ └── 11_time_series.po │ │ ├── ta_IN │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ └── 11_time_series.po │ │ ├── te_IN │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ ├── 11_time_series.po │ │ │ └── index.po │ │ ├── th_TH │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── sphinx.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ ├── 11_time_series.po │ │ │ └── index.po │ │ ├── tr_TR │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ └── 11_time_series.po │ │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 00_amplitude_estimation.po │ │ │ ├── 01_portfolio_optimization.po │ │ │ ├── 02_portfolio_diversification.po │ │ │ ├── 03_european_call_option_pricing.po │ │ │ ├── 04_european_put_option_pricing.po │ │ │ ├── 05_bull_spread_pricing.po │ │ │ ├── 06_basket_option_pricing.po │ │ │ ├── 07_asian_barrier_spread_pricing.po │ │ │ ├── 08_fixed_income_pricing.po │ │ │ ├── 09_credit_risk_analysis.po │ │ │ ├── 10_qgan_option_pricing.po │ │ │ └── 11_time_series.po │ │ └── zh_TW │ │ └── LC_MESSAGES │ │ ├── apidocs.po │ │ ├── getting_started.po │ │ ├── index.po │ │ ├── release_notes.po │ │ ├── sphinx.po │ │ ├── stubs.po │ │ ├── tutorials.po │ │ └── tutorials │ │ ├── 00_amplitude_estimation.po │ │ ├── 01_portfolio_optimization.po │ │ ├── 02_portfolio_diversification.po │ │ ├── 03_european_call_option_pricing.po │ │ ├── 04_european_put_option_pricing.po │ │ ├── 05_bull_spread_pricing.po │ │ ├── 06_basket_option_pricing.po │ │ ├── 07_asian_barrier_spread_pricing.po │ │ ├── 08_fixed_income_pricing.po │ │ ├── 09_credit_risk_analysis.po │ │ ├── 10_qgan_option_pricing.po │ │ └── 11_time_series.po ├── qiskit_finance │ └── VERSION.txt ├── requirements-dev.txt ├── requirements.txt └── setup.py ├── images └── image_send_request_in_crowdin.png ├── machine-learning ├── README.md ├── docs │ └── locale │ │ ├── bn_BN │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading models.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ ├── de_DE │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading models.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ ├── es_UN │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading models.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading models.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ ├── gu_IN │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ ├── hi_IN │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading models.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading models.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ ├── ko_KR │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading models.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ ├── mr_IN │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading models.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ ├── pl_PL │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading models.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ ├── pt_UN │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading models.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading models.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ ├── ta_IN │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading models.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ ├── te_IN │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ ├── th_TH │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading models.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ ├── tr_TR │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading models.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_neural_networks.po │ │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ │ ├── 03_quantum_kernel.po │ │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ │ ├── 04_torch_qgan.po │ │ │ ├── 05_torch_connector.po │ │ │ ├── 06_torch_runtime.po │ │ │ ├── 07_pegasos_qsvc.po │ │ │ ├── 08_quantum_kernel_trainer.po │ │ │ ├── 09_saving_and_loading models.po │ │ │ ├── 09_saving_and_loading_models.po │ │ │ ├── 10_effective_dimension.po │ │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ │ ├── 12_quantum_autoencoder.po │ │ │ └── index.po │ │ └── zh_TW │ │ └── LC_MESSAGES │ │ ├── getting_started.po │ │ ├── index.po │ │ ├── migration │ │ ├── 01_migration_guide_0.5.po │ │ └── index.po │ │ ├── sphinx.po │ │ ├── tutorials.po │ │ └── tutorials │ │ ├── 01_neural_networks.po │ │ ├── 02_neural_network_classifier_and_regressor.po │ │ ├── 02a_training_a_quantum_model_on_a_real_dataset.po │ │ ├── 03_quantum_kernel.po │ │ ├── 04_qgans_for_loading_random_distributions.po │ │ ├── 04_torch_qgan.po │ │ ├── 05_torch_connector.po │ │ ├── 06_torch_runtime.po │ │ ├── 07_pegasos_qsvc.po │ │ ├── 08_quantum_kernel_trainer.po │ │ ├── 09_saving_and_loading models.po │ │ ├── 09_saving_and_loading_models.po │ │ ├── 10_effective_dimension.po │ │ ├── 11_quantum_convolutional_neural_networks.po │ │ ├── 12_quantum_autoencoder.po │ │ └── index.po ├── qiskit_machine_learning │ └── VERSION.txt ├── requirements-dev.txt ├── requirements.txt └── setup.py ├── nature ├── README.md ├── constraints.txt ├── docs │ └── locale │ │ ├── bn_BN │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_Sampling_potential_energy_surfaces.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_calculating_thermodynamic_observables.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_property_framework.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_Protein_Folding.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ ├── de_DE │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_Sampling_potential_energy_surfaces.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_calculating_thermodynamic_observables.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_property_framework.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_Protein_Folding.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ ├── es_UN │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_Sampling_potential_energy_surfaces.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_calculating_thermodynamic_observables.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_property_framework.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_Protein_Folding.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_Sampling_potential_energy_surfaces.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_calculating_thermodynamic_observables.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_property_framework.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_Protein_Folding.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ ├── gu_IN │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ ├── hi_IN │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_Sampling_potential_energy_surfaces.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_calculating_thermodynamic_observables.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_property_framework.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_Protein_Folding.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_Sampling_potential_energy_surfaces.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_calculating_thermodynamic_observables.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_property_framework.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_Protein_Folding.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ ├── ko_KR │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_Sampling_potential_energy_surfaces.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_calculating_thermodynamic_observables.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_property_framework.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_Protein_Folding.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ ├── mr_IN │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_Sampling_potential_energy_surfaces.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_calculating_thermodynamic_observables.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_property_framework.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_Protein_Folding.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ ├── pl_PL │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_Sampling_potential_energy_surfaces.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_calculating_thermodynamic_observables.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_property_framework.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_Protein_Folding.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ ├── pt_UN │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_Sampling_potential_energy_surfaces.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_calculating_thermodynamic_observables.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_property_framework.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_Protein_Folding.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_Sampling_potential_energy_surfaces.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_calculating_thermodynamic_observables.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_property_framework.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_Protein_Folding.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ ├── ta_IN │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_Sampling_potential_energy_surfaces.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_calculating_thermodynamic_observables.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_property_framework.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_Protein_Folding.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ ├── te_IN │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ ├── th_TH │ │ └── LC_MESSAGES │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_Sampling_potential_energy_surfaces.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_calculating_thermodynamic_observables.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_property_framework.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_Protein_Folding.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ ├── tr_TR │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_Sampling_potential_energy_surfaces.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_calculating_thermodynamic_observables.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_property_framework.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_Protein_Folding.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── getting_started.po │ │ │ ├── howtos │ │ │ ├── adapt_vqe.po │ │ │ ├── index.po │ │ │ ├── numpy_eigensolver.po │ │ │ ├── numpy_minimum_eigensolver.po │ │ │ ├── vqe_ucc.po │ │ │ └── vqe_uvcc.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 0.5_a_intro.po │ │ │ ├── 0.5_b_solving_problems.po │ │ │ ├── 0.5_c_electronic_structure.po │ │ │ ├── 0.5_d_vibrational_structure.po │ │ │ ├── 0.5_e_lattice_models.po │ │ │ ├── 0.5_f_protein_folding.po │ │ │ ├── 0.6_a_intro.po │ │ │ ├── 0.6_b_mes_factory.po │ │ │ ├── 0.6_c_qubit_converter.po │ │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_electronic_structure.po │ │ │ ├── 02_vibrational_structure.po │ │ │ ├── 03_ground_state_solvers.po │ │ │ ├── 04_excited_states_solvers.po │ │ │ ├── 05_Sampling_potential_energy_surfaces.po │ │ │ ├── 05_problem_transformers.po │ │ │ ├── 06_calculating_thermodynamic_observables.po │ │ │ ├── 06_qubit_mappers.po │ │ │ ├── 07_leveraging_qiskit_runtime.po │ │ │ ├── 08_property_framework.po │ │ │ ├── 08_qcschema.po │ │ │ ├── 09_Protein_Folding.po │ │ │ ├── 09_properties.po │ │ │ ├── 10_lattice_models.po │ │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ │ ├── 12_deuteron_binding_energy.po │ │ │ └── index.po │ │ └── zh_TW │ │ └── LC_MESSAGES │ │ ├── apidocs.po │ │ ├── getting_started.po │ │ ├── howtos │ │ ├── adapt_vqe.po │ │ ├── index.po │ │ ├── numpy_eigensolver.po │ │ ├── numpy_minimum_eigensolver.po │ │ ├── vqe_ucc.po │ │ └── vqe_uvcc.po │ │ ├── index.po │ │ ├── migration │ │ ├── 0.5_a_intro.po │ │ ├── 0.5_b_solving_problems.po │ │ ├── 0.5_c_electronic_structure.po │ │ ├── 0.5_d_vibrational_structure.po │ │ ├── 0.5_e_lattice_models.po │ │ ├── 0.5_f_protein_folding.po │ │ ├── 0.6_a_intro.po │ │ ├── 0.6_b_mes_factory.po │ │ ├── 0.6_c_qubit_converter.po │ │ ├── 00_Migration_Guide_to_v0.5.po │ │ ├── 00a_Solving_problems_with_v0.5.po │ │ ├── 00b_Electronic_structure_with_v0.5.po │ │ ├── 00c_Vibrational_structure_with_v0.5.po │ │ ├── 00d_Lattice_models_with_v0.5.po │ │ ├── 00e_Protein_folding_with_v0.5.po │ │ └── index.po │ │ ├── release_notes.po │ │ ├── sphinx.po │ │ ├── stubs.po │ │ ├── tutorials.po │ │ └── tutorials │ │ ├── 01_electronic_structure.po │ │ ├── 02_vibrational_structure.po │ │ ├── 03_ground_state_solvers.po │ │ ├── 04_excited_states_solvers.po │ │ ├── 05_Sampling_potential_energy_surfaces.po │ │ ├── 05_problem_transformers.po │ │ ├── 06_calculating_thermodynamic_observables.po │ │ ├── 06_qubit_mappers.po │ │ ├── 07_leveraging_qiskit_runtime.po │ │ ├── 08_property_framework.po │ │ ├── 08_qcschema.po │ │ ├── 09_Protein_Folding.po │ │ ├── 09_properties.po │ │ ├── 10_lattice_models.po │ │ ├── 11_quadratic_hamiltonian_and_slater_determinants.po │ │ ├── 12_deuteron_binding_energy.po │ │ └── index.po ├── qiskit_nature │ └── VERSION.txt ├── requirements-dev.txt ├── requirements.txt └── setup.py ├── optimization ├── README.md ├── docs │ └── locale │ │ ├── bn_BN │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ ├── de_DE │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ ├── es_UN │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ ├── gu_IN │ │ └── LC_MESSAGES │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ ├── hi_IN │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ ├── ko_KR │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ ├── mr_IN │ │ └── LC_MESSAGES │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ ├── pl_PL │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ ├── pt_UN │ │ └── LC_MESSAGES │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ ├── ta_IN │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ ├── te_IN │ │ └── LC_MESSAGES │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ ├── th_TH │ │ └── LC_MESSAGES │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ ├── sphinx.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ ├── tr_TR │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ ├── apidocs.po │ │ │ ├── explanations │ │ │ ├── index.po │ │ │ └── qrao.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ ├── migration │ │ │ ├── 01_migration_guide_to_v0.5.po │ │ │ ├── 02_migration_guide_to_v0.6.po │ │ │ └── index.po │ │ │ ├── release_notes.po │ │ │ ├── sphinx.po │ │ │ ├── stubs.po │ │ │ ├── tutorials.po │ │ │ └── tutorials │ │ │ ├── 01_quadratic_program.po │ │ │ ├── 02_converters_for_quadratic_programs.po │ │ │ ├── 03_minimum_eigen_optimizer.po │ │ │ ├── 04_grover_optimizer.po │ │ │ ├── 05_admm_optimizer.po │ │ │ ├── 06_examples_max_cut_and_tsp.po │ │ │ ├── 07_examples_vehicle_routing.po │ │ │ ├── 08_cvar_optimization.po │ │ │ ├── 09_application_classes.po │ │ │ ├── 10_warm_start_qaoa.po │ │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ │ ├── 12_qaoa_runtime.po │ │ │ ├── 12_quantum_random_access_optimizer.po │ │ │ └── index.po │ │ └── zh_TW │ │ └── LC_MESSAGES │ │ ├── apidocs.po │ │ ├── explanations │ │ ├── index.po │ │ └── qrao.po │ │ ├── getting_started.po │ │ ├── index.po │ │ ├── migration │ │ ├── 01_migration_guide_to_v0.5.po │ │ ├── 02_migration_guide_to_v0.6.po │ │ └── index.po │ │ ├── release_notes.po │ │ ├── sphinx.po │ │ ├── stubs.po │ │ ├── tutorials.po │ │ └── tutorials │ │ ├── 01_quadratic_program.po │ │ ├── 02_converters_for_quadratic_programs.po │ │ ├── 03_minimum_eigen_optimizer.po │ │ ├── 04_grover_optimizer.po │ │ ├── 05_admm_optimizer.po │ │ ├── 06_examples_max_cut_and_tsp.po │ │ ├── 07_examples_vehicle_routing.po │ │ ├── 08_cvar_optimization.po │ │ ├── 09_application_classes.po │ │ ├── 10_warm_start_qaoa.po │ │ ├── 11_using_classical_optimization_solvers_and_models.po │ │ ├── 12_qaoa_runtime.po │ │ ├── 12_quantum_random_access_optimizer.po │ │ └── index.po ├── qiskit_optimization │ └── VERSION.txt ├── requirements-dev.txt ├── requirements.txt └── setup.py ├── reference ├── Onboarding Guide 2022.pdf └── getting-started-crowdin.pdf └── tools ├── deploy_ML_translated_documentation.sh ├── deploy_finance_translated_documentation.sh ├── deploy_nature_translated_documentation.sh ├── deploy_optimization_translated_documentation.sh ├── rclone.conf.enc ├── staging_ML_translated_documentation.sh ├── staging_finance_translated_documentation.sh ├── staging_nature_translated_documentation.sh └── staging_optimization_translated_documentation.sh /.github/ISSUE_TEMPLATE/add-new-language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/.github/ISSUE_TEMPLATE/add-new-language.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/main-ML.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/.github/workflows/main-ML.yml -------------------------------------------------------------------------------- /.github/workflows/main-finance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/.github/workflows/main-finance.yml -------------------------------------------------------------------------------- /.github/workflows/main-nature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/.github/workflows/main-nature.yml -------------------------------------------------------------------------------- /.github/workflows/main-optimization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/.github/workflows/main-optimization.yml -------------------------------------------------------------------------------- /.github/workflows/staging-apps-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/.github/workflows/staging-apps-workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | /LOCALIZATION_CONTRIBUTORS @veenaiyuri @SooluThomas @0sophy1 @clausia 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LOCALIZATION_CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/LOCALIZATION_CONTRIBUTORS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/README.md -------------------------------------------------------------------------------- /badges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/badges.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/crowdin.yml -------------------------------------------------------------------------------- /finance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/README.md -------------------------------------------------------------------------------- /finance/docs/locale/bn_BN/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/bn_BN/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /finance/docs/locale/bn_BN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/bn_BN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/bn_BN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/bn_BN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/bn_BN/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/bn_BN/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /finance/docs/locale/bn_BN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/bn_BN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /finance/docs/locale/bn_BN/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/bn_BN/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /finance/docs/locale/bn_BN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/bn_BN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /finance/docs/locale/bn_BN/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/bn_BN/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/de_DE/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/de_DE/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /finance/docs/locale/de_DE/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/de_DE/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/de_DE/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/de_DE/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/de_DE/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/de_DE/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /finance/docs/locale/de_DE/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/de_DE/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /finance/docs/locale/de_DE/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/de_DE/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /finance/docs/locale/de_DE/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/de_DE/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /finance/docs/locale/de_DE/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/de_DE/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/en/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/en/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/en/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/en/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/en/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/en/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/en/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/en/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /finance/docs/locale/es_UN/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/es_UN/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /finance/docs/locale/es_UN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/es_UN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/es_UN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/es_UN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/es_UN/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/es_UN/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /finance/docs/locale/es_UN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/es_UN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /finance/docs/locale/es_UN/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/es_UN/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /finance/docs/locale/es_UN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/es_UN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /finance/docs/locale/es_UN/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/es_UN/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/fr_FR/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/fr_FR/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /finance/docs/locale/fr_FR/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/fr_FR/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/fr_FR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/fr_FR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/fr_FR/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/fr_FR/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /finance/docs/locale/fr_FR/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/fr_FR/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /finance/docs/locale/fr_FR/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/fr_FR/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /finance/docs/locale/fr_FR/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/fr_FR/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /finance/docs/locale/fr_FR/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/fr_FR/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/gu_IN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/gu_IN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/gu_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/gu_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/gu_IN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/gu_IN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /finance/docs/locale/gu_IN/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/gu_IN/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/gu_IN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/gu_IN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /finance/docs/locale/hi_IN/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/hi_IN/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /finance/docs/locale/hi_IN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/hi_IN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/hi_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/hi_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/hi_IN/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/hi_IN/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /finance/docs/locale/hi_IN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/hi_IN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /finance/docs/locale/hi_IN/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/hi_IN/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /finance/docs/locale/hi_IN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/hi_IN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /finance/docs/locale/hi_IN/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/hi_IN/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/ja_JP/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ja_JP/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /finance/docs/locale/ja_JP/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ja_JP/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/ja_JP/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ja_JP/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/ja_JP/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ja_JP/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /finance/docs/locale/ja_JP/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ja_JP/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /finance/docs/locale/ja_JP/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ja_JP/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /finance/docs/locale/ja_JP/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ja_JP/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/ko_KR/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ko_KR/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /finance/docs/locale/ko_KR/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ko_KR/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/ko_KR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ko_KR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/ko_KR/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ko_KR/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /finance/docs/locale/ko_KR/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ko_KR/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /finance/docs/locale/ko_KR/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ko_KR/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /finance/docs/locale/ko_KR/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ko_KR/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /finance/docs/locale/ko_KR/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ko_KR/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/mr_IN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/mr_IN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/mr_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/mr_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/mr_IN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/mr_IN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /finance/docs/locale/mr_IN/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/mr_IN/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/mr_IN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/mr_IN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /finance/docs/locale/pl_PL/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/pl_PL/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /finance/docs/locale/pl_PL/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/pl_PL/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/pl_PL/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/pl_PL/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/pl_PL/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/pl_PL/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /finance/docs/locale/pl_PL/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/pl_PL/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /finance/docs/locale/pl_PL/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/pl_PL/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /finance/docs/locale/pl_PL/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/pl_PL/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /finance/docs/locale/pl_PL/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/pl_PL/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/pt_UN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/pt_UN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/pt_UN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/pt_UN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/pt_UN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/pt_UN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /finance/docs/locale/pt_UN/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/pt_UN/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/pt_UN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/pt_UN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /finance/docs/locale/ru_RU/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ru_RU/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /finance/docs/locale/ru_RU/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ru_RU/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/ru_RU/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ru_RU/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/ru_RU/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ru_RU/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /finance/docs/locale/ru_RU/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ru_RU/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /finance/docs/locale/ru_RU/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ru_RU/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /finance/docs/locale/ru_RU/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ru_RU/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /finance/docs/locale/ru_RU/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ru_RU/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/ta_IN/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ta_IN/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /finance/docs/locale/ta_IN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ta_IN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/ta_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ta_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/ta_IN/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ta_IN/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /finance/docs/locale/ta_IN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ta_IN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /finance/docs/locale/ta_IN/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ta_IN/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /finance/docs/locale/ta_IN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ta_IN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /finance/docs/locale/ta_IN/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/ta_IN/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/te_IN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/te_IN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/te_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/te_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/te_IN/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/te_IN/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/te_IN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/te_IN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /finance/docs/locale/th_TH/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/th_TH/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/th_TH/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/th_TH/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/th_TH/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/th_TH/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /finance/docs/locale/th_TH/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/th_TH/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/th_TH/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/th_TH/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /finance/docs/locale/tr_TR/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/tr_TR/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /finance/docs/locale/tr_TR/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/tr_TR/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/tr_TR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/tr_TR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/tr_TR/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/tr_TR/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /finance/docs/locale/tr_TR/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/tr_TR/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /finance/docs/locale/tr_TR/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/tr_TR/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /finance/docs/locale/tr_TR/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/tr_TR/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /finance/docs/locale/tr_TR/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/tr_TR/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/zh_CN/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/zh_CN/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /finance/docs/locale/zh_CN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/zh_CN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/zh_CN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/zh_CN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/zh_CN/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/zh_CN/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /finance/docs/locale/zh_CN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/zh_CN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /finance/docs/locale/zh_CN/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/zh_CN/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /finance/docs/locale/zh_CN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/zh_CN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /finance/docs/locale/zh_CN/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/zh_CN/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/docs/locale/zh_TW/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/zh_TW/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /finance/docs/locale/zh_TW/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/zh_TW/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /finance/docs/locale/zh_TW/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/zh_TW/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /finance/docs/locale/zh_TW/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/zh_TW/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /finance/docs/locale/zh_TW/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/zh_TW/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /finance/docs/locale/zh_TW/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/zh_TW/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /finance/docs/locale/zh_TW/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/zh_TW/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /finance/docs/locale/zh_TW/LC_MESSAGES/tutorials/11_time_series.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/docs/locale/zh_TW/LC_MESSAGES/tutorials/11_time_series.po -------------------------------------------------------------------------------- /finance/qiskit_finance/VERSION.txt: -------------------------------------------------------------------------------- 1 | 0.4.0 2 | -------------------------------------------------------------------------------- /finance/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/requirements-dev.txt -------------------------------------------------------------------------------- /finance/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/requirements.txt -------------------------------------------------------------------------------- /finance/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/finance/setup.py -------------------------------------------------------------------------------- /images/image_send_request_in_crowdin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/images/image_send_request_in_crowdin.png -------------------------------------------------------------------------------- /machine-learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/README.md -------------------------------------------------------------------------------- /machine-learning/docs/locale/bn_BN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/bn_BN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/bn_BN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/bn_BN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/bn_BN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/bn_BN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/bn_BN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/bn_BN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/bn_BN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/de_DE/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/de_DE/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/de_DE/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/de_DE/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/de_DE/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/de_DE/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/de_DE/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/de_DE/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/de_DE/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/en/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/en/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/en/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/en/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/en/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/en/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/en/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/en/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/es_UN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/es_UN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/es_UN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/es_UN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/es_UN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/es_UN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/es_UN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/es_UN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/es_UN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/fr_FR/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/fr_FR/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/fr_FR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/fr_FR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/fr_FR/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/fr_FR/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/fr_FR/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/fr_FR/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/fr_FR/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/gu_IN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/gu_IN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/gu_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/gu_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/gu_IN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/gu_IN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/hi_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/hi_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/hi_IN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/hi_IN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/hi_IN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/ja_JP/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/ja_JP/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/ja_JP/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/ja_JP/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/ja_JP/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/ko_KR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/ko_KR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/ko_KR/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/ko_KR/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/ko_KR/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/mr_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/mr_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/mr_IN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/mr_IN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/pl_PL/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/pl_PL/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/pl_PL/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/pl_PL/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/pl_PL/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/pt_UN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/pt_UN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/pt_UN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/pt_UN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/ru_RU/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/ru_RU/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/ru_RU/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/ru_RU/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/ru_RU/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/ta_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/ta_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/ta_IN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/ta_IN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/ta_IN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/te_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/te_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/th_TH/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/th_TH/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/th_TH/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/th_TH/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/tr_TR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/tr_TR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/tr_TR/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/tr_TR/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/tr_TR/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/zh_CN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/zh_CN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/zh_CN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/zh_CN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/zh_CN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/zh_TW/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/zh_TW/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/zh_TW/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/zh_TW/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/docs/locale/zh_TW/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /machine-learning/qiskit_machine_learning/VERSION.txt: -------------------------------------------------------------------------------- 1 | 0.7.1 2 | -------------------------------------------------------------------------------- /machine-learning/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/requirements-dev.txt -------------------------------------------------------------------------------- /machine-learning/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/requirements.txt -------------------------------------------------------------------------------- /machine-learning/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/machine-learning/setup.py -------------------------------------------------------------------------------- /nature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/README.md -------------------------------------------------------------------------------- /nature/constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/constraints.txt -------------------------------------------------------------------------------- /nature/docs/locale/bn_BN/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/bn_BN/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /nature/docs/locale/bn_BN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/bn_BN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/bn_BN/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/bn_BN/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/bn_BN/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/bn_BN/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/bn_BN/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/bn_BN/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/bn_BN/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/bn_BN/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/bn_BN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/bn_BN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/bn_BN/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/bn_BN/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/bn_BN/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/bn_BN/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/bn_BN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/bn_BN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/bn_BN/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/bn_BN/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /nature/docs/locale/bn_BN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/bn_BN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /nature/docs/locale/bn_BN/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/bn_BN/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /nature/docs/locale/bn_BN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/bn_BN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /nature/docs/locale/bn_BN/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/bn_BN/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/bn_BN/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/bn_BN/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/bn_BN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/bn_BN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/de_DE/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/de_DE/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /nature/docs/locale/de_DE/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/de_DE/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/de_DE/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/de_DE/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/de_DE/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/de_DE/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/de_DE/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/de_DE/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/de_DE/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/de_DE/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/de_DE/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/de_DE/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/de_DE/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/de_DE/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/de_DE/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/de_DE/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/de_DE/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/de_DE/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/de_DE/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/de_DE/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /nature/docs/locale/de_DE/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/de_DE/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /nature/docs/locale/de_DE/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/de_DE/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /nature/docs/locale/de_DE/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/de_DE/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /nature/docs/locale/de_DE/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/de_DE/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/de_DE/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/de_DE/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/de_DE/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/de_DE/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/en/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/en/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/en/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/en/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/en/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/en/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/en/LC_MESSAGES/howtos/numpy_eigensolver.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/en/LC_MESSAGES/howtos/numpy_eigensolver.po -------------------------------------------------------------------------------- /nature/docs/locale/en/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/en/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/en/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/en/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/en/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/en/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/en/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/en/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/en/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/en/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/en/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/en/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/en/LC_MESSAGES/tutorials/06_qubit_mappers.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/en/LC_MESSAGES/tutorials/06_qubit_mappers.po -------------------------------------------------------------------------------- /nature/docs/locale/en/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/en/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/en/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/en/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/en/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/en/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/es_UN/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/es_UN/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /nature/docs/locale/es_UN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/es_UN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/es_UN/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/es_UN/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/es_UN/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/es_UN/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/es_UN/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/es_UN/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/es_UN/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/es_UN/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/es_UN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/es_UN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/es_UN/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/es_UN/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/es_UN/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/es_UN/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/es_UN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/es_UN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/es_UN/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/es_UN/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /nature/docs/locale/es_UN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/es_UN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /nature/docs/locale/es_UN/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/es_UN/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /nature/docs/locale/es_UN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/es_UN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /nature/docs/locale/es_UN/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/es_UN/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/es_UN/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/es_UN/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/es_UN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/es_UN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/fr_FR/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/fr_FR/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /nature/docs/locale/fr_FR/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/fr_FR/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/fr_FR/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/fr_FR/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/fr_FR/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/fr_FR/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/fr_FR/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/fr_FR/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/fr_FR/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/fr_FR/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/fr_FR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/fr_FR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/fr_FR/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/fr_FR/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/fr_FR/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/fr_FR/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/fr_FR/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/fr_FR/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/fr_FR/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/fr_FR/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /nature/docs/locale/fr_FR/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/fr_FR/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /nature/docs/locale/fr_FR/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/fr_FR/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /nature/docs/locale/fr_FR/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/fr_FR/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /nature/docs/locale/fr_FR/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/fr_FR/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/fr_FR/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/fr_FR/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/fr_FR/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/fr_FR/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/gu_IN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/gu_IN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/gu_IN/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/gu_IN/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/gu_IN/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/gu_IN/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/gu_IN/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/gu_IN/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/gu_IN/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/gu_IN/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/gu_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/gu_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/gu_IN/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/gu_IN/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/gu_IN/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/gu_IN/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/gu_IN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/gu_IN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/gu_IN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/gu_IN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /nature/docs/locale/gu_IN/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/gu_IN/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/gu_IN/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/gu_IN/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/gu_IN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/gu_IN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/hi_IN/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/hi_IN/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /nature/docs/locale/hi_IN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/hi_IN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/hi_IN/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/hi_IN/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/hi_IN/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/hi_IN/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/hi_IN/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/hi_IN/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/hi_IN/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/hi_IN/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/hi_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/hi_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/hi_IN/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/hi_IN/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/hi_IN/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/hi_IN/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/hi_IN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/hi_IN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/hi_IN/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/hi_IN/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /nature/docs/locale/hi_IN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/hi_IN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /nature/docs/locale/hi_IN/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/hi_IN/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /nature/docs/locale/hi_IN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/hi_IN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /nature/docs/locale/hi_IN/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/hi_IN/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/hi_IN/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/hi_IN/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/hi_IN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/hi_IN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/ja_JP/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ja_JP/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /nature/docs/locale/ja_JP/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ja_JP/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/ja_JP/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/ja_JP/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/ja_JP/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/ja_JP/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ja_JP/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/ja_JP/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ja_JP/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/ja_JP/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ja_JP/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/ja_JP/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ja_JP/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/ja_JP/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ja_JP/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/ja_JP/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ja_JP/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /nature/docs/locale/ja_JP/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ja_JP/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /nature/docs/locale/ja_JP/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ja_JP/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /nature/docs/locale/ja_JP/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ja_JP/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/ko_KR/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ko_KR/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /nature/docs/locale/ko_KR/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ko_KR/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/ko_KR/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ko_KR/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/ko_KR/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ko_KR/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/ko_KR/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ko_KR/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/ko_KR/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ko_KR/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/ko_KR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ko_KR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/ko_KR/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ko_KR/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/ko_KR/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ko_KR/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/ko_KR/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ko_KR/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/ko_KR/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ko_KR/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /nature/docs/locale/ko_KR/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ko_KR/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /nature/docs/locale/ko_KR/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ko_KR/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /nature/docs/locale/ko_KR/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ko_KR/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /nature/docs/locale/ko_KR/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ko_KR/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/ko_KR/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ko_KR/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/ko_KR/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ko_KR/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/mr_IN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/mr_IN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/mr_IN/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/mr_IN/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/mr_IN/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/mr_IN/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/mr_IN/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/mr_IN/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/mr_IN/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/mr_IN/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/mr_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/mr_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/mr_IN/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/mr_IN/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/mr_IN/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/mr_IN/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/mr_IN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/mr_IN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/mr_IN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/mr_IN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /nature/docs/locale/mr_IN/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/mr_IN/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/mr_IN/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/mr_IN/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/mr_IN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/mr_IN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/pl_PL/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pl_PL/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /nature/docs/locale/pl_PL/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pl_PL/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/pl_PL/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pl_PL/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/pl_PL/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pl_PL/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/pl_PL/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pl_PL/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/pl_PL/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pl_PL/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/pl_PL/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pl_PL/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/pl_PL/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pl_PL/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/pl_PL/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pl_PL/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/pl_PL/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pl_PL/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/pl_PL/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pl_PL/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /nature/docs/locale/pl_PL/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pl_PL/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /nature/docs/locale/pl_PL/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pl_PL/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /nature/docs/locale/pl_PL/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pl_PL/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /nature/docs/locale/pl_PL/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pl_PL/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/pl_PL/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pl_PL/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/pl_PL/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pl_PL/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/pt_UN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pt_UN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/pt_UN/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pt_UN/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/pt_UN/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pt_UN/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/pt_UN/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pt_UN/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/pt_UN/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pt_UN/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/pt_UN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pt_UN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/pt_UN/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pt_UN/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/pt_UN/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pt_UN/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/pt_UN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pt_UN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/pt_UN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pt_UN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /nature/docs/locale/pt_UN/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pt_UN/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/pt_UN/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pt_UN/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/pt_UN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/pt_UN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/ru_RU/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ru_RU/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /nature/docs/locale/ru_RU/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ru_RU/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/ru_RU/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ru_RU/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/ru_RU/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ru_RU/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/ru_RU/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ru_RU/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/ru_RU/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ru_RU/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/ru_RU/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ru_RU/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/ru_RU/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ru_RU/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/ru_RU/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ru_RU/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/ru_RU/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ru_RU/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/ru_RU/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ru_RU/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /nature/docs/locale/ru_RU/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ru_RU/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /nature/docs/locale/ru_RU/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ru_RU/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /nature/docs/locale/ru_RU/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ru_RU/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /nature/docs/locale/ru_RU/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ru_RU/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/ru_RU/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ru_RU/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/ru_RU/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ru_RU/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/ta_IN/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ta_IN/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /nature/docs/locale/ta_IN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ta_IN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/ta_IN/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ta_IN/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/ta_IN/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ta_IN/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/ta_IN/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ta_IN/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/ta_IN/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ta_IN/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/ta_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ta_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/ta_IN/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ta_IN/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/ta_IN/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ta_IN/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/ta_IN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ta_IN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/ta_IN/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ta_IN/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /nature/docs/locale/ta_IN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ta_IN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /nature/docs/locale/ta_IN/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ta_IN/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /nature/docs/locale/ta_IN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ta_IN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /nature/docs/locale/ta_IN/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ta_IN/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/ta_IN/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ta_IN/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/ta_IN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/ta_IN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/te_IN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/te_IN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/te_IN/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/te_IN/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/te_IN/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/te_IN/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/te_IN/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/te_IN/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/te_IN/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/te_IN/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/te_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/te_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/te_IN/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/te_IN/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/te_IN/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/te_IN/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/te_IN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/te_IN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/te_IN/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/te_IN/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/te_IN/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/te_IN/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/te_IN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/te_IN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/th_TH/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/th_TH/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/th_TH/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/th_TH/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/th_TH/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/th_TH/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/th_TH/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/th_TH/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/th_TH/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/th_TH/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/th_TH/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/th_TH/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/th_TH/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/th_TH/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/th_TH/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/th_TH/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/th_TH/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/th_TH/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/th_TH/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/th_TH/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /nature/docs/locale/th_TH/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/th_TH/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/th_TH/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/th_TH/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/th_TH/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/th_TH/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/tr_TR/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/tr_TR/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /nature/docs/locale/tr_TR/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/tr_TR/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/tr_TR/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/tr_TR/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/tr_TR/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/tr_TR/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/tr_TR/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/tr_TR/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/tr_TR/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/tr_TR/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/tr_TR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/tr_TR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/tr_TR/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/tr_TR/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/tr_TR/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/tr_TR/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/tr_TR/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/tr_TR/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/tr_TR/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/tr_TR/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /nature/docs/locale/tr_TR/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/tr_TR/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /nature/docs/locale/tr_TR/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/tr_TR/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /nature/docs/locale/tr_TR/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/tr_TR/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /nature/docs/locale/tr_TR/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/tr_TR/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/tr_TR/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/tr_TR/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/tr_TR/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/tr_TR/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_CN/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_CN/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_CN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_CN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_CN/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_CN/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_CN/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_CN/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_CN/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_CN/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_CN/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_CN/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_CN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_CN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_CN/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_CN/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_CN/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_CN/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_CN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_CN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_CN/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_CN/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_CN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_CN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_CN/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_CN/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_CN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_CN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_CN/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_CN/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_CN/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_CN/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_CN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_CN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_TW/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_TW/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_TW/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_TW/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_TW/LC_MESSAGES/howtos/adapt_vqe.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_TW/LC_MESSAGES/howtos/adapt_vqe.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_TW/LC_MESSAGES/howtos/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_TW/LC_MESSAGES/howtos/index.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_TW/LC_MESSAGES/howtos/vqe_ucc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_TW/LC_MESSAGES/howtos/vqe_ucc.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_TW/LC_MESSAGES/howtos/vqe_uvcc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_TW/LC_MESSAGES/howtos/vqe_uvcc.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_TW/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_TW/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_TW/LC_MESSAGES/migration/0.5_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_TW/LC_MESSAGES/migration/0.5_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_TW/LC_MESSAGES/migration/0.6_a_intro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_TW/LC_MESSAGES/migration/0.6_a_intro.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_TW/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_TW/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_TW/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_TW/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_TW/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_TW/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_TW/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_TW/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_TW/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_TW/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_TW/LC_MESSAGES/tutorials/08_qcschema.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_TW/LC_MESSAGES/tutorials/08_qcschema.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_TW/LC_MESSAGES/tutorials/09_properties.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_TW/LC_MESSAGES/tutorials/09_properties.po -------------------------------------------------------------------------------- /nature/docs/locale/zh_TW/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/docs/locale/zh_TW/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /nature/qiskit_nature/VERSION.txt: -------------------------------------------------------------------------------- 1 | 0.7.1 2 | -------------------------------------------------------------------------------- /nature/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/requirements-dev.txt -------------------------------------------------------------------------------- /nature/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/requirements.txt -------------------------------------------------------------------------------- /nature/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/nature/setup.py -------------------------------------------------------------------------------- /optimization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/README.md -------------------------------------------------------------------------------- /optimization/docs/locale/bn_BN/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/bn_BN/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /optimization/docs/locale/bn_BN/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/bn_BN/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/bn_BN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/bn_BN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/bn_BN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/bn_BN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/bn_BN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/bn_BN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/bn_BN/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/bn_BN/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /optimization/docs/locale/bn_BN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/bn_BN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /optimization/docs/locale/bn_BN/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/bn_BN/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /optimization/docs/locale/bn_BN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/bn_BN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /optimization/docs/locale/bn_BN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/bn_BN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/de_DE/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/de_DE/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /optimization/docs/locale/de_DE/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/de_DE/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/de_DE/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/de_DE/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/de_DE/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/de_DE/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/de_DE/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/de_DE/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/de_DE/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/de_DE/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /optimization/docs/locale/de_DE/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/de_DE/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /optimization/docs/locale/de_DE/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/de_DE/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /optimization/docs/locale/de_DE/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/de_DE/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /optimization/docs/locale/de_DE/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/de_DE/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/en/LC_MESSAGES/explanations/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/en/LC_MESSAGES/explanations/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/en/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/en/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/en/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/en/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/en/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/en/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/en/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/en/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/en/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/en/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/es_UN/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/es_UN/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /optimization/docs/locale/es_UN/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/es_UN/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/es_UN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/es_UN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/es_UN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/es_UN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/es_UN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/es_UN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/es_UN/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/es_UN/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /optimization/docs/locale/es_UN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/es_UN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /optimization/docs/locale/es_UN/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/es_UN/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /optimization/docs/locale/es_UN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/es_UN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /optimization/docs/locale/es_UN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/es_UN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/fr_FR/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/fr_FR/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /optimization/docs/locale/fr_FR/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/fr_FR/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/fr_FR/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/fr_FR/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/fr_FR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/fr_FR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/fr_FR/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/fr_FR/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/fr_FR/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/fr_FR/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /optimization/docs/locale/fr_FR/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/fr_FR/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /optimization/docs/locale/fr_FR/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/fr_FR/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /optimization/docs/locale/fr_FR/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/fr_FR/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /optimization/docs/locale/fr_FR/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/fr_FR/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/gu_IN/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/gu_IN/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/gu_IN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/gu_IN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/gu_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/gu_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/gu_IN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/gu_IN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/gu_IN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/gu_IN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /optimization/docs/locale/gu_IN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/gu_IN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/hi_IN/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/hi_IN/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /optimization/docs/locale/hi_IN/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/hi_IN/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/hi_IN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/hi_IN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/hi_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/hi_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/hi_IN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/hi_IN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/hi_IN/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/hi_IN/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /optimization/docs/locale/hi_IN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/hi_IN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /optimization/docs/locale/hi_IN/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/hi_IN/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /optimization/docs/locale/hi_IN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/hi_IN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /optimization/docs/locale/hi_IN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/hi_IN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/ja_JP/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ja_JP/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /optimization/docs/locale/ja_JP/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ja_JP/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/ja_JP/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ja_JP/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/ja_JP/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ja_JP/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/ja_JP/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ja_JP/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/ja_JP/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ja_JP/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /optimization/docs/locale/ja_JP/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ja_JP/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /optimization/docs/locale/ja_JP/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ja_JP/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ja_JP/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/ko_KR/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ko_KR/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /optimization/docs/locale/ko_KR/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ko_KR/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/ko_KR/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ko_KR/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/ko_KR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ko_KR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/ko_KR/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ko_KR/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/ko_KR/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ko_KR/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /optimization/docs/locale/ko_KR/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ko_KR/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /optimization/docs/locale/ko_KR/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ko_KR/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /optimization/docs/locale/ko_KR/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ko_KR/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /optimization/docs/locale/ko_KR/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ko_KR/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/mr_IN/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/mr_IN/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/mr_IN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/mr_IN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/mr_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/mr_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/mr_IN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/mr_IN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/mr_IN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/mr_IN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /optimization/docs/locale/mr_IN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/mr_IN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/pl_PL/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/pl_PL/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /optimization/docs/locale/pl_PL/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/pl_PL/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/pl_PL/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/pl_PL/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/pl_PL/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/pl_PL/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/pl_PL/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/pl_PL/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/pl_PL/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/pl_PL/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /optimization/docs/locale/pl_PL/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/pl_PL/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /optimization/docs/locale/pl_PL/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/pl_PL/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /optimization/docs/locale/pl_PL/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/pl_PL/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /optimization/docs/locale/pl_PL/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/pl_PL/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/pt_UN/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/pt_UN/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/pt_UN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/pt_UN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/pt_UN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/pt_UN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/pt_UN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/pt_UN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/pt_UN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/pt_UN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /optimization/docs/locale/pt_UN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/pt_UN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/ru_RU/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ru_RU/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /optimization/docs/locale/ru_RU/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ru_RU/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/ru_RU/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ru_RU/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/ru_RU/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ru_RU/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/ru_RU/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ru_RU/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/ru_RU/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ru_RU/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /optimization/docs/locale/ru_RU/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ru_RU/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /optimization/docs/locale/ru_RU/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ru_RU/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /optimization/docs/locale/ru_RU/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ru_RU/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /optimization/docs/locale/ru_RU/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ru_RU/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/ta_IN/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ta_IN/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /optimization/docs/locale/ta_IN/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ta_IN/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/ta_IN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ta_IN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/ta_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ta_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/ta_IN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ta_IN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/ta_IN/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ta_IN/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /optimization/docs/locale/ta_IN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ta_IN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /optimization/docs/locale/ta_IN/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ta_IN/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /optimization/docs/locale/ta_IN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ta_IN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /optimization/docs/locale/ta_IN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/ta_IN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/te_IN/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/te_IN/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/te_IN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/te_IN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/te_IN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/te_IN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/te_IN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/te_IN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/te_IN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/te_IN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/th_TH/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/th_TH/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/th_TH/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/th_TH/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/th_TH/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/th_TH/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/th_TH/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/th_TH/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/th_TH/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/th_TH/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /optimization/docs/locale/th_TH/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/th_TH/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/tr_TR/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/tr_TR/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /optimization/docs/locale/tr_TR/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/tr_TR/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/tr_TR/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/tr_TR/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/tr_TR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/tr_TR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/tr_TR/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/tr_TR/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/tr_TR/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/tr_TR/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /optimization/docs/locale/tr_TR/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/tr_TR/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /optimization/docs/locale/tr_TR/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/tr_TR/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /optimization/docs/locale/tr_TR/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/tr_TR/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /optimization/docs/locale/tr_TR/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/tr_TR/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_CN/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_CN/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_CN/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_CN/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_CN/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_CN/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_CN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_CN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_CN/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_CN/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_CN/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_CN/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_CN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_CN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_CN/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_CN/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_CN/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_CN/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_CN/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_CN/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_TW/LC_MESSAGES/apidocs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_TW/LC_MESSAGES/apidocs.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_TW/LC_MESSAGES/explanations/qrao.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_TW/LC_MESSAGES/explanations/qrao.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_TW/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_TW/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_TW/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_TW/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_TW/LC_MESSAGES/migration/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_TW/LC_MESSAGES/migration/index.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_TW/LC_MESSAGES/release_notes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_TW/LC_MESSAGES/release_notes.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_TW/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_TW/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_TW/LC_MESSAGES/stubs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_TW/LC_MESSAGES/stubs.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_TW/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_TW/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /optimization/docs/locale/zh_TW/LC_MESSAGES/tutorials/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/docs/locale/zh_TW/LC_MESSAGES/tutorials/index.po -------------------------------------------------------------------------------- /optimization/qiskit_optimization/VERSION.txt: -------------------------------------------------------------------------------- 1 | 0.6.0 2 | -------------------------------------------------------------------------------- /optimization/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/requirements-dev.txt -------------------------------------------------------------------------------- /optimization/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/requirements.txt -------------------------------------------------------------------------------- /optimization/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/optimization/setup.py -------------------------------------------------------------------------------- /reference/Onboarding Guide 2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/reference/Onboarding Guide 2022.pdf -------------------------------------------------------------------------------- /reference/getting-started-crowdin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/reference/getting-started-crowdin.pdf -------------------------------------------------------------------------------- /tools/deploy_ML_translated_documentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/tools/deploy_ML_translated_documentation.sh -------------------------------------------------------------------------------- /tools/deploy_finance_translated_documentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/tools/deploy_finance_translated_documentation.sh -------------------------------------------------------------------------------- /tools/deploy_nature_translated_documentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/tools/deploy_nature_translated_documentation.sh -------------------------------------------------------------------------------- /tools/deploy_optimization_translated_documentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/tools/deploy_optimization_translated_documentation.sh -------------------------------------------------------------------------------- /tools/rclone.conf.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/tools/rclone.conf.enc -------------------------------------------------------------------------------- /tools/staging_ML_translated_documentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/tools/staging_ML_translated_documentation.sh -------------------------------------------------------------------------------- /tools/staging_finance_translated_documentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/tools/staging_finance_translated_documentation.sh -------------------------------------------------------------------------------- /tools/staging_nature_translated_documentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/tools/staging_nature_translated_documentation.sh -------------------------------------------------------------------------------- /tools/staging_optimization_translated_documentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiskit-community/qiskit-translations/HEAD/tools/staging_optimization_translated_documentation.sh --------------------------------------------------------------------------------