?/*
* Copyright © Aleksey Nemiro, 2016. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
module SmallServerAdmin.Localization {
/** Russian resources. */
export class RU implements ILocalization {
//#region ..Common..
/**
* Loading...
*/
public Loading: string = '????????...';
/** Saving... */
public Saving: string = '??????????...';
/** Deleting... */
public Deleting: string = '????????...';
/** Preparing... */
public Preparing: string = '??????????...';
/** Preparing form. Please wait... */
public PreparingFormWait: string = '?????????? ?????. ??????????, ?????????...';
/** Success */
public Success: string = '?????';
/**
* Error
*/
public Error: string = '??????';
/** Ok */
public Ok: string = 'Ok';
/** Total */
public Total: string = '?????';
/** Kb */
public Kb: string = '??';
/** Mb */
public Mb: string = '??';
/** Gb */
public Gb: string = '??';
/** In Use */
public InUse: string = '????????????';
/** New Group */
public NewGroup: string = '????? ??????';
/** New User */
public NewUser: string = '????? ????????????';
//#endregion
//#region ..MasterController..
/**
* Config not found.<br />Please check <code>$config[\'client\']</code> of the <strong>/ssa.config.php</strong>.
*/
public ConfigNotFound: string = '???????????? ?? ???????.<br />??????????, ????????? ???????? <code>$config[\'client\']</code> ? ????? <strong>/ssa.config.php</strong>.';
/**
* Servers controller not found.
*/
public ServersControllerNotFound: string = '?????????? ?????????? ????????? ?? ??????.';
//#endregion
//#region ..FileListController..
/**
* Loading the file contents...
*/
public LoadingFileContents: string = '????????? ??????????? ?????...';
/**
* Getting the file info...
*/
public GettingFileInfo: string = '?????? ?????????? ? ?????...';
//#endregion
//#region ..PanelServersController..
/** Unable to connect to the server.<br />Check the connection settings and try again. */
public UnableToConnectTheServer: string = '?????????? ???????????? ? ???????.<br />????????? ????????? ?????????? ? ????????? ???????.';
/** Connection error */
public ConnectionError: string = '?????? ??????????';
//#endregion
//#region ..ServiceListController..
/** No services to reload. */
public NoServicesToReload: string = '??? ????? ??? ???????????.';
/**
* Cannot reload service {0}.
*/
public CannotReloadService: string = '?? ??????? ????????????? ?????? {0}.';
//#endregion
//#region ..ServiceListController..
/** Incorrect site name! */
public IncorrectSiteName: string = '??????? ???????????? ??? ?????!';
/**
* Is removed the site <strong>{0}</strong>. Please wait...
*/
public IsRemovedSiteWait: string = '???? ???????? ????? <strong>{0}</strong>. ??????????, ?????????...';
/** Loading list of sites... */
public LoadingListOfSites: string = '???????? ?????? ??????...';
/**
* Server is required.
*/
public ServerIsRequired: string = '????????? ??????.';
//#endregion
//#region ..SVN..
/** Obtaining the group data from the server. Please wait... */
public ObtainingTheGroupWait: string = '????????? ?????????? ? ??????. ??????????, ?????????...';
/** Saving the group. Please wait... */
public SavingTheGroupWait: string = '?????????? ??????. ??????????, ?????????...';
/** Saved successfully!<br />Loading list of groups. Please wait... */
public SavedSuccessfullyLoadingListOfGroups: string = '?????? ??????? ?????????!<br />?????????? ?????? ?????. ??????????, ?????????...';
/** Incorrect group name! */
public IncorrectGroupName: string = '??????? ???????????? ??? ??????!';
/**
* Is removed the group <strong>{0}</strong>. Please wait...
*/
public IsRemovedTheGroupWait: string = '???? ???????? ?????? <strong>{0}</strong>. ??????????, ?????????...';
/** Loading list of groups... */
public LoadingListOfGroups: string = '???????? ?????? ?????...';
/** Obtaining the repository info from the server. Please wait... */
public ObtainingTheRepositoryWait: string = '????????? ?????????? ? ?????????. ??????????, ?????????...';
/** New Repository */
public NewRepository: string = '????? ?????????';
/** Saving the respository. Please wait... */
public SavingTheRepositoryWait: string = '?????????? ?????????. ??????????, ?????????...';
/** Saved successfully!<br />Loading list of repositories. Please wait... */
public SavedSuccessfullyLoadingListOfRepositories: string = '????????? ??????? ?????????!<br />?????????? ??????. ??????????, ?????????...';
/** Incorrect repository name! */
public IncorrectRepositoryName: string = '??????? ???????????? ??? ?????????!';
/** Is removed the repository <strong>{0}</strong>. Please wait... */
public IsRemovedTheRepositoryWait: string = '???? ???????? ????????? <strong>{0}</strong>. ??????????, ?????????...';
/** Loading list of repositories... */
public LoadingListOfRepositories: string = '???????? ?????? ????????...';
//#endregion
//#region ..Users..
/** Obtaining the user data from the server. Please wait... */
public ObtainingTheUserWait: string = '????????? ?????? ???????????? ? ???????. ??????????, ?????????...';
/** Saving the user. Please wait... */
public SavingTheUserWait: string = '?????????? ????????????. ??????????, ?????????...';
/** Saved successfully!<br />Loading list of users. Please wait... */
public SavedSuccessfullyLoadingListOfUsers: string = '???????????? ??????? ????????!<br />?????????? ?????? ?????????????. ??????????, ?????????...';
/** Is removed the user <strong>{0}</strong>. Please wait... */
public IsRemovedUserWait: string = '???? ???????? ???????????? <strong>{0}</strong>. ??????????, ?????????...';
/** Loading list of users... */
public LoadingListOfUsers: string = '???????? ?????? ?????????????...';
/** The account has been successfully updated! */
public TheAccountHasBeenUpdated: string = '??????? ?????? ??????? ?????????!';
/** The user data has been successfully updated! */
public TheUserHasBeenUpdated: string = '?????? ???????????? ??????? ?????????!';
/** The user groups list has been successfully updated! */
public TheUserGroupsHasBeenUpdated: string = '?????? ????? ???????????? ??????? ????????!';
/** The user has been successfully created! */
public TheUserHasBeenCreated: string = '???????????? ??????? ??????!';
/** Incorrect user name! */
public IncorrectUserName: string = '??????? ???????????? ??? ????????????!';
//#endregion
}
}
|