Skip to content

Commit

Permalink
student-database: OAs translations
Browse files Browse the repository at this point in the history
  • Loading branch information
merunga committed Jun 28, 2024
1 parent 30b7a6f commit d2fe845
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 48 deletions.
52 changes: 26 additions & 26 deletions learning-objectives/intl/es.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1166,7 +1166,7 @@ shell/scripts:
url: http://linuxcommand.org/lc3_writing_shell_scripts.php

shell/file-permissions:
title: File Permissions
title: Permisos de archivos (File Permissions)
links:
- title: Understanding Linux File Permissions - DigitalOcean
url: https://www.digitalocean.com/community/tutorials/understanding-linux-file-permissions
Expand Down Expand Up @@ -1247,51 +1247,51 @@ sql/subqueries-nested-queries:
url: https://www.postgresql.org/docs/current/functions-subquery.html

sql/create-table:
title: CREATE TABLE
title: Crear una tabla con CREATE TABLE
links:
- title: SQL CREATE TABLE Statement - W3Schools
url: https://www.w3schools.com/sql/sql_create_table.asp

sql/insert:
title: INSERT
title: Agregar registros a un tabla con INSERT
links:
- title: Inserting Data
- title: Inserting Data - PostgreSQL Docs
url: https://www.postgresql.org/docs/current/dml-insert.html

sql/update:
title: UPDATE
title: Actualizar registros con UPDATE
links:
- title: Updating Data
- title: Updating Data - PostgreSQL Docs
url: https://www.postgresql.org/docs/current/dml-update.html

sql/delete:
title: DELETE
title: Eliminar registros con DELETE
links:
- title: DELETE
- title: Deleting Data - PostgreSQL Docs
url: https://www.postgresql.org/docs/current/dml-delete.html

sql/primary-key:
title: Primary Key
title: Claves primarias (Primary Keys)
links:
- title: Primary Keys
- title: Primary Keys - PostgreSQL Docs
url: https://www.postgresql.org/docs/current/ddl-constraints.html#DDL-CONSTRAINTS-PRIMARY-KEYS

sql/foreign-key:
title: Foreign key
title: Claves externas (Foreign Keys)
links:
- title: Foreign Keys
- title: Foreign Keys - PostgreSQL Docs
url: https://www.postgresql.org/docs/current/ddl-constraints.html#DDL-CONSTRAINTS-FK

sql/alter-table:
title: ALTER TABLE
title: Cambiar la estrucutura de una tabla con ALTER TABLE
links:
- title: Modifying Tables
- title: Modifying Tables - PostgreSQL Docs
url: https://www.postgresql.org/docs/current/ddl-alter.html

sql/constraints:
title: Constraints
title: Restricciones sobre los campos de una tabla (Constraints)
links:
- title: Constraints
- title: Constraints - PostgreSQL Docs
url: https://www.postgresql.org/docs/current/ddl-constraints.html

mongodb:
Expand Down Expand Up @@ -1356,24 +1356,24 @@ postgres/dump-restore:
url: https://www.postgresql.org/docs/14/backup.html

postgres/setup:
title: PostgreSQL Setup
title: Setup de una nueva instancia
links:
- title: PostgreSQL Installation - PostgreSQL Docs
url: https://www.postgresql.org/download/
- title: How To Install and Use PostgreSQL on Ubuntu - DigitalOcean
url: https://www.digitalocean.com/community/tutorials/how-to-install-and-use-postgresql-on-ubuntu-20-04

postgres/commands:
title: PostgreSQL Commands
title: Comandos
links:
- title: PostgreSQL psql Commands - PostgreSQL Docs
url: https://www.postgresql.org/docs/current/app-psql.html
- title: Commonly Used PostgreSQL Commands - Verta.ai
url: https://www.verta.ai/resources/tutorials/database/postgresql-commands

postgres/backup:
title: PostgreSQL Backup
description: "Backup procedures for PostgreSQL databases, including various tools and best practices."
title: Copias de seguridad (Backup)
description: "Procedimientos de copia de seguridad para bases de datos PostgreSQL, incluyendo varias herramientas y mejores prácticas."
references:
- link: "https://www.postgresql.org/docs/current/backup.html"
description: "Official PostgreSQL Backup Documentation"
Expand All @@ -1383,8 +1383,8 @@ postgres/backup:
description: "Backup and Restore with pgAdmin - Official Documentation"

postgres/restore:
title: PostgreSQL Restore
description: "Methods and best practices for restoring PostgreSQL databases from backups."
title: Restauración (Restore)
description: "Métodos y mejores prácticas para restaurar bases de datos PostgreSQL a partir de copias de seguridad."
references:
- link: "https://www.postgresql.org/docs/current/backup-dump.html"
description: "Official PostgreSQL Restore Documentation"
Expand Down Expand Up @@ -1423,14 +1423,14 @@ mysql/dump-restore:
url: https://dev.mysql.com/doc/refman/8.0/en/mysqldump.html

virtual-machines:
title: Virtual Machines
title: Máquinas Virtuales

virtual-machines/setup:
title: Virtual Machines Setup
title: Configurando máquinas virtuales
links:
- title: Creating a Virtual Machine - Oracle VM
- title: Creación de una máquina virtual - Oracle VM
url: https://docs.oracle.com/en/virtualization/virtualbox/6.0/user/vboxmanage-createvm.html
- title: Setting Up a Virtual Machine - Microsoft
- title: Configuración de una máquina virtual - Microsoft
url: https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/quick-start/quick-create-virtual-machine

react:
Expand Down
46 changes: 24 additions & 22 deletions learning-objectives/intl/pt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1266,7 +1266,7 @@ shell/scripts:
url: http://linuxcommand.org/lc3_writing_shell_scripts.php

shell/file-permissions:
title: File Permissions
title: Permissões de arquivo (File Permissions)
links:
- title: Understanding Linux File Permissions - DigitalOcean
url: https://www.digitalocean.com/community/tutorials/understanding-linux-file-permissions
Expand Down Expand Up @@ -1347,51 +1347,51 @@ sql/subqueries-nested-queries:
url: https://www.postgresql.org/docs/current/functions-subquery.html

sql/create-table:
title: CREATE TABLE
title: Criar uma tabela com CREATE TABLE
links:
- title: SQL CREATE TABLE Statement - W3Schools
url: https://www.w3schools.com/sql/sql_create_table.asp

sql/insert:
title: INSERT
title: Adição de registros a uma tabela com INSERT
links:
- title: Inserting Data
- title: Inserting Data - PostgreSQL Docs
url: https://www.postgresql.org/docs/current/dml-insert.html

sql/update:
title: UPDATE
title: Atualizar registros com UPDATE
links:
- title: Updating Data
- title: Updating Data - PostgreSQL Docs
url: https://www.postgresql.org/docs/current/dml-update.html

sql/delete:
title: DELETE
title: Excluir registros com DELETE
links:
- title: DELETE
- title: Deleting Data - PostgreSQL Docs
url: https://www.postgresql.org/docs/current/dml-delete.html

sql/primary-key:
title: Primary Key
title: Claves primarias (Primary Keys)
links:
- title: Primary Keys
- title: Primary Keys - PostgreSQL Docs
url: https://www.postgresql.org/docs/current/ddl-constraints.html#DDL-CONSTRAINTS-PRIMARY-KEYS

sql/foreign-key:
title: Foreign key
title: Claves externas (Foreign Keys)
links:
- title: Foreign Keys
- title: Foreign Keys - PostgreSQL Docs
url: https://www.postgresql.org/docs/current/ddl-constraints.html#DDL-CONSTRAINTS-FK

sql/alter-table:
title: ALTER TABLE
title: Cambiar la estrucutura de una tabla con ALTER TABLE
links:
- title: Modifying Tables
- title: Modifying Tables - PostgreSQL Docs
url: https://www.postgresql.org/docs/current/ddl-alter.html

sql/constraints:
title: Constraints
title: Restricciones sobre los campos de una tabla (Constraints)
links:
- title: Constraints
- title: Constraints - PostgreSQL Docs
url: https://www.postgresql.org/docs/current/ddl-constraints.html

mongodb:
Expand Down Expand Up @@ -1456,23 +1456,24 @@ postgres/dump-restore:
url: https://www.postgresql.org/docs/14/backup.html

postgres/setup:
title: PostgreSQL Setup
title: Configuração de uma nova instância
links:
- title: PostgreSQL Installation - PostgreSQL Docs
url: https://www.postgresql.org/download/
- title: How To Install and Use PostgreSQL on Ubuntu - DigitalOcean
url: https://www.digitalocean.com/community/tutorials/how-to-install-and-use-postgresql-on-ubuntu-20-04

postgres/commands:
title: PostgreSQL Commands
title: Comandos
links:
- title: PostgreSQL psql Commands - PostgreSQL Docs
url: https://www.postgresql.org/docs/current/app-psql.html
- title: Commonly Used PostgreSQL Commands - Verta.ai
url: https://www.verta.ai/resources/tutorials/database/postgresql-commands

postgres/backup:
description: "Backup procedures for PostgreSQL databases, including various tools and best practices."
title: Backup
description: "Procedimentos de backup para bancos de dados PostgreSQL, incluindo várias ferramentas e práticas recomendadas."
references:
- link: "https://www.postgresql.org/docs/current/backup.html"
description: "Official PostgreSQL Backup Documentation"
Expand All @@ -1482,7 +1483,8 @@ postgres/backup:
description: "Backup and Restore with pgAdmin - Official Documentation"

postgres/restore:
description: "Methods and best practices for restoring PostgreSQL databases from backups."
title: Restaurar (Restore)
description: "Métodos e práticas recomendadas para restaurar bancos de dados PostgreSQL a partir de backups."
references:
- link: "https://www.postgresql.org/docs/current/backup-dump.html"
description: "Official PostgreSQL Restore Documentation"
Expand Down Expand Up @@ -1521,10 +1523,10 @@ mysql/dump-restore:
url: https://dev.mysql.com/doc/refman/8.0/en/mysqldump.html

virtual-machines:
title: Virtual Machines
title: Máquinas virtuais

virtual-machines/setup:
title: Virtual Machines Setup
title: Configuração de máquinas virtuais
links:
- title: Creating a Virtual Machine - Oracle VM
url: https://docs.oracle.com/en/virtualization/virtualbox/6.0/user/vboxmanage-createvm.html
Expand Down

0 comments on commit d2fe845

Please sign in to comment.