Amos руководство пользователя

ГлавнаяБиблиотека # Library Справочники # Handbooks Инструкции к аппаратуре мостика # Bridge Equipment ManualsКраткое руководство по работе с системой amos for windows

< Назад
Вперёд >

Скачать

Последние публикации

  • 20 великих стихотворений

  • Encyclopedia of Ship Technology

  • Кодекс безопасной практики размещения и крепления груза (Кодекс РКГ/CSS Code)

  • Техническое обслуживание судового навигационного электро оборудования и приборов

  • Терминологический справочник судоводителя по ведению дел и документации на английском языке

  • Технологии обработки мусора на судах. Инсинераторы

  • Theory and Practices of Marine Pilotage

AMOS stands for Automated Manipulation Of Strings. AMOS is a central repository of Moodle strings and their history. It tracks the addition of English strings into Moodle code, gathers translations, handles common translation tasks and generates language packages to be deployed on Moodle servers.

The name was chosen in honour of John Amos Comenius, the author of Janua linguarum reserata (Gate to Languages Unlocked). Sorry Tori  ;-)

AMOS is hosted on our Moodle translation site.

Basic concepts

AMOS consists of several tools available via the main navigation block — Translator, Stage, Stashes, Contributions and Log.

  • Translator — is a tool that allows you to filter strings you want to work on and translate them.
  • Stage — is a temporary working area that holds the strings you have translated during the current session. Maintainers can permanently commit the stage into the strings repository. Contributors can submit the stage for maintainers.
  • Stashes — are snapshots of the stage. Imagine them as ordinary files at your computer where you can save your work. You can submit your stash to the language pack maintainers.
  • Contributions — is a database tracking all submitted contributions and their current status. Records in this database are like issues in the Moodle tracker with the translated strings attached.
  • Repository — a database of all Moodle strings and their history running at lang.moodle.org server.
  • Log — displays the log of all modifications of Moodle strings.

Translation workflow

The following data flow diagram illustrates how AMOS tools are used during the translation process.

amos-workflow4.png

The key AMOS component is the staging area or shortly the stage. It holds translated strings temporarily during your current login session. If you log out, the stage is cleared (though there is a backup — see below). There are several ways how translations can be staged, that is how translated strings can be put into the stage:

  • by using the AMOS translator
  • by importing strings from an uploaded file
  • by applying a previously created stash
  • by applying a submitted contribution

Language pack maintainers have write access to the AMOS strings repository. Therefore, they can commit their stage permanently. Once the stage is committed, staged strings are stored in the AMOS repository. Every hour, AMOS generates ZIP packages from the most recent snapshot of the repository. These ZIP packages are published on the language pack download pages https://download.moodle.org/langpack/. In addition, Moodle sites can install and update language packages automatically via Site administration > Language > Language packs.

Community members do not have write access to the repository so they can’t commit their stage. Instead, they can submit it to the maintainers. By submitting a stage, a new contribution record is created and language pack maintainers are notified by automatic email message. Maintainers can review the submitted contribution and, if they accept it, commit it on behalf of the contributor.

The stage can be also saved so you can interrupt your work and continue next time you come back to the site. The stage is saved into the so-called ‘stashing area’. The stashing area consists of stashes. A new stash is simply a snapshot copy of your current stage. AMOS automatically keeps one stash for you as a backup copy of your most recent stage. A stash can be submitted to the maintainers too.

AMOS tools

Using the translator tool

The translator tool page has two main parts. At the top, there is a filter form (1). You use that filter to get the strings you want to translate. When the filter settings are saved (2), a table with the filtered strings is displayed below.

Every row in the table represents a single string. The table has four columns. The first column (3) describes the version (or branch) where the string is used, its identifier and its component. You can see a text like

4.0 [completiondate,coursereport_completion]

That reads: this string is used in Moodle 4.0, its identifier is ‘completiondate’ and it belongs to ‘courserepor_completion’ component.

The second column (4) contains the English original of the string. Below the text, you can see Google icon. Click that icon to get automatic translation of the string into the language being translated. The next column contains a code of the language that this string is being translated to (for example «cs» for Czech).

Finally the last column contains the translation itself. If it is empty, the string is not translated yet, otherwise it displays the current translation. Click in the cell to turn it into the input editor. Insert the translation and click outside the cell to stage the translation. Note there is no submit button, the text is sent to the stage automatically in the background. You can see that the colour of the cell turned blue. Blue colour signalizes that the translation is currently staged.

You have many options of how to use the strings filter. You can work on a single component or all missing strings at once. You can search for strings containing a given text (either in English or the translated string) etc. You can check for strings in older versions, too but those strings are read-only. They get automatically pulled into AMOS from the CVS repository of 1.x translations.

The ‘permalink’ below the filter’s submit button can be used to keep the current filter settings. For example, you can bookmark a setting use regularly or you can copy the link URL and send it to somebody so they can set their filter just by visiting that URL.

When you finish translating, do not forget to visit the stage page. You probably want either commit it (if you are a lang pack maintainer) or submit it to maintainers so they can review your work and include it into the language pack.

Sadly, sometimes, AMOS may consider that your request-URI is too large to handle  :(

amos permalink request -uri too large4.png

Using the stage

Strings staged by a contributor

The translated strings are put into a temporary area called stage immediately after the cursor leaves the editor field. The stage holds your work before it is either committed into the repository (if you are language pack maintainer) or submitted to the maintainers for inclusion or stashed.

The stage is cleared when you logout. You have to explicitly commit or stash the stage so it is saved permanently. If you forget to do it, or there is a problem with the connectivity, your browser crashes or whatever, you can find your most recent snapshot of the stage in autosave stash.

If you are language pack maintainer, you can commit the stage into the repository so your work is registered and the translated strings become part of the official language package. You can also propagate the strings to other branches by selecting the branches you want the string to go to and hit the propagate button. It is a wise thing to do that, to save work and to keep consistency in the wording over the versions.

Updated language packages in ZIP format are published hourly at https://download.moodle.org/langpack/4.0/ — look at the bottom of the page to see the last update. At the same time, they become available for Moodle sites for automatic update.

The stage can also be used to import strings from files and to merge or compare versions of language packs.

Importing a file

Empty stage allows you to import strings from a file

Strings can be translated offline and uploaded back to AMOS using the stage page. The only supported format at the moment is common PHP format used by Moodle where strings are defined in associative array called $string. For obvious security reasons, AMOS can not actually execute PHP files uploaded by users. Instead, it parses the uploaded file in a similar way as PHP parser, looking for patterns that are considered as valid string definition. That means that not every valid PHP code is valid string definition. AMOS parser requires following conditions are met:

  • the filename is valid component name used by Moodle, for example moodle.php, enrol_manual.php or workshop.php
  • the file is valid PHP code without syntax errors — that means is passes the PHP lint check
  • strings are defined as elements of global array $string
  • strings are single quoted constants

Example of a valid file to import into AMOS (filename countries.php, Czech translation)

<?php

$string['AE'] = 'Spojené Arabské emiráty';
$string['AF'] = 'Afghánistán';
$string['CH'] = 'Švýcarsko';
$string['HU'] = 'Maďarsko';

?>

During the import, strings found in the file are added into your stage as if they were translated via web. You can commit them into repository if you have such privilege.

You can import several .php files at once if you put them into a ZIP file (Maximum size: 2MB) and import this ZIP file.

Using stashes

At any moment, you can save a snapshot of the current stage. We call such snapshot a stash. Stashed strings are kept forever until you drop them manually (please do not abuse this and keep your stashes reasonable big). To manage your stash, click on Stashes in the right menu of AMOS. You just see a list of the stashes. There are «peekaboo» buttons that appear when you mouse hoover over the stashes. The stash can be applied so that the stashed strings are copied back to the stage. What the pop does is apply and drop (delete) the stash. drop is like delete. submit to maintainer opens a form for doing just that.

There is one special stash record for every user called autosave stash. This stash keeps the most recent state of the stage. You may find it useful if you loose the current stage for any reason — your browser crashes, your internet connectivity dies or you accidentally unstage all strings. If that happens, just apply the autosave stash to get your work back. The autosave stash is updated every time you stage a string. So if your stage is empty and your autosave stash is full of strings and you go into the translator first without applying the stash, the autosave will be replaced with the new translated string. We recommend to experiment a bit with this feature first.

Using the log tool

The Log page allows even anonymous users to search in the history of commits tracked by AMOS. At the top of the page there is a filter that allows you to look for a particular information or report. It is important to realize how the filter actually works. Searching and filtering happens in two steps (this was necessary for performance reasons):

  • Firstly, commit records are searched based on the criteria specified in the Commit filter form. If there are more commits found matching the filter settings, only 100 most recent commits are processed.
  • Then, within the commits found, either all string modification records are returned, or you can filter these records, too. Settings in String filter form section are used in that case.

By default, the filter looks for all commits since the last time you logged in and than displays only strings at the currently translated branch modified by those commits.

Language packs and Moodle versions

When a new Moodle version is released, it will become the default version on your Amos — Translator page (see tick boxes at the top).

The suggested work flow is to continue your translation work for the new Moodle version and merge your work in the older versions.
Some time ago, people used to do that using the Amos — Stage page: Set the source version to the version you were working in and set the target version to the version you want the strings to be copied to. Nowadays AMOS automatically propagates (most of) the strings to all suitable branches.

Keeping track of your ‘favorite’ plugins strings to translate

You can use the permalink feature for frequently checking a finite set of additional plugins for missing or outdated string.

The permalink feature is supposed to work like this:

  • You use the AMOS filter settings (that is, you define which versions, components, etc., you want to see). For example, you can select version 4.0, then all core components and some additional components.
  • You press «Save filter settings» and let AMOS show you the strings.
  • Then you can copy or bookmark the URL that is available via the «Permalink» link.
  • Following that URL should set the filter back to the current settings.
  • The problem is that AMOS does not allow you to mix strings from one component version with strings from another component version at the moment. So you can’t see things like «Workshop 3.11 strings together with Essential 3.9 strings». You would have to select both 3.11 and 3.9 version fields, and both Workshop and Essential components. But that would lead to Workshop strings being displayed twice.

Note: It would be useful for you to have a couple of bookmarked / saved permalinks per version. So you would have one for «4.0 core and interesting additional plugins», another one for «3.11 interesting plugins», another one for «3.10 interesting plugins» etc. That way, you can regularly check these three or four links and have your areas of interested monitored well.

See also

  • Accepting submissions Instruction video for language pack maintainers
  • Contributing to a language pack Instruction video for language pack contributors
  • Changing the default language Instruction video on how to change your default language

TMT Automation AMOS Series User Manual

  1. Manuals
  2. Brands
  3. TMT Automation Manuals
  4. Garage Door Opener
  5. AMOS Series
  6. User manual

  • Contents

  • Table of Contents

  • Bookmarks

Quick Links

AMOS SERIES

Garage Door Openers

USER MANUAL

loading

Related Manuals for TMT Automation AMOS Series

  • Garage Door Opener TMT Automation Marble Series User Manual

Summary of Contents for TMT Automation AMOS Series

  • Page 1
    AMOS SERIES Garage Door Openers USER MANUAL…
  • Page 3
    WARNING : Please read this instruction manual carefully before the installation. This manual is exclusively for qualified install ation personnel. TMT Automation Inc. is not responsible for improper installation and failure to comply with local electrical and building regulations. Keep all the components of garage opener system and this manual for further consultation.
  • Page 4: Description Of The Automation

    2. PRODUCT DESCRIPTION 2.1 APPLICATIONS Garage door opener is applied for residential automation of up and over doors and sectional doors and has to be operated with electricity and it’s forbidden to be operated by back-up batteries for normal use.Back-up batteries are only allowed for emergent operation when there is a power failure, and the carriage can be released by pulling the cord to move the door manually.

  • Page 5
    3. Installation 3.1 Inventory of a garage door opener C Rail Front hold Rear Pulley Support Front Pulley Release Rope Tensioner Door Bracket Ceiling Bracket Header bracket Bent Arm Straight Arm Bracket Bracket Hardware Inventory Door Bracket Locator Ceiling Support Bracket Blocker x1 Locking Screws…
  • Page 6: Rail Assembly

    3.2 Rail assembly Assemble the front and middle rail with the junction, and make sure is located at the middle of the protruding point. Assemble the back and middle rail with another junction, and make sure is located at the middle of the protruding point.

  • Page 7
    3.3 Attach the rail to the motor 1. Connect the (3) Rear pulley support to the output shaft of the motor. 2. Fasten the rail on the motor with (9) Motor hold bracket and the (25) Hex nuts. 3. Fasten the (10) Ceiling hold bracket and (13) Ceiling bracket at the rear side between the motor and the rear blocker with Hex bolt (21) and Hex nuts (24).
  • Page 8: Connect Door Arm To Trolley

    3.5 Connect release section to the garage door WARNING Connect the (7) Release rope on the (8) Outer trolley assy To prevent possible SERIOUS INJURY or DEATH from a falling Secure handle with overhand knot garage door: ENGAGED and heat seal rope. •…

  • Page 9
    3.6 Final steps before system learning 1. Install the (18) Blocker on the door open position. 2. Attached the warning sign to the (7) release rope. 3. Connect the power to the motor. Make sure the electric plug and socket are well connected. WARNING Blocker To prevent possible SERIOUS INJURY or DEATH from…
  • Page 10: Accessories Connection

    4.2 Door position for start-up phase 1. Connect the plug.If necessary, use a commercial adaptor if the plug on the AMOS Series unit does not correspond to the socket available.As soon as the system is powered, you should check the LED in the display. Make sure the LED display is ON.

  • Page 11
    4.3 Transmitter memorizing and erasing process A. Transmitter Memorizing: Press “RF Learn” button for 3 seconds, and the Display will show “CS”; then press the transmitter A button within 10 seconds; the“CS” will blink three times and show “CS”. After 10 seconds without any movement, “CS”…
  • Page 12
    3 SEC Step.1 Step.2 Step.3 Step.4 B. Restore Default Setting: Press “RF” and “DOWN” buttons for 3 seconds, and the LED display shows “CL” to recover the default settings. Default Setting 3 SEC C. Motor current auto-detection The LED display shows the current consumption of the motor During the system learning procedure, the control panel will automatically detect the current consumption from each motor, indicate the resistance level of the gate whiling the motor operation.
  • Page 13
    4.5 Programmable function indication led LED Display Programmable Functions LED Display Programmable Functions Start transmitter learning mode. Operation testing Cleaned all studied transmitter. System Learning Fail. Set up Open Limit. System Learning Completely. Set up Close Limit. System setting clear 4.6 How to set the parameter: Step 1: Press the“Set”…
  • Page 14
    4.7 Programmable function setting LED Display Definition Function Value Description Deceleration Point 1.The default setting is «1-3» (% full operation) Main Operation Key Function off 1.The default setting is «2-1» A Key B Key C Key D Key Function off 1.The default setting is «3-2″…
  • Page 15
    LED Display Definition Function Value Description Overcurrent setting of open 2A as overcurrent value of open limit 1. The default setting is «C-3» limit 3A as overcurrent value of open limit 4A as overcurrent value of open limit 5A as overcurrent value of open limit 6A as overcurrent value of open limit 7A as overcurrent value of open limit 8A as overcurrent value of open limit…
  • Page 16: Specification

    5.2 Installation of Photocell The safety photocells are security devices for control automatic gates. Consist of one transmitter and one receiver based in waterproof covers; it is triggered while breaking the path of the beams. SPECIFICATION: Detection Method Through Beam Sensing Range MAX~15m Input Voltage…

  • Page 17
    6. Specification Garage Door Opener AMOS80 AMOS120 Volt AC 220V / 110V ; AC 220V / 110V ; 50Hz~60Hz 50Hz~60Hz Motor volt DC24V DC24V Power 120W Force 800N 1200N Remote frequency 433.92MHZ 433.92MHZ Max door area 10-12m² 14-16m² Temperature range C ~ +50 C ~ +50 Rail length…
  • Page 18
    What you need when installing: • Wi-Fi: The home Wi-Fi reception has to be stable, and the login username and password of your home Wi-Fi are required. • Smart Devices: One of the devices is required, an IPhone 5 or later, a device using iOS8.0 or later, or Android 4.2 or later.
  • Page 19
    STEP 5:Set Pin code for the first connection. Pin STEP 6:Connect to an accessible wireless network code will be needed for authorization and advanced setting. None English SSID can not be shown on this page connect to avaliable Wi-Fi Press Set and start 60 sec countdown LED Status: The Red LED will blink when LED Status: The LED turn Green when the…
  • Page 20
    8. Accessories TM3 Transmitter Frequency 433.92Mhz Coding Rolling code Buttons 4 buttons Power Supply 3V with one CR2032 button type lithium battery Operating Temperature -20°C~+50°C Dimension 37*67.5*12 (mm) FL2 Flashing Light Voltage 24V DC Operating Temperature -20°C~+50°C Installation Horizontally or vertically installed Dimension 74*167*58.4 (mm) H2 Photocells…

Like this post? Please share to your friends:
  • Риниколд хоткап порошок инструкция по применению
  • Коронавир таблетки 200 мг инструкция по применению цена
  • Таблетки гевискон от чего они помогают инструкция по применению взрослым
  • Инструкция лего дупло 6157 зоопарк инструкция 6157
  • Общая инструкция по пожарной безопасности в организации по новым правилам