Changes
Translation components API.
See the Weblate's Web API documentation for detailed description of the API.
GET /api/components/documentation/articlesrc-scripting_index/changes/?format=api&page=27
https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/changes/?format=api&page=28", "previous": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/changes/?format=api&page=26", "results": [ { "unit": "https://translate-dev.freebsd.org/api/units/611854/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/pt_BR/?format=api", "user": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "author": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "timestamp": "2023-04-30T08:41:00.469717Z", "action": 5, "target": "Como o man:rc.subr[8] pode ter acesso aos argumentos adicionais da linha de comando? Ele deve simplesmente pegá-los diretamente? De maneira alguma! Em primeiro lugar, uma função do man:sh[1] não tem acesso aos parâmetros posicionais de quem a chamou, mas o man:rc.subr[8] é apenas um conjunto dessas funções. Em segundo lugar, a boa prática do [.filename]#rc.d# dita que é responsabilidade do script principal decidir quais argumentos devem ser passados para seus métodos.", "id": 524103, "action_name": "New translation", "url": "https://translate-dev.freebsd.org/api/changes/524103/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/611855/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/pt_BR/?format=api", "user": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "author": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "timestamp": "2023-04-30T08:41:47.664794Z", "action": 5, "target": "Portanto, a abordagem adotada pelo man:rc.subr[8] é a seguinte: `run_rc_command` passa todos os seus argumentos, exceto o primeiro, ao respectivo método sem alterações. O primeiro argumento omitido é o nome do método em si: `start`, `stop`, etc. Ele será removido por `run_rc_command`, então o que é `$2` na linha de comando original será apresentado como `$1` para o método, e assim por diante.", "id": 524104, "action_name": "New translation", "url": "https://translate-dev.freebsd.org/api/changes/524104/?format=api" }, { "unit": null, "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/pt_BR/?format=api", "user": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "author": null, "timestamp": "2023-04-30T08:42:23.026343Z", "action": 17, "target": "", "id": 524105, "action_name": "Committed changes", "url": "https://translate-dev.freebsd.org/api/changes/524105/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/611857/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/pt_BR/?format=api", "user": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "author": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "timestamp": "2023-04-30T08:43:18.728407Z", "action": 5, "target": "➊ Todos os argumentos que você digita após `start` podem acabar como parâmetros posicionais para o respectivo método. Podemos usá-los de qualquer maneira de acordo com nossa tarefa, habilidades e gosto. No exemplo atual, simplesmente passamos todos eles para o man:echo[1] como uma única string na próxima linha - observe o `$*` dentro das aspas duplas. Aqui está como o script pode ser invocado agora:", "id": 524110, "action_name": "New translation", "url": "https://translate-dev.freebsd.org/api/changes/524110/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/611858/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/pt_BR/?format=api", "user": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "author": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "timestamp": "2023-04-30T08:44:14.320225Z", "action": 5, "target": "➋ O mesmo se aplica a qualquer método que nosso script ofereça, não apenas a um padrão. Adicionamos um método personalizado chamado `kiss`, e ele pode tirar proveito dos argumentos extras da mesma forma que o `start` pode. Por exemplo:", "id": 524111, "action_name": "New translation", "url": "https://translate-dev.freebsd.org/api/changes/524111/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/381972/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/pt_BR/?format=api", "user": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "author": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "timestamp": "2023-04-30T08:44:44.489615Z", "action": 5, "target": "➌ Se quisermos apenas passar todos os argumentos extras para qualquer método, podemos simplesmente substituir `\"$1\"` por `\"$@\"` na última linha do nosso script, onde invocamos `run_rc_command`.", "id": 524112, "action_name": "New translation", "url": "https://translate-dev.freebsd.org/api/changes/524112/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/611859/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/pt_BR/?format=api", "user": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "author": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "timestamp": "2023-04-30T08:45:23.047024Z", "action": 5, "target": "Um programador em man:sh[1] deve entender a diferença sutil entre `$*` e `$@` como formas de designar todos os parâmetros posicionais. Para uma discussão aprofundada, consulte um bom manual de man:sh[1]. Não use essas expressões até entender completamente o seu uso, pois o uso incorreto pode resultar em scripts com bugs e inseguros.", "id": 524113, "action_name": "New translation", "url": "https://translate-dev.freebsd.org/api/changes/524113/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/611860/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/pt_BR/?format=api", "user": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "author": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "timestamp": "2023-04-30T08:46:34.279913Z", "action": 5, "target": "Atualmente, o `run_rc_command` pode ter um bug que o impede de manter as fronteiras originais entre os argumentos. Ou seja, argumentos com espaços em branco embutidos podem não ser processados corretamente. O bug decorre do uso inadequado de `$*`.", "id": 524114, "action_name": "New translation", "url": "https://translate-dev.freebsd.org/api/changes/524114/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/611861/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/pt_BR/?format=api", "user": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "author": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "timestamp": "2023-04-30T08:47:08.952607Z", "action": 5, "target": "[[lukem]]http://www.mewburn.net/luke/papers/rc.d.pdf[O artigo original de Luke Mewburn] oferece uma visão geral do [.filename]#rc.d# e uma justificativa detalhada para suas decisões de design. Ele fornece uma compreensão do quadro geral do [.filename]#rc.d# e seu lugar em um sistema operacional BSD moderno.", "id": 524115, "action_name": "New translation", "url": "https://translate-dev.freebsd.org/api/changes/524115/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/611862/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/pt_BR/?format=api", "user": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "author": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "timestamp": "2023-04-30T08:48:28.234172Z", "action": 5, "target": "[[manpages]]As páginas do manual para man:rc[8], man:rc.subr[8] e man:rcorder[8] documentam em detalhes os componentes do sistema [.filename]#rc.d#. Você não pode aproveitar completamente o poder do [.filename]#rc.d# sem estudar as páginas do manual e consultá-las ao escrever seus próprios scripts.", "id": 524116, "action_name": "New translation", "url": "https://translate-dev.freebsd.org/api/changes/524116/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/611863/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/pt_BR/?format=api", "user": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "author": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "timestamp": "2023-04-30T08:49:31.768974Z", "action": 5, "target": "A principal fonte de exemplos práticos e funcionais é o diretório [.filename]#/etc/rc.d# em um sistema em operação. O seu conteúdo é fácil e agradável de ler, pois a maioria das partes difíceis está escondida profundamente em man:rc.subr[8]. No entanto, tenha em mente que os scripts em [.filename]#/etc/rc.d# não foram escritos por anjos, então eles podem conter bugs e decisões de design subótimas. Agora você pode melhorá-los!", "id": 524117, "action_name": "New translation", "url": "https://translate-dev.freebsd.org/api/changes/524117/?format=api" }, { "unit": null, "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/pt_BR/?format=api", "user": "https://translate-dev.freebsd.org/api/users/ebrandi/?format=api", "author": null, "timestamp": "2023-04-30T08:49:46.759966Z", "action": 17, "target": "", "id": 524118, "action_name": "Committed changes", "url": "https://translate-dev.freebsd.org/api/changes/524118/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1574995/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/en/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.441679Z", "action": 13, "target": "", "id": 543074, "action_name": "New source string", "url": "https://translate-dev.freebsd.org/api/changes/543074/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1574997/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/en/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.445143Z", "action": 13, "target": "", "id": 543075, "action_name": "New source string", "url": "https://translate-dev.freebsd.org/api/changes/543075/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1574999/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/en/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.449308Z", "action": 13, "target": "", "id": 543076, "action_name": "New source string", "url": "https://translate-dev.freebsd.org/api/changes/543076/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1574996/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/de_DE/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.491571Z", "action": 59, "target": "", "id": 543078, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543078/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1574998/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/de_DE/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.491591Z", "action": 59, "target": "", "id": 543079, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543079/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575000/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/de_DE/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.491609Z", "action": 59, "target": "", "id": 543080, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543080/?format=api" }, { "unit": null, "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/de_DE/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.491626Z", "action": 0, "target": "", "id": 543081, "action_name": "Resource update", "url": "https://translate-dev.freebsd.org/api/changes/543081/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575002/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/es/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.720998Z", "action": 30, "target": "There are prerequisites to understanding this article. First of all, you should be familiar with the man:sh[1] scripting language to master [.filename]#rc.d#. In addition, you should know how the system performs userland startup and shutdown tasks, which is described in man:rc[8].", "id": 543084, "action_name": "Source string changed", "url": "https://translate-dev.freebsd.org/api/changes/543084/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575002/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/es/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.721015Z", "action": 59, "target": "Hay prerequisitos para entender este artículo. Antes de nada, para dominar [.filename]#rc.d# deberías estar familiarizado con el lenguaje de scripting de man:sh[1]. Además deberías conocer cómo el sistema realiza las tareas de arranque y parada en modo usuario, que está descrito en man:rc[8].", "id": 543085, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543085/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575003/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/es/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.721033Z", "action": 30, "target": "A little consideration before starting `$EDITOR` will not hurt. To write a well-tempered [.filename]#rc.d# script for a system service, we should be able to answer the following questions first:", "id": 543086, "action_name": "Source string changed", "url": "https://translate-dev.freebsd.org/api/changes/543086/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575003/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/es/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.721049Z", "action": 59, "target": "Un poco de reflexión antes de arrancar `$EDITOR` no dolerá. Para escribir un script [.filename]#rc.d# bien hecho para un servicio del sistema, deberíamos poder responder las siguientes preguntas primero:", "id": 543087, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543087/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575004/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/es/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.721066Z", "action": 30, "target": "To be properly managed by the [.filename]#rc.d# framework, its scripts need to be written in the man:sh[1] language. If you have a service or port that uses a binary control utility or a startup routine written in another language, install that element in [.filename]#/usr/sbin# (for the system) or [.filename]#/usr/local/sbin# (for ports) and call it from a man:sh[1] script in the appropriate [.filename]#rc.d# directory.", "id": 543088, "action_name": "Source string changed", "url": "https://translate-dev.freebsd.org/api/changes/543088/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575004/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/es/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.721081Z", "action": 59, "target": "Para que los scripts puedan ser gestionados por el framework [.filename]#rc.d# tienen que estar escritos en lenguaje man:sh[1]. Si tienes un servicio o port que usa una utilidad de control binaria o una rutina de arranque escrita en otro lenguaje, instala ese elemento en [.filename]#/usr/sbin# (para el sistema) o [.filename]#/usr/local/sbin# (para ports) e invócalo desde un script man:sh[1] en el directorio [.filename]#rc.d# apropiado.", "id": 543089, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543089/?format=api" }, { "unit": null, "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/es/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.721099Z", "action": 0, "target": "", "id": 543090, "action_name": "Resource update", "url": "https://translate-dev.freebsd.org/api/changes/543090/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575006/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/fa/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.904270Z", "action": 59, "target": "", "id": 543092, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543092/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575007/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/fa/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.904291Z", "action": 59, "target": "", "id": 543093, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543093/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575008/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/fa/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.904309Z", "action": 59, "target": "", "id": 543094, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543094/?format=api" }, { "unit": null, "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/fa/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:23.904327Z", "action": 0, "target": "", "id": 543095, "action_name": "Resource update", "url": "https://translate-dev.freebsd.org/api/changes/543095/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575010/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/fr_FR/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.079502Z", "action": 59, "target": "", "id": 543097, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543097/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575011/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/fr_FR/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.079526Z", "action": 59, "target": "", "id": 543098, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543098/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575012/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/fr_FR/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.079545Z", "action": 59, "target": "", "id": 543099, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543099/?format=api" }, { "unit": null, "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/fr_FR/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.079563Z", "action": 0, "target": "", "id": 543100, "action_name": "Resource update", "url": "https://translate-dev.freebsd.org/api/changes/543100/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575014/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/id/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.245089Z", "action": 59, "target": "", "id": 543102, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543102/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575015/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/id/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.245110Z", "action": 59, "target": "", "id": 543103, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543103/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575016/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/id/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.245128Z", "action": 59, "target": "", "id": 543104, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543104/?format=api" }, { "unit": null, "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/id/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.245146Z", "action": 0, "target": "", "id": 543105, "action_name": "Resource update", "url": "https://translate-dev.freebsd.org/api/changes/543105/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575018/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/it_IT/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.410478Z", "action": 59, "target": "", "id": 543107, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543107/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575019/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/it_IT/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.410498Z", "action": 59, "target": "", "id": 543108, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543108/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575020/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/it_IT/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.410516Z", "action": 59, "target": "", "id": 543109, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543109/?format=api" }, { "unit": null, "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/it_IT/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.410534Z", "action": 0, "target": "", "id": 543110, "action_name": "Resource update", "url": "https://translate-dev.freebsd.org/api/changes/543110/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575022/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/ko/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.585011Z", "action": 59, "target": "", "id": 543112, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543112/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575023/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/ko/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.585031Z", "action": 59, "target": "", "id": 543113, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543113/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575024/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/ko/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.585049Z", "action": 59, "target": "", "id": 543114, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543114/?format=api" }, { "unit": null, "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/ko/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.585067Z", "action": 0, "target": "", "id": 543115, "action_name": "Resource update", "url": "https://translate-dev.freebsd.org/api/changes/543115/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575026/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/nb_NO/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.758207Z", "action": 59, "target": "", "id": 543117, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543117/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575027/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/nb_NO/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.758227Z", "action": 59, "target": "", "id": 543118, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543118/?format=api" }, { "unit": "https://translate-dev.freebsd.org/api/units/1575028/?format=api", "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/nb_NO/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.758245Z", "action": 59, "target": "", "id": 543119, "action_name": "String updated in the repository", "url": "https://translate-dev.freebsd.org/api/changes/543119/?format=api" }, { "unit": null, "component": "https://translate-dev.freebsd.org/api/components/documentation/articlesrc-scripting_index/?format=api", "translation": "https://translate-dev.freebsd.org/api/translations/documentation/articlesrc-scripting_index/nb_NO/?format=api", "user": null, "author": null, "timestamp": "2023-05-21T18:23:24.758263Z", "action": 0, "target": "", "id": 543120, "action_name": "Resource update", "url": "https://translate-dev.freebsd.org/api/changes/543120/?format=api" } ] }{ "count": 3424, "next": "