Units
Translation components API.
See the Weblate's Web API documentation for detailed description of the API.
GET /api/translations/appinventor/component-info/zh_Hant/units/?format=api&page=6
https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/units/?format=api&page=7", "previous": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/units/?format=api&page=5", "results": [ { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "<p>A formatting element in which to place components that should be displayed one below another. (The first child component is stored on top, the second beneath it, etc.) If you wish to have components displayed next to one another, use <code>HorizontalArrangement</code> instead.</p><p> This version is scrollable", "previous_source": "", "target": "<p>垂直布局元件可讓其中的元件自上而下垂直排列,最先加入的元件在頂部,後面的元件依次向下排列。內部元件在水平方向上居左對齊。如果希望內部元件自左向右排列,則需使用水平布局元件。</p><p>本元件支援捲動軸。</p>", "id_hash": 8596439937654361734, "content_hash": 1715306248895777628, "location": "", "context": "VerticalScrollArrangementHelpStringComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 101, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 46, "priority": 100, "id": 228413, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=f74cb093d0de8e86", "url": "https://weblate.appinventor.mit.edu/api/units/228413/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10822/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "A multimedia component capable of playing videos. When the application is run, the VideoPlayer will be displayed as a rectangle on-screen. If the user touches the rectangle, controls will appear to play/pause, skip ahead, and skip backward within the video. The application can also control behavior by calling the <code>Start</code>, <code>Pause</code>, and <code>SeekTo</code> methods. <p>Video files should be in 3GPP (.3gp) or MPEG-4 (.mp4) formats. For more details about legal formats, see <a href=\"http://developer.android.com/guide/appendix/media-formats.html\" target=\"_blank\">Android Supported Media Formats</a>.</p><p>App Inventor for Android only permits video files under 1 MB and limits the total size of an application to 5 MB, not all of which is available for media (video, audio, and sound) files. If your media files are too large, you may get errors when packaging or installing your application, in which case you should reduce the number of media files or their sizes. Most video editing software, such as Windows Movie Maker and Apple iMovie, can help you decrease the size of videos by shortening them or re-encoding the video into a more compact format.</p><p>You can also set the media source to a URL that points to a streaming video, but the URL must point to the video file itself, not to a program that plays the video.", "previous_source": "", "target": "<p>用於播放視訊的多媒體元件,可在app中顯示一個方框,使用者觸摸時會現控制箭頭:播放/暫停、快進、快退。或是透過播放, 暫停, 尋找等方法來控制影片播放。</p><p>檔案格式必須為.wmv、.3gp或.mp4格式,關於媒體格式的詳細內容,參見<a href=\"http:////developer.android.com/guide/appendix/media-formats.html\" target=\"_blank\">Android裝置支持的媒體檔案格式。</a></p><p>App Inventor限定單一視訊檔案不能超過1MB,於單一app的總量不能超過5MB,而且5MB不能都用於媒體檔案。如果媒體檔案過大,在打包時會出錯或者無法安裝應用,屆時需要減少媒體檔數量或檔案大小。有許多視訊編輯軟體,如Windows Movie Maker以及MAC OSX的iMovie等可以降低檔案大小,例如剪輯影片或改用更高的壓縮格式。</p><p>您也可以將本元件的來源屬性設定為URL位址來播放網路上的視訊資源,但URL必須指向視訊檔案本身,而不是播放程式。</p>", "id_hash": 2546264613736453088, "content_hash": -885914485160952578, "location": "", "context": "VideoPlayerHelpStringComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 102, "has_suggestion": false, "has_comment": false, "has_failing_check": true, "num_words": 208, "priority": 100, "id": 228414, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=a356262cede893e0", "url": "https://weblate.appinventor.mit.edu/api/units/228414/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10823/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "The Voting component communicates with a Web service to retrieve a ballot and send back users'' votes. <p>The application should call the method <code>RequestBallot</code>, usually in the <code>Initialize</code> event handler, in order to get the ballot question and options from the Web service (specified by the <code>ServiceURL</code> property). Depending on the response from the Web service, the system will raise one of the following three events: <ol> <li> <code>GotBallot</code>, indicating that the ballot question and options were retrieved and the properties <code>BallotQuestion</code> and <code>BallotOptions</code> have been set.</li> <li> <code>NoOpenPoll</code>, indicating that no ballot question is available.</li> <li> <code>WebServiceError</code>, indicating that the service did not provide a legal response and providing an error messages.</li> </ol></p> <p>After getting the ballot, the application should allow the user to make a choice from among <code>BallotOptions</code> and set the property <code>UserChoice</code> to that choice. The application should also set <code>UserId</code> to specify which user is voting.</p> <p>Once the application has set <code>UserChoice</code> and <code>UserId</code>, the application can call <code>SendBallot</code> to send this information to the Web service. If the service successfully receives the vote, the event <code>GotBallotConfirmation</code> will be raised. Otherwise, the event <code>WebServiceError</code> will be raised with the appropriate error message.</p>", "previous_source": "", "target": "本元件可與網路服務溝通來取得選票,並發送使用者的投票結果。<p>使用本元件的 app 應在 <code>Initialize</code>事件中呼叫<code>RequestBallot</code>方法,藉此由網路服務(由<code>ServiceURL</code>屬性指定)取得選票問題與選項。根據網路服務的回應狀況,系統會觸發以下三個事件其中之一:<ol> <li> <code>GotBallot</code>,代表已取得選票問題與選項,並順利設定 <code>BallotQuestion</code>與<code>BallotOptions</code>等屬性。</li> <li> <code>NoOpenPoll</code>:代表無可用的選票問題。</li> <li> <code>WebServiceError</code>:代表網路服務無法正確回應而產生錯誤訊息。</li> </ol></p> <p>取得選票之後,app 應可讓使用者從<code>BallotOptions</code>屬性中擇一,並根據選擇結果來設定<code>UserChoice</code>屬性。app 也必須設定<code>UserId</code>來指定是哪一名使用者在進行投票。</p> <p>設定<code>UserChoice</code>與<code>UserId</code>等屬性之後,app 就可呼叫<code>SendBallot</code>方法,將這筆資訊發送到網路服務。如果網路服務順利收到這筆投票,將觸發<code>GotBallotConfirmation</code>事件,否則將觸發<code>WebServiceError</code>事件並回傳 對應的錯誤訊息。</p>", "id_hash": 4060510300826034195, "content_hash": 1207171294075062792, "location": "", "context": "VotingHelpStringComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 103, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 197, "priority": 100, "id": 228415, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=b859d49ae78ce013", "url": "https://weblate.appinventor.mit.edu/api/units/228415/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10824/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "Non-visible component that provides functions for HTTP GET, POST, PUT, and DELETE requests.", "previous_source": "", "target": "本元件屬於不可見元件,用於發送 HTTP 的 GET、POST、PUT 及 DELETE 請求。", "id_hash": 6629690054851160286, "content_hash": 6684982619762703708, "location": "", "context": "WebHelpStringComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 104, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 13, "priority": 100, "id": 228416, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=dc0163fab257e8de", "url": "https://weblate.appinventor.mit.edu/api/units/228416/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10825/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "Component for viewing Web pages. The Home URL can be specified in the Designer or in the Blocks Editor. The view can be set to follow links when they are tapped, and users can fill in Web forms. Warning: This is not a full browser. For example, pressing the phone''s hardware Back key will exit the app, rather than move back in the browser history.<p />You can use the WebViewer.WebViewString property to communicate between your app and Javascript code running in the Webviewer page. In the app, you get and set WebViewString. In the WebViewer, you include Javascript that references the window.AppInventor object, using the methoods </em getWebViewString()</em> and <em>setWebViewString(text)</em>. <p />For example, if the WebViewer opens to a page that contains the Javascript command <br /> <em>document.write(\"The answer is\" + window.AppInventor.getWebViewString());</em> <br />and if you set WebView.WebVewString to \"hello\", then the web page will show </br ><em>The answer is hello</em>. <br />And if the Web page contains Javascript that executes the command <br /><em>window.AppInventor.setWebViewString(\"hello from Javascript\")</em>, <br />then the value of the WebViewString property will be <br /><em>hello from Javascript</em>.", "previous_source": "", "target": "<p>該元件用於瀏覽網頁,可以在外觀編排或程式設計視窗中設定預設網址(URL),可以設定視窗內的連結是否可以回應使用者點選來跳轉到新頁面。使用者也可以在視窗中填寫表單。</p><p>注意:本元件不是網路瀏覽器,當點選裝置上的\"返回\"鍵時將退出app,而非根據歷史記錄回到上一頁。</p>", "id_hash": 6885217202106028304, "content_hash": -8889655412993766606, "location": "", "context": "WebViewerHelpStringComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 105, "has_suggestion": false, "has_comment": false, "has_failing_check": true, "num_words": 181, "priority": 100, "id": 228417, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=df8d3490dcf05110", "url": "https://weblate.appinventor.mit.edu/api/units/228417/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10826/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "Use this component to translate words and sentences between different languages. This component needs Internet access, as it will request translations to the Yandex.Translate service. Specify the source and target language in the form source-target using two letter language codes. So\"en-es\" will translate from English to Spanish while \"es-ru\" will translate from Spanish to Russian. If you leave out the source language, the service will attempt to detect the source language. So providing just \"es\" will attempt to detect the source language and translate it to Spanish.<p /> This component is powered by the Yandex translation service. See http://api.yandex.com/translate/ for more information, including the list of available languages and the meanings of the language codes and status codes. <p />Note: Translation happens asynchronously in the background. When the translation is complete, the \"GotTranslation\" event is triggered.", "previous_source": "", "target": "使用此元件在不同語言之間翻譯單詞和句子。 該元件需要訪問網路,因為它會請求對 Yandex.Translate 服務進行翻譯。 使用兩個字母語言代碼以 source-target 形式指定源語言和目標語言。 所以\"en-es\"將從英語翻譯成西班牙語,而\"es-ru\"將從西班牙語翻譯成俄語。 如果您省略來源語言,該服務將嘗試檢測來源語言。 因此,僅提供\"es\"將嘗試檢測來源語言並將其翻譯成西班牙語。<p /> 該元件由 Yandex 翻譯服務提供支持。 有關更多信息,包括可用語言清單以及語言代碼和狀態代碼的含義,請參見 http://api.yandex.com/translate/。 <p />注意:翻譯在後台非同步產生。 翻譯完成後,觸發\"取得翻譯\"事件。", "id_hash": 763295554873137108, "content_hash": -2929400926414952738, "location": "", "context": "YandexTranslateHelpStringComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 106, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 136, "priority": 100, "id": 228418, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=8a97c54356d917d4", "url": "https://weblate.appinventor.mit.edu/api/units/228418/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10827/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "AccelerometerSensor", "previous_source": "", "target": "加速度感測器", "id_hash": 7820620602715805115, "content_hash": 7951572024696537001, "location": "", "context": "accelerometerSensorComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 107, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 1, "priority": 100, "id": 228419, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=ec886d00b3fa15bb", "url": "https://weblate.appinventor.mit.edu/api/units/228419/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10828/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "ActivityStarter", "previous_source": "", "target": "Activity啟動器", "id_hash": -744755780864629638, "content_hash": 6718400901731127020, "location": "", "context": "activityStarterComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 108, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 1, "priority": 100, "id": 228420, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=75aa18902d25247a", "url": "https://weblate.appinventor.mit.edu/api/units/228420/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10829/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "AnomalyDetection", "previous_source": "", "target": "異常偵測", "id_hash": 4418272182413832253, "content_hash": -5605292537222005915, "location": "", "context": "anomalyDetectionComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 109, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 1, "priority": 100, "id": 228421, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=bd50db2411c4303d", "url": "https://weblate.appinventor.mit.edu/api/units/228421/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10830/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "Ball", "previous_source": "", "target": "球形精靈", "id_hash": -547853704417072175, "content_hash": -8160099328551832854, "location": "", "context": "ballComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 110, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 1, "priority": 100, "id": 228422, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=7865a1f55f56abd1", "url": "https://weblate.appinventor.mit.edu/api/units/228422/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10831/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "BarcodeScanner", "previous_source": "", "target": "條碼掃描器", "id_hash": 7990239967777805675, "content_hash": 6730311684987082664, "location": "", "context": "barcodeScannerComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 111, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 1, "priority": 100, "id": 228423, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=eee308eaa586556b", "url": "https://weblate.appinventor.mit.edu/api/units/228423/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10832/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "Barometer", "previous_source": "", "target": "氣壓感測器", "id_hash": 1308125008845185688, "content_hash": 576810294361708446, "location": "", "context": "barometerComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 112, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 1, "priority": 100, "id": 228424, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=922764c3ca05a298", "url": "https://weblate.appinventor.mit.edu/api/units/228424/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10833/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "BluetoothClient", "previous_source": "", "target": "藍牙客戶端", "id_hash": -4554449088273561298, "content_hash": 5799924181058351748, "location": "", "context": "bluetoothClientComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 113, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 1, "priority": 100, "id": 228425, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=40cb58af49da492e", "url": "https://weblate.appinventor.mit.edu/api/units/228425/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10834/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "BluetoothServer", "previous_source": "", "target": "藍牙伺服端", "id_hash": 812924417807811763, "content_hash": -6831408735776587, "location": "", "context": "bluetoothServerComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 114, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 1, "priority": 100, "id": 228426, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=8b48167370ad04b3", "url": "https://weblate.appinventor.mit.edu/api/units/228426/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10835/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "Button", "previous_source": "", "target": "按鈕", "id_hash": -1849760906834759949, "content_hash": 8907536753518851344, "location": "", "context": "buttonComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 115, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 1, "priority": 100, "id": 228427, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=6654544174b5aef3", "url": "https://weblate.appinventor.mit.edu/api/units/228427/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10836/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "Camcorder", "previous_source": "", "target": "錄影機", "id_hash": -2915638164128630268, "content_hash": 7298232885834961591, "location": "", "context": "camcorderComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 116, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 1, "priority": 100, "id": 228428, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=57899289958a7a04", "url": "https://weblate.appinventor.mit.edu/api/units/228428/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10837/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "Camera", "previous_source": "", "target": "照相機", "id_hash": -1910080152872209859, "content_hash": 7520995969171821186, "location": "", "context": "cameraComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 117, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 1, "priority": 100, "id": 228429, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=657e08389387323d", "url": "https://weblate.appinventor.mit.edu/api/units/228429/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10838/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "Canvas", "previous_source": "", "target": "畫布", "id_hash": -4995648273953929093, "content_hash": 9176727600392054180, "location": "", "context": "canvasComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 118, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 1, "priority": 100, "id": 228430, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=3aabe45ce82ec87b", "url": "https://weblate.appinventor.mit.edu/api/units/228430/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10839/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "Chart", "previous_source": "", "target": "圖表", "id_hash": -7238501196045587632, "content_hash": -8603492584047315513, "location": "", "context": "chartComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 119, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 1, "priority": 100, "id": 228431, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=1b8bad836f766b50", "url": "https://weblate.appinventor.mit.edu/api/units/228431/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10840/?format=api" }, { "translation": "https://weblate.appinventor.mit.edu/api/translations/appinventor/component-info/zh_Hant/?format=api", "source": "ChartData2D", "previous_source": "", "target": "圖表資料2D", "id_hash": 3581145988917468616, "content_hash": -1323986692693696341, "location": "", "context": "chartData2DComponentPallette", "comment": "", "flags": "", "fuzzy": false, "translated": true, "position": 120, "has_suggestion": false, "has_comment": false, "has_failing_check": false, "num_words": 1, "priority": 100, "id": 228432, "web_url": "https://weblate.appinventor.mit.edu/translate/appinventor/component-info/zh_Hant/?checksum=b1b2c94d9e3d9dc8", "url": "https://weblate.appinventor.mit.edu/api/units/228432/?format=api", "source_info": "https://weblate.appinventor.mit.edu/api/sources/10841/?format=api" } ] }{ "count": 229, "next": "