Units
Translation components API.
See the Weblate's Web API documentation for detailed description of the API.
GET /api/translations/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/units/?format=api
{ "count": 9, "next": null, "previous": null, "results": [ { "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?format=api", "language_code": "pt_BR", "source": [ "Launching a new instance" ], "previous_source": "", "target": [ "Iniciando uma nova instância" ], "id_hash": 4602130561512916073, "content_hash": 4602130561512916073, "location": "pages/getting-started-aws.adoc:9", "context": "", "note": "type: Block title", "flags": "no-wrap", "labels": [], "state": 20, "fuzzy": false, "translated": true, "approved": false, "position": 4, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 4, "source_unit": "https://translate.fedoraproject.org/api/units/4315365/?format=api", "priority": 100, "id": 4847400, "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?checksum=bfde0d5cd0f24469", "url": "https://translate.fedoraproject.org/api/units/4847400/?format=api", "explanation": "", "extra_flags": "", "pending": false, "timestamp": "2020-08-07T14:14:55.713868Z", "last_updated": "2023-06-16T11:46:33.795393Z" }, { "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?format=api", "language_code": "pt_BR", "source": [ "If you are only interested in exploring FCOS without further customization, you can use a https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html[registered SSH key-pair] for the default `core` user." ], "previous_source": "If you are only interested in exploring FCOS without further customization, you can directly use a https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html[registered SSH key-pair] for the default `core` user.", "target": [ "Se você estiver interessado apenas em explorar FCOS sem personalização adicional, pode usar um https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html[par de chaves SSH registrado] para o usuário padrão `core`." ], "id_hash": 23435529766436146, "content_hash": 23435529766436146, "location": "pages/getting-started-aws.adoc:6", "context": "", "note": "type: Plain text", "flags": "", "labels": [], "state": 20, "fuzzy": false, "translated": true, "approved": false, "position": 2, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 23, "source_unit": "https://translate.fedoraproject.org/api/units/8905340/?format=api", "priority": 100, "id": 8905382, "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?checksum=8053427d7ad9fd32", "url": "https://translate.fedoraproject.org/api/units/8905382/?format=api", "explanation": "", "extra_flags": "", "pending": false, "timestamp": "2021-10-19T22:08:25.613125Z", "last_updated": "2023-06-16T11:46:33.795393Z" }, { "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?format=api", "language_code": "pt_BR", "source": [ "To test out FCOS this way you'll need to run the `aws ec2 run-instances` command and provide some information to get the instance up and running. The following is an example command you can use:" ], "previous_source": "", "target": [ "Para testar o FCOS dessa forma, você precisará executar o comando `aws ec2 run-instances` e fornecer algumas informações para colocar a instância em funcionamento. A seguir está um exemplo de comando que você pode usar:" ], "id_hash": -997342675999080610, "content_hash": -997342675999080610, "location": "pages/getting-started-aws.adoc:8", "context": "", "note": "type: Plain text", "flags": "", "labels": [], "state": 20, "fuzzy": false, "translated": true, "approved": false, "position": 3, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 35, "source_unit": "https://translate.fedoraproject.org/api/units/8905341/?format=api", "priority": 100, "id": 8905383, "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?checksum=7228ba1ecdbcbf5e", "url": "https://translate.fedoraproject.org/api/units/8905383/?format=api", "explanation": "", "extra_flags": "", "pending": false, "timestamp": "2021-10-19T22:08:25.620690Z", "last_updated": "2023-06-16T11:46:33.795393Z" }, { "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?format=api", "language_code": "pt_BR", "source": [ "NAME='instance1'\nSSHKEY='my-key' # the name of your SSH key: `aws ec2 describe-key-pairs`\nIMAGE='ami-xxx' # the AMI ID found on the download page\nDISK='20' # the size of the hard disk\nREGION='us-east-1' # the target region\nTYPE='m5.large' # the instance type\nSUBNET='subnet-xxx' # the subnet: `aws ec2 describe-subnets`\nSECURITY_GROUPS='sg-xx' # the security group `aws ec2 describe-security-groups`\naws ec2 run-instances \\\n --region $REGION \\\n --image-id $IMAGE \\\n --instance-type $TYPE \\\n --key-name $SSHKEY \\\n --subnet-id $SUBNET \\\n --security-group-ids $SECURITY_GROUPS \\\n --tag-specifications \"ResourceType=instance,Tags=[{Key=Name,Value=${NAME}}]\" \\\n --block-device-mappings \"VirtualName=/dev/xvda,DeviceName=/dev/xvda,Ebs={VolumeSize=${DISK}}\"\n" ], "previous_source": "", "target": [ "NAME='instance1'\nSSHKEY='my-key' # o nome da sua chave SSH: `aws ec2 describe-key-pairs`\nIMAGE='ami-xxx' # o ID da AMI encontrada na página de download\nDISK='20' # o tamanho do disco\nREGION='us-east-1' # a região alvo\nTYPE='m5.large' # o tipo da instância\nSUBNET='subnet-xxx' # a sub-rede: `aws ec2 describe-subnets`\nSECURITY_GROUPS='sg-xx' # o grupo de segurança `aws ec2 describe-security-groups`\naws ec2 run-instances \\\n --region $REGION \\\n --image-id $IMAGE \\\n --instance-type $TYPE \\\n --key-name $SSHKEY \\\n --subnet-id $SUBNET \\\n --security-group-ids $SECURITY_GROUPS \\\n --tag-specifications \"ResourceType=instance,Tags=[{Key=Name,Value=${NAME}}]\" \\\n --block-device-mappings \"VirtualName=/dev/xvda,DeviceName=/dev/xvda,Ebs={VolumeSize=${DISK}}\"\n" ], "id_hash": -2268781791199962167, "content_hash": -2268781791199962167, "location": "pages/getting-started-aws.adoc:29", "context": "", "note": "type: delimited block -", "flags": "no-wrap", "labels": [], "state": 20, "fuzzy": false, "translated": true, "approved": false, "position": 5, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 82, "source_unit": "https://translate.fedoraproject.org/api/units/8905342/?format=api", "priority": 100, "id": 8905384, "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?checksum=6083aafb3ea6dbc9", "url": "https://translate.fedoraproject.org/api/units/8905384/?format=api", "explanation": "", "extra_flags": "", "pending": false, "timestamp": "2021-10-19T22:08:25.624503Z", "last_updated": "2023-06-16T11:46:33.795393Z" }, { "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?format=api", "language_code": "pt_BR", "source": [ "You can find out the instance's assigned IP by running `aws ec2 describe-instances`" ], "previous_source": "", "target": [ "Você pode descobrir o IP atribuído à instância executando `aws ec2 describe-instances`" ], "id_hash": -8930323326417221593, "content_hash": -8930323326417221593, "location": "pages/getting-started-aws.adoc:33", "context": "", "note": "type: Plain text", "flags": "", "labels": [], "state": 20, "fuzzy": false, "translated": true, "approved": false, "position": 6, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 13, "source_unit": "https://translate.fedoraproject.org/api/units/8905343/?format=api", "priority": 100, "id": 8905385, "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?checksum=04111e3fdf844827", "url": "https://translate.fedoraproject.org/api/units/8905385/?format=api", "explanation": "", "extra_flags": "", "pending": false, "timestamp": "2021-10-19T22:08:25.627686Z", "last_updated": "2023-06-16T11:46:33.795393Z" }, { "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?format=api", "language_code": "pt_BR", "source": [ "You now should be able to SSH into the instance using the associated IP address." ], "previous_source": "", "target": [ "Agora você deve conseguir fazer SSH na instância usando o endereço IP associado." ], "id_hash": -7648901963966940181, "content_hash": -7648901963966940181, "location": "pages/getting-started-aws.adoc:35", "context": "", "note": "type: Plain text", "flags": "", "labels": [], "state": 20, "fuzzy": false, "translated": true, "approved": false, "position": 7, "has_suggestion": false, "has_comment": false, "has_failing_check": true, "num_words": 15, "source_unit": "https://translate.fedoraproject.org/api/units/8905344/?format=api", "priority": 100, "id": 8905386, "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?checksum=15d9a4307bf67beb", "url": "https://translate.fedoraproject.org/api/units/8905386/?format=api", "explanation": "", "extra_flags": "", "pending": false, "timestamp": "2021-10-19T22:08:25.630605Z", "last_updated": "2023-06-16T11:46:33.795393Z" }, { "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?format=api", "language_code": "pt_BR", "source": [ "Example connecting" ], "previous_source": "", "target": [ "Exemplo de conexão" ], "id_hash": 6217889968325252299, "content_hash": 6217889968325252299, "location": "pages/getting-started-aws.adoc:36", "context": "", "note": "type: Block title", "flags": "no-wrap", "labels": [], "state": 20, "fuzzy": false, "translated": true, "approved": false, "position": 8, "has_suggestion": false, "has_comment": false, "has_failing_check": true, "num_words": 2, "source_unit": "https://translate.fedoraproject.org/api/units/10811013/?format=api", "priority": 100, "id": 10811487, "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?checksum=d64a61fb7e7dd4cb", "url": "https://translate.fedoraproject.org/api/units/10811487/?format=api", "explanation": "", "extra_flags": "", "pending": false, "timestamp": "2022-08-03T22:10:24.763721Z", "last_updated": "2023-06-16T11:46:33.795393Z" }, { "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?format=api", "language_code": "pt_BR", "source": [ "ssh core@<ip address>\n" ], "previous_source": "", "target": [ "ssh core@<endereço ip>\n" ], "id_hash": 2714521080062926415, "content_hash": 2714521080062926415, "location": "pages/getting-started-aws.adoc:40", "context": "", "note": "type: delimited block -", "flags": "no-wrap", "labels": [], "state": 20, "fuzzy": false, "translated": true, "approved": false, "position": 9, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 3, "source_unit": "https://translate.fedoraproject.org/api/units/10811014/?format=api", "priority": 100, "id": 10811488, "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?checksum=a5abea8a4875de4f", "url": "https://translate.fedoraproject.org/api/units/10811488/?format=api", "explanation": "", "extra_flags": "", "pending": false, "timestamp": "2022-08-03T22:10:24.767020Z", "last_updated": "2023-06-16T11:46:33.795393Z" }, { "translation": "https://translate.fedoraproject.org/api/translations/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?format=api", "language_code": "pt_BR", "source": [ "New AWS instances can be directly created from the public FCOS images. You can find the latest AMI for each region from the https://fedoraproject.org/coreos/download/[download page]." ], "previous_source": "New AWS instances can be directly created and booted from public FCOS images. You can find the latest AMI for each region from the xref:getting-started.adoc[Update Streams], which is also visualized in the https://getfedora.org/coreos/download/[download page].", "target": [ "Novas instâncias da AWS podem ser criadas diretamente a partir de imagens públicas do FCOS. Você pode encontrar a AMI mais recente para cada região na https://fedoraproject.org/coreos/download/[página de download]." ], "id_hash": -8558159956414211432, "content_hash": -8558159956414211432, "location": "pages/getting-started-aws.adoc:4", "context": "", "note": "type: Plain text", "flags": "", "labels": [], "state": 20, "fuzzy": false, "translated": true, "approved": false, "position": 1, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 25, "source_unit": "https://translate.fedoraproject.org/api/units/14620424/?format=api", "priority": 100, "id": 14620677, "web_url": "https://translate.fedoraproject.org/translate/fedora-docs-l10n-fedora-coreos/masterpagesgetting-started-aws/pt_BR/?checksum=093b4edcdaf55a98", "url": "https://translate.fedoraproject.org/api/units/14620677/?format=api", "explanation": "", "extra_flags": "", "pending": false, "timestamp": "2023-05-09T22:28:54.720521Z", "last_updated": "2023-06-16T11:46:33.795393Z" } ] }