├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── mycollab-app-community ├── pom.xml └── src │ └── main │ ├── assembly │ └── src.xml │ ├── config │ └── application.properties.ftl │ ├── docker │ ├── Dockerfile │ └── postgres.yml │ ├── installer-resources │ ├── LICENSE.html │ └── executor.jar │ ├── java │ └── com │ │ └── mycollab │ │ └── widgetset │ │ └── MyCollabWidgetSet.gwt.xml │ ├── lib │ └── README.txt │ ├── logs │ └── README │ ├── resources │ ├── VAADIN │ │ └── widgetsets │ │ │ ├── WEB-INF │ │ │ └── deploy │ │ │ │ └── com.mycollab.widgetset.MyCollabWidgetSet │ │ │ │ └── rpcPolicyManifest │ │ │ │ └── manifest.txt │ │ │ └── com.mycollab.widgetset.MyCollabWidgetSet │ │ │ ├── 26172F29D0E91258100ABC3FB4BE06B5.cache.js │ │ │ ├── 26172F29D0E91258100ABC3FB4BE06B5.cache.js.gz │ │ │ ├── 333A66D5307B1C8C9935C59A877F1993.cache.eot │ │ │ ├── 51DCB1D3F3D956ACC80F89D3CF0AC5BE.cache.woff │ │ │ ├── C81F8CA7CA7012F31BDE883DF6C99E61.cache.svg │ │ │ ├── D03281BC3FDB49177B485D1DC10A13C4.cache.ttf │ │ │ ├── ckeditor │ │ │ ├── styles.css │ │ │ └── styles.css.gz │ │ │ ├── clear.cache.gif │ │ │ ├── com.mycollab.widgetset.MyCollabWidgetSet.devmode.js │ │ │ ├── com.mycollab.widgetset.MyCollabWidgetSet.devmode.js.gz │ │ │ ├── com.mycollab.widgetset.MyCollabWidgetSet.nocache.js │ │ │ ├── com.mycollab.widgetset.MyCollabWidgetSet.nocache.js.gz │ │ │ ├── compilation-mappings.txt │ │ │ ├── cropper │ │ │ └── style.css │ │ │ ├── deferredjs │ │ │ └── 26172F29D0E91258100ABC3FB4BE06B5 │ │ │ │ ├── 1.cache.js │ │ │ │ ├── 1.cache.js.gz │ │ │ │ ├── 10.cache.js │ │ │ │ ├── 10.cache.js.gz │ │ │ │ ├── 11.cache.js │ │ │ │ ├── 11.cache.js.gz │ │ │ │ ├── 12.cache.js │ │ │ │ ├── 12.cache.js.gz │ │ │ │ ├── 13.cache.js │ │ │ │ ├── 13.cache.js.gz │ │ │ │ ├── 14.cache.js │ │ │ │ ├── 14.cache.js.gz │ │ │ │ ├── 2.cache.js │ │ │ │ ├── 2.cache.js.gz │ │ │ │ ├── 3.cache.js │ │ │ │ ├── 3.cache.js.gz │ │ │ │ ├── 4.cache.js │ │ │ │ ├── 4.cache.js.gz │ │ │ │ ├── 5.cache.js │ │ │ │ ├── 5.cache.js.gz │ │ │ │ ├── 6.cache.js │ │ │ │ ├── 6.cache.js.gz │ │ │ │ ├── 7.cache.js │ │ │ │ ├── 7.cache.js.gz │ │ │ │ ├── 8.cache.js │ │ │ │ ├── 8.cache.js.gz │ │ │ │ ├── 9.cache.js │ │ │ │ └── 9.cache.js.gz │ │ │ ├── drophere.gif │ │ │ ├── easyuploads.css │ │ │ ├── easyuploads.css.gz │ │ │ ├── ext_token_field │ │ │ ├── exttokenfield.css │ │ │ └── exttokenfield.css.gz │ │ │ ├── listbuilder │ │ │ ├── styles.css │ │ │ └── styles.css.gz │ │ │ ├── popupbutton │ │ │ ├── popupbutton.css │ │ │ └── popupbutton.css.gz │ │ │ ├── stackpanel │ │ │ ├── styles.css │ │ │ └── styles.css.gz │ │ │ └── vaadin-combobox-multiselect │ │ │ └── styles.css │ └── banner.txt │ └── scripts │ ├── MyCollab7.exe │ ├── MyCollab7amd64.exe │ ├── MyCollab7ia64.exe │ ├── MyCollab7w.exe │ ├── installService.bat │ ├── mycollab.bat │ ├── mycollab.sh │ ├── service.bat │ ├── shutdown.bat │ ├── shutdown.sh │ ├── startup.bat │ ├── startup.sh │ └── unInstallService.bat ├── mycollab-caching ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── mycollab │ ├── cache │ ├── CleanCacheEvent.kt │ ├── IgnoreCacheClass.kt │ └── service │ │ ├── CacheService.kt │ │ └── impl │ │ └── CacheServiceImpl.kt │ └── concurrent │ ├── DistributionLockService.kt │ └── DistributionLockUtil.kt ├── mycollab-config ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── mycollab │ │ ├── configuration │ │ ├── ApplicationConfiguration.kt │ │ ├── ApplicationProperties.java │ │ ├── EmailConfiguration.kt │ │ ├── EnDecryptHelper.kt │ │ ├── IDeploymentMode.kt │ │ ├── ServerConfiguration.kt │ │ └── SiteConfiguration.java │ │ └── logging │ │ ├── ExceptionFilter.kt │ │ ├── LogFilter.kt │ │ └── MailAppender.kt │ └── resources │ └── logback-spring.xml ├── mycollab-core ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ ├── hp │ │ └── gagawa │ │ │ └── java │ │ │ ├── Document.java │ │ │ ├── DocumentType.java │ │ │ ├── FertileNode.java │ │ │ ├── Node.java │ │ │ ├── attributes │ │ │ └── Attribute.java │ │ │ └── elements │ │ │ ├── A.java │ │ │ ├── Abbr.java │ │ │ ├── Acronym.java │ │ │ ├── Address.java │ │ │ ├── Area.java │ │ │ ├── B.java │ │ │ ├── Base.java │ │ │ ├── Bdo.java │ │ │ ├── Big.java │ │ │ ├── Blockquote.java │ │ │ ├── Body.java │ │ │ ├── Br.java │ │ │ ├── Button.java │ │ │ ├── Caption.java │ │ │ ├── Cite.java │ │ │ ├── Code.java │ │ │ ├── Col.java │ │ │ ├── Colgroup.java │ │ │ ├── Comment.java │ │ │ ├── Dd.java │ │ │ ├── Del.java │ │ │ ├── Dfn.java │ │ │ ├── Dir.java │ │ │ ├── Div.java │ │ │ ├── Dl.java │ │ │ ├── Doctype.java │ │ │ ├── Dt.java │ │ │ ├── Em.java │ │ │ ├── Fieldset.java │ │ │ ├── Font.java │ │ │ ├── Form.java │ │ │ ├── Frame.java │ │ │ ├── Frameset.java │ │ │ ├── H1.java │ │ │ ├── H2.java │ │ │ ├── H3.java │ │ │ ├── H4.java │ │ │ ├── H5.java │ │ │ ├── H6.java │ │ │ ├── Head.java │ │ │ ├── Hr.java │ │ │ ├── Html.java │ │ │ ├── I.java │ │ │ ├── Iframe.java │ │ │ ├── Img.java │ │ │ ├── Input.java │ │ │ ├── Ins.java │ │ │ ├── Kbd.java │ │ │ ├── Label.java │ │ │ ├── Li.java │ │ │ ├── Link.java │ │ │ ├── Map.java │ │ │ ├── Meta.java │ │ │ ├── Noframes.java │ │ │ ├── Noscript.java │ │ │ ├── Object.java │ │ │ ├── Ol.java │ │ │ ├── Optgroup.java │ │ │ ├── Option.java │ │ │ ├── P.java │ │ │ ├── Param.java │ │ │ ├── Pre.java │ │ │ ├── Q.java │ │ │ ├── S.java │ │ │ ├── Samp.java │ │ │ ├── Script.java │ │ │ ├── Select.java │ │ │ ├── Small.java │ │ │ ├── Span.java │ │ │ ├── Strike.java │ │ │ ├── Strong.java │ │ │ ├── Style.java │ │ │ ├── Sub.java │ │ │ ├── Sup.java │ │ │ ├── Table.java │ │ │ ├── Tbody.java │ │ │ ├── Td.java │ │ │ ├── Text.java │ │ │ ├── Textarea.java │ │ │ ├── Tfoot.java │ │ │ ├── Th.java │ │ │ ├── Thead.java │ │ │ ├── Title.java │ │ │ ├── Tr.java │ │ │ ├── Tt.java │ │ │ ├── U.java │ │ │ ├── Ul.java │ │ │ └── Var.java │ │ └── mycollab │ │ ├── core │ │ ├── AbstractNotification.kt │ │ ├── BroadcastListener.kt │ │ ├── BroadcastMessage.kt │ │ ├── Broadcaster.kt │ │ ├── DebugException.kt │ │ ├── IgnoreException.kt │ │ ├── InvalidPasswordException.kt │ │ ├── MyCollabException.kt │ │ ├── MyCollabThread.java │ │ ├── NewUpdateAvailableNotification.kt │ │ ├── ResourceNotFoundException.kt │ │ ├── SecureAccessException.kt │ │ ├── SessionExpireException.kt │ │ ├── ThreadExceptionHandler.java │ │ ├── Tuple2.kt │ │ ├── UnsupportedFeatureException.kt │ │ ├── UserInvalidInputException.kt │ │ ├── Version.java │ │ ├── arguments │ │ │ ├── NotBindable.kt │ │ │ └── ValuedBean.kt │ │ ├── cache │ │ │ ├── CacheArgs.kt │ │ │ ├── CacheEvict.kt │ │ │ ├── CacheKey.kt │ │ │ ├── Cacheable.kt │ │ │ └── CleanCache.kt │ │ ├── reporting │ │ │ └── NotInReport.kt │ │ └── utils │ │ │ ├── ArrayUtils.java │ │ │ ├── BeanUtility.kt │ │ │ ├── BusinessDayTimeUtils.java │ │ │ ├── ClassUtils.java │ │ │ ├── ColorUtils.java │ │ │ ├── CurrencyUtils.kt │ │ │ ├── DateTimeUtils.java │ │ │ ├── Emoji.java │ │ │ ├── ExceptionUtils.kt │ │ │ ├── FileUtils.kt │ │ │ ├── HumanTime.java │ │ │ ├── ImageUtil.java │ │ │ ├── JsonDeSerializer.java │ │ │ ├── MimeTypesUtil.kt │ │ │ ├── NumberUtils.kt │ │ │ ├── PasswordCheckerUtil.kt │ │ │ ├── RandomPasswordGenerator.java │ │ │ ├── SortedArrayMap.java │ │ │ ├── StringUtils.kt │ │ │ └── TimezoneVal.kt │ │ ├── html │ │ ├── DivLessFormatter.kt │ │ ├── FormatUtils.kt │ │ └── TooltipBuilder.kt │ │ ├── spring │ │ └── AppContextUtil.kt │ │ └── validator │ │ └── constraints │ │ ├── DateComparison.java │ │ ├── DateComparisonValidator.kt │ │ ├── PhoneNumber.java │ │ ├── PhoneNumberValidator.kt │ │ ├── StringLimitLength.java │ │ ├── StringLimitLengthValidator.kt │ │ ├── URL.java │ │ └── URLValidator.kt │ └── test │ └── java │ └── com │ └── mycollab │ └── core │ ├── VersionTest.java │ └── utils │ ├── BusinessDateTimeUtilsTest.java │ ├── FormatHtmlTest.java │ └── HumanTimeTest.java ├── mycollab-dao ├── pom.xml └── src │ └── main │ ├── java │ ├── com │ │ └── mycollab │ │ │ ├── db │ │ │ ├── arguments │ │ │ │ ├── BasicSearchRequest.kt │ │ │ │ ├── BetweenValuesSearchField.kt │ │ │ │ ├── BitSearchField.kt │ │ │ │ ├── BooleanSearchField.kt │ │ │ │ ├── CompositionSearchField.kt │ │ │ │ ├── DateSearchField.kt │ │ │ │ ├── DateTimeSearchField.kt │ │ │ │ ├── GroupIdProvider.kt │ │ │ │ ├── NoValueSearchField.kt │ │ │ │ ├── NumberSearchField.kt │ │ │ │ ├── OneValueSearchField.kt │ │ │ │ ├── Order.kt │ │ │ │ ├── RangeDateSearchField.kt │ │ │ │ ├── SearchCriteria.kt │ │ │ │ ├── SearchField.kt │ │ │ │ ├── SearchRequest.kt │ │ │ │ ├── SetSearchField.kt │ │ │ │ ├── SetValueSearchField.kt │ │ │ │ └── StringSearchField.kt │ │ │ ├── metadata │ │ │ │ ├── Column.kt │ │ │ │ └── Table.kt │ │ │ ├── persistence │ │ │ │ ├── ICrudGenericDAO.kt │ │ │ │ ├── IMassUpdateDAO.kt │ │ │ │ ├── ISearchableDAO.kt │ │ │ │ ├── VelocityDriverDeclare.kt │ │ │ │ └── service │ │ │ │ │ ├── DefaultCrudService.kt │ │ │ │ │ ├── DefaultSearchService.kt │ │ │ │ │ ├── DefaultService.kt │ │ │ │ │ ├── ICrudService.kt │ │ │ │ │ ├── IDefaultService.kt │ │ │ │ │ ├── ISearchableService.kt │ │ │ │ │ └── IService.kt │ │ │ └── query │ │ │ │ ├── BooleanParam.kt │ │ │ │ ├── CacheParamMapper.kt │ │ │ │ ├── ColumnParam.kt │ │ │ │ ├── CompositionStringParam.kt │ │ │ │ ├── ConcatStringParam.kt │ │ │ │ ├── ConstantValueInjector.java │ │ │ │ ├── CustomSqlParam.kt │ │ │ │ ├── DateParam.kt │ │ │ │ ├── I18nStringListParam.kt │ │ │ │ ├── LazyValueInjector.java │ │ │ │ ├── NumberParam.kt │ │ │ │ ├── Param.kt │ │ │ │ ├── PropertyListParam.kt │ │ │ │ ├── PropertyParam.kt │ │ │ │ ├── SearchCriteriaBridgeParam.kt │ │ │ │ ├── SearchFieldInfo.java │ │ │ │ ├── SearchQueryInfo.kt │ │ │ │ ├── StringListParam.kt │ │ │ │ ├── StringParam.kt │ │ │ │ └── VariableInjector.java │ │ │ └── security │ │ │ ├── AccessPermissionFlag.kt │ │ │ ├── BooleanPermissionFlag.kt │ │ │ ├── PermissionChecker.kt │ │ │ ├── PermissionDefItem.kt │ │ │ ├── PermissionFlag.kt │ │ │ ├── PermissionMap.kt │ │ │ └── RolePermissionCollections.kt │ └── org │ │ └── mybatis │ │ └── scripting │ │ └── velocity │ │ ├── BetweenValExpr.kt │ │ ├── CollectionValExpr.kt │ │ ├── CompositionValExpr.kt │ │ ├── Equals.kt │ │ ├── IfEqualsBlock.kt │ │ ├── Ifnotnull.kt │ │ ├── Ifnull.kt │ │ ├── NoValExpr.kt │ │ ├── OneValExpr.kt │ │ └── TrimExtDirective.java │ └── resources │ ├── com │ └── mycollab │ │ └── db │ │ └── persistence │ │ ├── selectExpr │ │ └── totalCountExpr │ └── mybatis-velocity.properties ├── mycollab-deployer-community ├── pom.xml └── src │ └── assembly │ └── src.xml ├── mycollab-esb ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── mycollab │ │ └── module │ │ ├── billing │ │ └── esb │ │ │ └── AccountCreatedCommand.kt │ │ ├── common │ │ └── esb │ │ │ └── CleanCacheCommand.kt │ │ ├── ecm │ │ └── esb │ │ │ ├── DeleteResourcesCommand.kt │ │ │ └── SaveContentCommand.kt │ │ ├── esb │ │ └── GenericCommand.kt │ │ ├── project │ │ └── esb │ │ │ ├── AddProjectCommand.kt │ │ │ ├── DeleteProjectBugCommand.kt │ │ │ ├── DeleteProjectCommand.kt │ │ │ ├── DeleteProjectComponentCommand.kt │ │ │ ├── DeleteProjectMemberCommand.kt │ │ │ ├── DeleteProjectMessageCommand.kt │ │ │ ├── DeleteProjectMilestoneCommand.kt │ │ │ ├── DeleteProjectRiskCommand.kt │ │ │ ├── DeleteProjectTaskCommand.kt │ │ │ ├── DeleteProjectVersionCommand.kt │ │ │ ├── InviteProjectMembersCommand.kt │ │ │ └── NewProjectMemberJoinCommand.kt │ │ └── user │ │ └── esb │ │ ├── DeleteUserCommand.kt │ │ ├── NewUserJoinCommand.kt │ │ ├── ResetUserPasswordCommand.kt │ │ ├── SendUserInvitationCommand.kt │ │ └── SendVerifyUserEmailCommand.kt │ └── resources │ ├── mailMemberInvitationNotifier.ftl │ ├── mailNewUserJoinAccountNotifier.ftl │ ├── mailProjectNewMemberJoinProjectNotifier.ftl │ ├── mailUserInvitationNotifier.ftl │ ├── mailUserRecoveryPasswordNotifier.ftl │ └── mailVerifyEmailUser.ftl ├── mycollab-jackrabbit ├── pom.xml └── src │ └── main │ ├── java │ ├── com │ │ └── mycollab │ │ │ └── module │ │ │ ├── ecm │ │ │ ├── BundleDbPersistenceManagerExt.java │ │ │ ├── ContentException.kt │ │ │ ├── ContentSessionFactory.java │ │ │ ├── DatabaseJournalExt.java │ │ │ ├── DbFileSystemExt.java │ │ │ ├── DbUtil.kt │ │ │ ├── NodesUtil.kt │ │ │ └── spring │ │ │ │ └── EcmConfiguration.kt │ │ │ └── page │ │ │ ├── PageSessionFactory.java │ │ │ └── spring │ │ │ └── PageConfiguration.kt │ └── org │ │ └── springframework │ │ └── extensions │ │ └── jcr │ │ ├── EventListenerDefinition.java │ │ ├── JcrAccessor.java │ │ ├── JcrCallback.java │ │ ├── JcrCallbackWithoutResult.java │ │ ├── JcrConstants.java │ │ ├── JcrInterceptor.java │ │ ├── JcrModel1Operations.java │ │ ├── JcrModel2Operations.java │ │ ├── JcrOperations.java │ │ ├── JcrOptionalOperations.java │ │ ├── JcrSessionFactory.java │ │ ├── JcrSystemException.java │ │ ├── JcrTemplate.java │ │ ├── JcrUtils.java │ │ ├── RepositoryFactoryBean.java │ │ ├── SessionFactory.java │ │ ├── SessionFactoryUtils.java │ │ ├── SessionHolder.java │ │ ├── SessionHolderProvider.java │ │ ├── SessionHolderProviderManager.java │ │ ├── TransactionAwareRepository.java │ │ ├── config │ │ └── JcrNamespaceHandler.java │ │ ├── jackrabbit │ │ ├── JackrabbitSessionFactory.java │ │ ├── LocalTransactionManager.java │ │ ├── RepositoryFactoryBean.java │ │ ├── TransientRepositoryFactoryBean.java │ │ ├── config │ │ │ └── JackrabbitNamespaceHandler.java │ │ └── support │ │ │ ├── JackRabbitSessionHolderProvider.java │ │ │ ├── JackRabbitUserTransaction.java │ │ │ └── UserTxSessionHolder.java │ │ ├── support │ │ ├── AbstractSessionHolderProviderManager.java │ │ ├── CacheableSessionHolderProviderManager.java │ │ ├── GenericSessionHolderProvider.java │ │ ├── JcrDaoSupport.java │ │ ├── ListSessionHolderProviderManager.java │ │ ├── ServiceSessionHolderProviderManager.java │ │ └── SimpleCredentialsFactoryBean.java │ │ └── util │ │ └── CachingMapDecorator.java │ └── resources │ ├── META-INF │ ├── spring.handlers │ └── spring.schemas │ └── org │ └── springframework │ └── extensions │ └── jcr │ └── config │ └── se-jcr.xsd ├── mycollab-localization ├── pom.xml └── src │ └── main │ ├── java │ ├── ch │ │ └── qos │ │ │ └── cal10n │ │ │ ├── MessageConveyorExt.java │ │ │ ├── ResourceLoader.java │ │ │ └── util │ │ │ ├── AbstractCAL10NBundleFinderExt.java │ │ │ ├── CAL10NBundleExt.java │ │ │ └── CAL10NBundleFinderByClassloaderExt.java │ └── com │ │ └── mycollab │ │ ├── common │ │ └── i18n │ │ │ ├── ClientI18nEnum.java │ │ │ ├── DayI18nEnum.java │ │ │ ├── ErrorI18nEnum.java │ │ │ ├── FileI18nEnum.java │ │ │ ├── FollowerI18nEnum.java │ │ │ ├── GenericI18Enum.java │ │ │ ├── LicenseI18nEnum.java │ │ │ ├── MailI18nEnum.java │ │ │ ├── OptionI18nEnum.java │ │ │ ├── QueryI18nEnum.java │ │ │ ├── SecurityI18nEnum.java │ │ │ ├── ShellI18nEnum.java │ │ │ ├── TagI18nEnum.java │ │ │ ├── ThemeI18nEnum.java │ │ │ └── WikiI18nEnum.java │ │ ├── i18n │ │ └── LocalizationHelper.java │ │ └── module │ │ ├── project │ │ └── i18n │ │ │ ├── BreadcrumbI18nEnum.java │ │ │ ├── BugI18nEnum.java │ │ │ ├── ComponentI18nEnum.java │ │ │ ├── InvoiceI18nEnum.java │ │ │ ├── MessageI18nEnum.java │ │ │ ├── MilestoneI18nEnum.java │ │ │ ├── OptionI18nEnum.java │ │ │ ├── PageI18nEnum.java │ │ │ ├── ProjectCommonI18nEnum.java │ │ │ ├── ProjectI18nEnum.java │ │ │ ├── ProjectMemberI18nEnum.java │ │ │ ├── ProjectReportI18nEnum.java │ │ │ ├── ProjectRoleI18nEnum.java │ │ │ ├── ProjectSettingI18nEnum.java │ │ │ ├── RiskI18nEnum.java │ │ │ ├── RolePermissionI18nEnum.java │ │ │ ├── StandupI18nEnum.java │ │ │ ├── TaskI18nEnum.java │ │ │ ├── TicketI18nEnum.java │ │ │ ├── TimeTrackingI18nEnum.java │ │ │ └── VersionI18nEnum.java │ │ └── user │ │ └── accountsettings │ │ └── localization │ │ ├── AdminI18nEnum.java │ │ ├── BillingI18nEnum.java │ │ ├── RoleI18nEnum.java │ │ ├── SettingCommonI18nEnum.java │ │ └── UserI18nEnum.java │ └── resources │ ├── account-admin_ar-AR.properties │ ├── account-admin_bg-BG.properties │ ├── account-admin_cs-CZ.properties │ ├── account-admin_da-DA.properties │ ├── account-admin_de-DE.properties │ ├── account-admin_en-US.properties │ ├── account-admin_es-ES.properties │ ├── account-admin_fi-FI.properties │ ├── account-admin_fr-FR.properties │ ├── account-admin_hr-HR.properties │ ├── account-admin_id-ID.properties │ ├── account-admin_pes-IR.properties │ ├── account-admin_pl-PL.properties │ ├── account-admin_pt-BR.properties │ ├── account-admin_ru-RU.properties │ ├── account-admin_tr-TR.properties │ ├── account-admin_vi-VI.properties │ ├── account-admin_zh-CN.properties │ ├── account-billing_ar-AR.properties │ ├── account-billing_bg-BG.properties │ ├── account-billing_cs-CZ.properties │ ├── account-billing_da-DA.properties │ ├── account-billing_de-DE.properties │ ├── account-billing_en-US.properties │ ├── account-billing_es-ES.properties │ ├── account-billing_fi-FI.properties │ ├── account-billing_fr-FR.properties │ ├── account-billing_hr-HR.properties │ ├── account-billing_id-ID.properties │ ├── account-billing_pes-IR.properties │ ├── account-billing_pl-PL.properties │ ├── account-billing_pt-BR.properties │ ├── account-billing_ru-RU.properties │ ├── account-billing_tr-TR.properties │ ├── account-billing_vi-VI.properties │ ├── account-billing_zh-CN.properties │ ├── account-role_ar-AR.properties │ ├── account-role_bg-BG.properties │ ├── account-role_cs-CZ.properties │ ├── account-role_da-DA.properties │ ├── account-role_de-DE.properties │ ├── account-role_en-US.properties │ ├── account-role_es-ES.properties │ ├── account-role_fi-FI.properties │ ├── account-role_fr-FR.properties │ ├── account-role_hr-HR.properties │ ├── account-role_id-ID.properties │ ├── account-role_pes-IR.properties │ ├── account-role_pl-PL.properties │ ├── account-role_pt-BR.properties │ ├── account-role_ru-RU.properties │ ├── account-role_tr-TR.properties │ ├── account-role_vi-VI.properties │ ├── account-role_zh-CN.properties │ ├── account-setting_ar-AR.properties │ ├── account-setting_bg-BG.properties │ ├── account-setting_cs-CZ.properties │ ├── account-setting_da-DA.properties │ ├── account-setting_de-DE.properties │ ├── account-setting_en-US.properties │ ├── account-setting_es-ES.properties │ ├── account-setting_fi-FI.properties │ ├── account-setting_fr-FR.properties │ ├── account-setting_hr-HR.properties │ ├── account-setting_id-ID.properties │ ├── account-setting_pes-IR.properties │ ├── account-setting_pl-PL.properties │ ├── account-setting_pt-BR.properties │ ├── account-setting_ru-RU.properties │ ├── account-setting_tr-TR.properties │ ├── account-setting_vi-VI.properties │ ├── account-setting_zh-CN.properties │ ├── account-user_ar-AR.properties │ ├── account-user_bg-BG.properties │ ├── account-user_cs-CZ.properties │ ├── account-user_da-DA.properties │ ├── account-user_de-DE.properties │ ├── account-user_en-US.properties │ ├── account-user_es-ES.properties │ ├── account-user_fi-FI.properties │ ├── account-user_fr-FR.properties │ ├── account-user_hr-HR.properties │ ├── account-user_id-ID.properties │ ├── account-user_pes-IR.properties │ ├── account-user_pl-PL.properties │ ├── account-user_pt-BR.properties │ ├── account-user_ru-RU.properties │ ├── account-user_tr-TR.properties │ ├── account-user_vi-VI.properties │ ├── account-user_zh-CN.properties │ ├── client-industry_bg-BG.properties │ ├── client-industry_de.properties │ ├── client-industry_en-US.properties │ ├── client-industry_es.properties │ ├── client-industry_fi.properties │ ├── client-industry_fr.properties │ ├── client-industry_id.properties │ ├── client-industry_pl-PL.properties │ ├── client-industry_pt-BR.properties │ ├── client-industry_ru.properties │ ├── client-industry_tr-TR.properties │ ├── client-industry_vi.properties │ ├── client-industry_zh-CN.properties │ ├── client-type_bg-BG.properties │ ├── client-type_de.properties │ ├── client-type_en-US.properties │ ├── client-type_es.properties │ ├── client-type_fi.properties │ ├── client-type_fr.properties │ ├── client-type_id.properties │ ├── client-type_pl-PL.properties │ ├── client-type_pt-BR.properties │ ├── client-type_ru.properties │ ├── client-type_tr-TR.properties │ ├── client-type_vi.properties │ ├── client-type_zh-CN.properties │ ├── common-client_bg-BG.properties │ ├── common-client_de.properties │ ├── common-client_en-US.properties │ ├── common-client_es.properties │ ├── common-client_fi.properties │ ├── common-client_fr.properties │ ├── common-client_id.properties │ ├── common-client_pl-PL.properties │ ├── common-client_pt-BR.properties │ ├── common-client_ru.properties │ ├── common-client_tr-TR.properties │ ├── common-client_vi.properties │ ├── common-client_zh-CN.properties │ ├── common-day_ar-AR.properties │ ├── common-day_bg-BG.properties │ ├── common-day_cs-CZ.properties │ ├── common-day_da-DA.properties │ ├── common-day_de-DE.properties │ ├── common-day_en-US.properties │ ├── common-day_es-ES.properties │ ├── common-day_fi-FI.properties │ ├── common-day_fr-FR.properties │ ├── common-day_hr-HR.properties │ ├── common-day_id-ID.properties │ ├── common-day_pes-IR.properties │ ├── common-day_pl-PL.properties │ ├── common-day_pt-BR.properties │ ├── common-day_ru-RU.properties │ ├── common-day_tr-TR.properties │ ├── common-day_vi-VI.properties │ ├── common-day_zh-CN.properties │ ├── common-file_ar-AR.properties │ ├── common-file_bg-BG.properties │ ├── common-file_cs-CZ.properties │ ├── common-file_da-DA.properties │ ├── common-file_de-DE.properties │ ├── common-file_en-US.properties │ ├── common-file_es-ES.properties │ ├── common-file_fi-FI.properties │ ├── common-file_fr-FR.properties │ ├── common-file_hr-HR.properties │ ├── common-file_id-ID.properties │ ├── common-file_pes-IR.properties │ ├── common-file_pl-PL.properties │ ├── common-file_pt-BR.properties │ ├── common-file_ru-RU.properties │ ├── common-file_tr-TR.properties │ ├── common-file_vi-VI.properties │ ├── common-file_zh-CN.properties │ ├── common-follower_ar-AR.properties │ ├── common-follower_bg-BG.properties │ ├── common-follower_cs-CZ.properties │ ├── common-follower_da-DA.properties │ ├── common-follower_de-DE.properties │ ├── common-follower_en-US.properties │ ├── common-follower_es-ES.properties │ ├── common-follower_fi-FI.properties │ ├── common-follower_fr-FR.properties │ ├── common-follower_hr-HR.properties │ ├── common-follower_id-ID.properties │ ├── common-follower_pes-IR.properties │ ├── common-follower_pl-PL.properties │ ├── common-follower_pt-BR.properties │ ├── common-follower_ru-RU.properties │ ├── common-follower_tr-TR.properties │ ├── common-follower_vi-VI.properties │ ├── common-follower_zh-CN.properties │ ├── common-generic-status_ar-AR.properties │ ├── common-generic-status_bg-BG.properties │ ├── common-generic-status_cs-CZ.properties │ ├── common-generic-status_da-DA.properties │ ├── common-generic-status_de-DE.properties │ ├── common-generic-status_en-US.properties │ ├── common-generic-status_es-ES.properties │ ├── common-generic-status_fi-FI.properties │ ├── common-generic-status_fr-FR.properties │ ├── common-generic-status_hr-HR.properties │ ├── common-generic-status_id-ID.properties │ ├── common-generic-status_pes-IR.properties │ ├── common-generic-status_pl-PL.properties │ ├── common-generic-status_pt-BR.properties │ ├── common-generic-status_ru-RU.properties │ ├── common-generic-status_tr-TR.properties │ ├── common-generic-status_vi-VI.properties │ ├── common-generic-status_zh-CN.properties │ ├── common-generic_ar-AR.properties │ ├── common-generic_bg-BG.properties │ ├── common-generic_cs-CZ.properties │ ├── common-generic_da-DA.properties │ ├── common-generic_de-DE.properties │ ├── common-generic_en-US.properties │ ├── common-generic_es-ES.properties │ ├── common-generic_fi-FI.properties │ ├── common-generic_fr-FR.properties │ ├── common-generic_hr-HR.properties │ ├── common-generic_id-ID.properties │ ├── common-generic_pes-IR.properties │ ├── common-generic_pl-PL.properties │ ├── common-generic_pt-BR.properties │ ├── common-generic_ru-RU.properties │ ├── common-generic_tr-TR.properties │ ├── common-generic_vi-VI.properties │ ├── common-generic_zh-CN.properties │ ├── common-license_ar-AR.properties │ ├── common-license_bg-BG.properties │ ├── common-license_cs-CZ.properties │ ├── common-license_da-DA.properties │ ├── common-license_de-DE.properties │ ├── common-license_en-US.properties │ ├── common-license_es-ES.properties │ ├── common-license_fi-FI.properties │ ├── common-license_fr-FR.properties │ ├── common-license_hr-HR.properties │ ├── common-license_id-ID.properties │ ├── common-license_pes-IR.properties │ ├── common-license_pl-PL.properties │ ├── common-license_pt-BR.properties │ ├── common-license_ru-RU.properties │ ├── common-license_tr-TR.properties │ ├── common-license_vi-VI.properties │ ├── common-license_zh-CN.properties │ ├── common-mail_ar-AR.properties │ ├── common-mail_bg-BG.properties │ ├── common-mail_cs-CZ.properties │ ├── common-mail_da-DA.properties │ ├── common-mail_de-DE.properties │ ├── common-mail_en-US.properties │ ├── common-mail_es-ES.properties │ ├── common-mail_fi-FI.properties │ ├── common-mail_fr-FR.properties │ ├── common-mail_hr-HR.properties │ ├── common-mail_id-ID.properties │ ├── common-mail_pes-IR.properties │ ├── common-mail_pl-PL.properties │ ├── common-mail_pt-BR.properties │ ├── common-mail_ru-RU.properties │ ├── common-mail_tr-TR.properties │ ├── common-mail_vi-VI.properties │ ├── common-mail_zh-CN.properties │ ├── common-query_bg-BG.properties │ ├── common-query_de.properties │ ├── common-query_en-US.properties │ ├── common-query_es.properties │ ├── common-query_fi.properties │ ├── common-query_fr.properties │ ├── common-query_id.properties │ ├── common-query_pl-PL.properties │ ├── common-query_pt-BR.properties │ ├── common-query_ru.properties │ ├── common-query_tr-TR.properties │ ├── common-query_vi.properties │ ├── common-query_zh-CN.properties │ ├── common-security_ar-AR.properties │ ├── common-security_bg-BG.properties │ ├── common-security_cs-CZ.properties │ ├── common-security_da-DA.properties │ ├── common-security_de-DE.properties │ ├── common-security_en-US.properties │ ├── common-security_es-ES.properties │ ├── common-security_fi-FI.properties │ ├── common-security_fr-FR.properties │ ├── common-security_hr-HR.properties │ ├── common-security_id-ID.properties │ ├── common-security_pes-IR.properties │ ├── common-security_pl-PL.properties │ ├── common-security_pt-BR.properties │ ├── common-security_ru-RU.properties │ ├── common-security_tr-TR.properties │ ├── common-security_vi-VI.properties │ ├── common-security_zh-CN.properties │ ├── common-shell_ar-AR.properties │ ├── common-shell_bg-BG.properties │ ├── common-shell_cs-CZ.properties │ ├── common-shell_da-DA.properties │ ├── common-shell_de-DE.properties │ ├── common-shell_en-US.properties │ ├── common-shell_es-ES.properties │ ├── common-shell_fi-FI.properties │ ├── common-shell_fr-FR.properties │ ├── common-shell_hr-HR.properties │ ├── common-shell_id-ID.properties │ ├── common-shell_pes-IR.properties │ ├── common-shell_pl-PL.properties │ ├── common-shell_pt-BR.properties │ ├── common-shell_ru-RU.properties │ ├── common-shell_tr-TR.properties │ ├── common-shell_vi-VI.properties │ ├── common-shell_zh-CN.properties │ ├── common-tag_ar-AR.properties │ ├── common-tag_bg-BG.properties │ ├── common-tag_cs-CZ.properties │ ├── common-tag_da-DA.properties │ ├── common-tag_de-DE.properties │ ├── common-tag_en-US.properties │ ├── common-tag_es-ES.properties │ ├── common-tag_fi-FI.properties │ ├── common-tag_fr-FR.properties │ ├── common-tag_hr-HR.properties │ ├── common-tag_id-ID.properties │ ├── common-tag_pes-IR.properties │ ├── common-tag_pl-PL.properties │ ├── common-tag_pt-BR.properties │ ├── common-tag_ru-RU.properties │ ├── common-tag_tr-TR.properties │ ├── common-tag_vi-VI.properties │ ├── common-tag_zh-CN.properties │ ├── common-theme_ar-AR.properties │ ├── common-theme_bg-BG.properties │ ├── common-theme_cs-CZ.properties │ ├── common-theme_da-DA.properties │ ├── common-theme_de-DE.properties │ ├── common-theme_en-US.properties │ ├── common-theme_es-ES.properties │ ├── common-theme_fi-FI.properties │ ├── common-theme_fr-FR.properties │ ├── common-theme_hr-HR.properties │ ├── common-theme_id-ID.properties │ ├── common-theme_pes-IR.properties │ ├── common-theme_pl-PL.properties │ ├── common-theme_pt-BR.properties │ ├── common-theme_ru-RU.properties │ ├── common-theme_tr-TR.properties │ ├── common-theme_vi-VI.properties │ ├── common-theme_zh-CN.properties │ ├── common-webexception_ar-AR.properties │ ├── common-webexception_bg-BG.properties │ ├── common-webexception_cs-CZ.properties │ ├── common-webexception_da-DA.properties │ ├── common-webexception_de-DE.properties │ ├── common-webexception_en-US.properties │ ├── common-webexception_es-ES.properties │ ├── common-webexception_fi-FI.properties │ ├── common-webexception_fr-FR.properties │ ├── common-webexception_hr-HR.properties │ ├── common-webexception_id-ID.properties │ ├── common-webexception_pes-IR.properties │ ├── common-webexception_pl-PL.properties │ ├── common-webexception_pt-BR.properties │ ├── common-webexception_ru-RU.properties │ ├── common-webexception_tr-TR.properties │ ├── common-webexception_vi-VI.properties │ ├── common-webexception_zh-CN.properties │ ├── common-wiki_ar-AR.properties │ ├── common-wiki_bg-BG.properties │ ├── common-wiki_cs-CZ.properties │ ├── common-wiki_da-DA.properties │ ├── common-wiki_de-DE.properties │ ├── common-wiki_en-US.properties │ ├── common-wiki_es-ES.properties │ ├── common-wiki_fi-FI.properties │ ├── common-wiki_fr-FR.properties │ ├── common-wiki_hr-HR.properties │ ├── common-wiki_id-ID.properties │ ├── common-wiki_pes-IR.properties │ ├── common-wiki_pl-PL.properties │ ├── common-wiki_pt-BR.properties │ ├── common-wiki_ru-RU.properties │ ├── common-wiki_tr-TR.properties │ ├── common-wiki_vi-VI.properties │ ├── common-wiki_zh-CN.properties │ ├── project-breadcrumb_ar-AR.properties │ ├── project-breadcrumb_bg-BG.properties │ ├── project-breadcrumb_cs-CZ.properties │ ├── project-breadcrumb_da-DA.properties │ ├── project-breadcrumb_de-DE.properties │ ├── project-breadcrumb_en-US.properties │ ├── project-breadcrumb_es-ES.properties │ ├── project-breadcrumb_fi-FI.properties │ ├── project-breadcrumb_fr-FR.properties │ ├── project-breadcrumb_hr-HR.properties │ ├── project-breadcrumb_id-ID.properties │ ├── project-breadcrumb_pes-IR.properties │ ├── project-breadcrumb_pl-PL.properties │ ├── project-breadcrumb_pt-BR.properties │ ├── project-breadcrumb_ru-RU.properties │ ├── project-breadcrumb_tr-TR.properties │ ├── project-breadcrumb_vi-VI.properties │ ├── project-breadcrumb_zh-CN.properties │ ├── project-bug-priority_da-DA.properties │ ├── project-bug-priority_de-DE.properties │ ├── project-bug-resolution_ar-AR.properties │ ├── project-bug-resolution_bg-BG.properties │ ├── project-bug-resolution_cs-CZ.properties │ ├── project-bug-resolution_da-DA.properties │ ├── project-bug-resolution_de-DE.properties │ ├── project-bug-resolution_en-US.properties │ ├── project-bug-resolution_es-ES.properties │ ├── project-bug-resolution_fi-FI.properties │ ├── project-bug-resolution_fr-FR.properties │ ├── project-bug-resolution_hr-HR.properties │ ├── project-bug-resolution_id-ID.properties │ ├── project-bug-resolution_pes-IR.properties │ ├── project-bug-resolution_pl-PL.properties │ ├── project-bug-resolution_pt-BR.properties │ ├── project-bug-resolution_ru-RU.properties │ ├── project-bug-resolution_tr-TR.properties │ ├── project-bug-resolution_vi-VI.properties │ ├── project-bug-resolution_zh-CN.properties │ ├── project-bug-severity_ar-AR.properties │ ├── project-bug-severity_bg-BG.properties │ ├── project-bug-severity_cs-CZ.properties │ ├── project-bug-severity_da-DA.properties │ ├── project-bug-severity_de-DE.properties │ ├── project-bug-severity_en-US.properties │ ├── project-bug-severity_es-ES.properties │ ├── project-bug-severity_fi-FI.properties │ ├── project-bug-severity_fr-FR.properties │ ├── project-bug-severity_hr-HR.properties │ ├── project-bug-severity_id-ID.properties │ ├── project-bug-severity_pes-IR.properties │ ├── project-bug-severity_pl-PL.properties │ ├── project-bug-severity_pt-BR.properties │ ├── project-bug-severity_ru-RU.properties │ ├── project-bug-severity_tr-TR.properties │ ├── project-bug-severity_vi-VI.properties │ ├── project-bug-severity_zh-CN.properties │ ├── project-bug_ar-AR.properties │ ├── project-bug_bg-BG.properties │ ├── project-bug_cs-CZ.properties │ ├── project-bug_da-DA.properties │ ├── project-bug_de-DE.properties │ ├── project-bug_en-US.properties │ ├── project-bug_es-ES.properties │ ├── project-bug_fi-FI.properties │ ├── project-bug_fr-FR.properties │ ├── project-bug_hr-HR.properties │ ├── project-bug_id-ID.properties │ ├── project-bug_pes-IR.properties │ ├── project-bug_pl-PL.properties │ ├── project-bug_pt-BR.properties │ ├── project-bug_ru-RU.properties │ ├── project-bug_tr-TR.properties │ ├── project-bug_vi-VI.properties │ ├── project-bug_zh-CN.properties │ ├── project-client_ar-AR.properties │ ├── project-client_bg-BG.properties │ ├── project-client_cs-CZ.properties │ ├── project-client_da-DA.properties │ ├── project-client_de-DE.properties │ ├── project-client_en-US.properties │ ├── project-client_es-ES.properties │ ├── project-client_fi-FI.properties │ ├── project-client_fr-FR.properties │ ├── project-client_hr-HR.properties │ ├── project-client_id-ID.properties │ ├── project-client_pes-IR.properties │ ├── project-client_pl-PL.properties │ ├── project-client_pt-BR.properties │ ├── project-client_ru-RU.properties │ ├── project-client_tr-TR.properties │ ├── project-client_vi-VI.properties │ ├── project-client_zh-CN.properties │ ├── project-common_ar-AR.properties │ ├── project-common_bg-BG.properties │ ├── project-common_cs-CZ.properties │ ├── project-common_da-DA.properties │ ├── project-common_de-DE.properties │ ├── project-common_en-US.properties │ ├── project-common_es-ES.properties │ ├── project-common_fi-FI.properties │ ├── project-common_fr-FR.properties │ ├── project-common_hr-HR.properties │ ├── project-common_id-ID.properties │ ├── project-common_pes-IR.properties │ ├── project-common_pl-PL.properties │ ├── project-common_pt-BR.properties │ ├── project-common_ru-RU.properties │ ├── project-common_tr-TR.properties │ ├── project-common_vi-VI.properties │ ├── project-common_zh-CN.properties │ ├── project-component_ar-AR.properties │ ├── project-component_bg-BG.properties │ ├── project-component_cs-CZ.properties │ ├── project-component_da-DA.properties │ ├── project-component_de-DE.properties │ ├── project-component_en-US.properties │ ├── project-component_es-ES.properties │ ├── project-component_fi-FI.properties │ ├── project-component_fr-FR.properties │ ├── project-component_hr-HR.properties │ ├── project-component_id-ID.properties │ ├── project-component_pes-IR.properties │ ├── project-component_pl-PL.properties │ ├── project-component_pt-BR.properties │ ├── project-component_ru-RU.properties │ ├── project-component_tr-TR.properties │ ├── project-component_vi-VI.properties │ ├── project-component_zh-CN.properties │ ├── project-invoice-status_ar-AR.properties │ ├── project-invoice-status_bg-BG.properties │ ├── project-invoice-status_cs-CZ.properties │ ├── project-invoice-status_da-DA.properties │ ├── project-invoice-status_de-DE.properties │ ├── project-invoice-status_en-US.properties │ ├── project-invoice-status_es-ES.properties │ ├── project-invoice-status_fi-FI.properties │ ├── project-invoice-status_fr-FR.properties │ ├── project-invoice-status_hr-HR.properties │ ├── project-invoice-status_id-ID.properties │ ├── project-invoice-status_pes-IR.properties │ ├── project-invoice-status_pl-PL.properties │ ├── project-invoice-status_pt-BR.properties │ ├── project-invoice-status_ru-RU.properties │ ├── project-invoice-status_tr-TR.properties │ ├── project-invoice-status_vi-VI.properties │ ├── project-invoice-status_zh-CN.properties │ ├── project-invoice_ar-AR.properties │ ├── project-invoice_bg-BG.properties │ ├── project-invoice_cs-CZ.properties │ ├── project-invoice_da-DA.properties │ ├── project-invoice_de-DE.properties │ ├── project-invoice_en-US.properties │ ├── project-invoice_es-ES.properties │ ├── project-invoice_fi-FI.properties │ ├── project-invoice_fr-FR.properties │ ├── project-invoice_hr-HR.properties │ ├── project-invoice_id-ID.properties │ ├── project-invoice_pes-IR.properties │ ├── project-invoice_pl-PL.properties │ ├── project-invoice_pt-BR.properties │ ├── project-invoice_ru-RU.properties │ ├── project-invoice_tr-TR.properties │ ├── project-invoice_vi-VI.properties │ ├── project-invoice_zh-CN.properties │ ├── project-message_ar-AR.properties │ ├── project-message_bg-BG.properties │ ├── project-message_cs-CZ.properties │ ├── project-message_da-DA.properties │ ├── project-message_de-DE.properties │ ├── project-message_en-US.properties │ ├── project-message_es-ES.properties │ ├── project-message_fi-FI.properties │ ├── project-message_fr-FR.properties │ ├── project-message_hr-HR.properties │ ├── project-message_id-ID.properties │ ├── project-message_pes-IR.properties │ ├── project-message_pl-PL.properties │ ├── project-message_pt-BR.properties │ ├── project-message_ru-RU.properties │ ├── project-message_tr-TR.properties │ ├── project-message_vi-VI.properties │ ├── project-message_zh-CN.properties │ ├── project-milestone-status_ar-AR.properties │ ├── project-milestone-status_bg-BG.properties │ ├── project-milestone-status_cs-CZ.properties │ ├── project-milestone-status_da-DA.properties │ ├── project-milestone-status_de-DE.properties │ ├── project-milestone-status_en-US.properties │ ├── project-milestone-status_es-ES.properties │ ├── project-milestone-status_fi-FI.properties │ ├── project-milestone-status_fr-FR.properties │ ├── project-milestone-status_hr-HR.properties │ ├── project-milestone-status_id-ID.properties │ ├── project-milestone-status_pes-IR.properties │ ├── project-milestone-status_pl-PL.properties │ ├── project-milestone-status_pt-BR.properties │ ├── project-milestone-status_ru-RU.properties │ ├── project-milestone-status_tr-TR.properties │ ├── project-milestone-status_vi-VI.properties │ ├── project-milestone-status_zh-CN.properties │ ├── project-milestone_ar-AR.properties │ ├── project-milestone_bg-BG.properties │ ├── project-milestone_cs-CZ.properties │ ├── project-milestone_da-DA.properties │ ├── project-milestone_de-DE.properties │ ├── project-milestone_en-US.properties │ ├── project-milestone_es-ES.properties │ ├── project-milestone_fi-FI.properties │ ├── project-milestone_fr-FR.properties │ ├── project-milestone_hr-HR.properties │ ├── project-milestone_id-ID.properties │ ├── project-milestone_pes-IR.properties │ ├── project-milestone_pl-PL.properties │ ├── project-milestone_pt-BR.properties │ ├── project-milestone_ru-RU.properties │ ├── project-milestone_tr-TR.properties │ ├── project-milestone_vi-VI.properties │ ├── project-milestone_zh-CN.properties │ ├── project-page_ar-AR.properties │ ├── project-page_bg-BG.properties │ ├── project-page_cs-CZ.properties │ ├── project-page_da-DA.properties │ ├── project-page_de-DE.properties │ ├── project-page_en-US.properties │ ├── project-page_es-ES.properties │ ├── project-page_fi-FI.properties │ ├── project-page_fr-FR.properties │ ├── project-page_hr-HR.properties │ ├── project-page_id-ID.properties │ ├── project-page_pes-IR.properties │ ├── project-page_pl-PL.properties │ ├── project-page_pt-BR.properties │ ├── project-page_ru-RU.properties │ ├── project-page_tr-TR.properties │ ├── project-page_vi-VI.properties │ ├── project-page_zh-CN.properties │ ├── project-people_ar-AR.properties │ ├── project-people_bg-BG.properties │ ├── project-people_cs-CZ.properties │ ├── project-people_da-DA.properties │ ├── project-people_de-DE.properties │ ├── project-people_en-US.properties │ ├── project-people_es-ES.properties │ ├── project-people_fi-FI.properties │ ├── project-people_fr-FR.properties │ ├── project-people_hr-HR.properties │ ├── project-people_id-ID.properties │ ├── project-people_pes-IR.properties │ ├── project-people_pl-PL.properties │ ├── project-people_pt-BR.properties │ ├── project-people_ru-RU.properties │ ├── project-people_tr-TR.properties │ ├── project-people_vi-VI.properties │ ├── project-people_zh-CN.properties │ ├── project-reporting_ar-AR.properties │ ├── project-reporting_bg-BG.properties │ ├── project-reporting_cs-CZ.properties │ ├── project-reporting_da-DA.properties │ ├── project-reporting_de-DE.properties │ ├── project-reporting_en-US.properties │ ├── project-reporting_es-ES.properties │ ├── project-reporting_fi-FI.properties │ ├── project-reporting_fr-FR.properties │ ├── project-reporting_hr-HR.properties │ ├── project-reporting_id-ID.properties │ ├── project-reporting_pes-IR.properties │ ├── project-reporting_pl-PL.properties │ ├── project-reporting_pt-BR.properties │ ├── project-reporting_ru-RU.properties │ ├── project-reporting_tr-TR.properties │ ├── project-reporting_vi-VI.properties │ ├── project-reporting_zh-CN.properties │ ├── project-risk-consequence_ar-AR.properties │ ├── project-risk-consequence_bg-BG.properties │ ├── project-risk-consequence_cs-CZ.properties │ ├── project-risk-consequence_da-DA.properties │ ├── project-risk-consequence_de-DE.properties │ ├── project-risk-consequence_en-US.properties │ ├── project-risk-consequence_es-ES.properties │ ├── project-risk-consequence_fi-FI.properties │ ├── project-risk-consequence_fr-FR.properties │ ├── project-risk-consequence_hr-HR.properties │ ├── project-risk-consequence_id-ID.properties │ ├── project-risk-consequence_pes-IR.properties │ ├── project-risk-consequence_pl-PL.properties │ ├── project-risk-consequence_pt-BR.properties │ ├── project-risk-consequence_ru-RU.properties │ ├── project-risk-consequence_tr-TR.properties │ ├── project-risk-consequence_vi-VI.properties │ ├── project-risk-consequence_zh-CN.properties │ ├── project-risk-probability_ar-AR.properties │ ├── project-risk-probability_bg-BG.properties │ ├── project-risk-probability_cs-CZ.properties │ ├── project-risk-probability_da-DA.properties │ ├── project-risk-probability_de-DE.properties │ ├── project-risk-probability_en-US.properties │ ├── project-risk-probability_es-ES.properties │ ├── project-risk-probability_fi-FI.properties │ ├── project-risk-probability_fr-FR.properties │ ├── project-risk-probability_hr-HR.properties │ ├── project-risk-probability_id-ID.properties │ ├── project-risk-probability_pes-IR.properties │ ├── project-risk-probability_pl-PL.properties │ ├── project-risk-probability_pt-BR.properties │ ├── project-risk-probability_ru-RU.properties │ ├── project-risk-probability_tr-TR.properties │ ├── project-risk-probability_vi-VI.properties │ ├── project-risk-probability_zh-CN.properties │ ├── project-risk_ar-AR.properties │ ├── project-risk_bg-BG.properties │ ├── project-risk_cs-CZ.properties │ ├── project-risk_da-DA.properties │ ├── project-risk_de-DE.properties │ ├── project-risk_en-US.properties │ ├── project-risk_es-ES.properties │ ├── project-risk_fi-FI.properties │ ├── project-risk_fr-FR.properties │ ├── project-risk_hr-HR.properties │ ├── project-risk_id-ID.properties │ ├── project-risk_pes-IR.properties │ ├── project-risk_pl-PL.properties │ ├── project-risk_pt-BR.properties │ ├── project-risk_ru-RU.properties │ ├── project-risk_tr-TR.properties │ ├── project-risk_vi-VI.properties │ ├── project-risk_zh-CN.properties │ ├── project-role-permission_ar-AR.properties │ ├── project-role-permission_bg-BG.properties │ ├── project-role-permission_cs-CZ.properties │ ├── project-role-permission_da-DA.properties │ ├── project-role-permission_de-DE.properties │ ├── project-role-permission_en-US.properties │ ├── project-role-permission_es-ES.properties │ ├── project-role-permission_fi-FI.properties │ ├── project-role-permission_fr-FR.properties │ ├── project-role-permission_hr-HR.properties │ ├── project-role-permission_id-ID.properties │ ├── project-role-permission_pes-IR.properties │ ├── project-role-permission_pl-PL.properties │ ├── project-role-permission_pt-BR.properties │ ├── project-role-permission_ru-RU.properties │ ├── project-role-permission_tr-TR.properties │ ├── project-role-permission_vi-VI.properties │ ├── project-role-permission_zh-CN.properties │ ├── project-role_ar-AR.properties │ ├── project-role_bg-BG.properties │ ├── project-role_cs-CZ.properties │ ├── project-role_da-DA.properties │ ├── project-role_de-DE.properties │ ├── project-role_en-US.properties │ ├── project-role_es-ES.properties │ ├── project-role_fi-FI.properties │ ├── project-role_fr-FR.properties │ ├── project-role_hr-HR.properties │ ├── project-role_id-ID.properties │ ├── project-role_pes-IR.properties │ ├── project-role_pl-PL.properties │ ├── project-role_pt-BR.properties │ ├── project-role_ru-RU.properties │ ├── project-role_tr-TR.properties │ ├── project-role_vi-VI.properties │ ├── project-role_zh-CN.properties │ ├── project-setting_ar-AR.properties │ ├── project-setting_bg-BG.properties │ ├── project-setting_cs-CZ.properties │ ├── project-setting_da-DA.properties │ ├── project-setting_de-DE.properties │ ├── project-setting_en-US.properties │ ├── project-setting_es-ES.properties │ ├── project-setting_fi-FI.properties │ ├── project-setting_fr-FR.properties │ ├── project-setting_hr-HR.properties │ ├── project-setting_id-ID.properties │ ├── project-setting_pes-IR.properties │ ├── project-setting_pl-PL.properties │ ├── project-setting_pt-BR.properties │ ├── project-setting_ru-RU.properties │ ├── project-setting_tr-TR.properties │ ├── project-setting_vi-VI.properties │ ├── project-setting_zh-CN.properties │ ├── project-standup_ar-AR.properties │ ├── project-standup_bg-BG.properties │ ├── project-standup_cs-CZ.properties │ ├── project-standup_da-DA.properties │ ├── project-standup_de-DE.properties │ ├── project-standup_en-US.properties │ ├── project-standup_es-ES.properties │ ├── project-standup_fi-FI.properties │ ├── project-standup_fr-FR.properties │ ├── project-standup_hr-HR.properties │ ├── project-standup_id-ID.properties │ ├── project-standup_pes-IR.properties │ ├── project-standup_pl-PL.properties │ ├── project-standup_pt-BR.properties │ ├── project-standup_ru-RU.properties │ ├── project-standup_tr-TR.properties │ ├── project-standup_vi-VI.properties │ ├── project-standup_zh-CN.properties │ ├── project-task-priority_ar-AR.properties │ ├── project-task-priority_bg-BG.properties │ ├── project-task-priority_cs-CZ.properties │ ├── project-task-priority_da-DA.properties │ ├── project-task-priority_de-DE.properties │ ├── project-task-priority_en-US.properties │ ├── project-task-priority_es-ES.properties │ ├── project-task-priority_fi-FI.properties │ ├── project-task-priority_fr-FR.properties │ ├── project-task-priority_hr-HR.properties │ ├── project-task-priority_id-ID.properties │ ├── project-task-priority_pes-IR.properties │ ├── project-task-priority_pl-PL.properties │ ├── project-task-priority_pt-BR.properties │ ├── project-task-priority_ru-RU.properties │ ├── project-task-priority_tr-TR.properties │ ├── project-task-priority_vi-VI.properties │ ├── project-task-priority_zh-CN.properties │ ├── project-task_ar-AR.properties │ ├── project-task_bg-BG.properties │ ├── project-task_cs-CZ.properties │ ├── project-task_da-DA.properties │ ├── project-task_de-DE.properties │ ├── project-task_en-US.properties │ ├── project-task_es-ES.properties │ ├── project-task_fi-FI.properties │ ├── project-task_fr-FR.properties │ ├── project-task_hr-HR.properties │ ├── project-task_id-ID.properties │ ├── project-task_pes-IR.properties │ ├── project-task_pl-PL.properties │ ├── project-task_pt-BR.properties │ ├── project-task_ru-RU.properties │ ├── project-task_tr-TR.properties │ ├── project-task_vi-VI.properties │ ├── project-task_zh-CN.properties │ ├── project-ticket-relation_en-US.properties │ ├── project-ticket_ar-AR.properties │ ├── project-ticket_bg-BG.properties │ ├── project-ticket_cs-CZ.properties │ ├── project-ticket_da-DA.properties │ ├── project-ticket_da-US.properties │ ├── project-ticket_de-DE.properties │ ├── project-ticket_de-US.properties │ ├── project-ticket_en-US.properties │ ├── project-ticket_es-ES.properties │ ├── project-ticket_fi-FI.properties │ ├── project-ticket_fr-FR.properties │ ├── project-ticket_hr-HR.properties │ ├── project-ticket_id-ID.properties │ ├── project-ticket_pes-IR.properties │ ├── project-ticket_pl-PL.properties │ ├── project-ticket_pt-BR.properties │ ├── project-ticket_ru-RU.properties │ ├── project-ticket_tr-TR.properties │ ├── project-ticket_vi-VI.properties │ ├── project-ticket_zh-CN.properties │ ├── project-timetracking_ar-AR.properties │ ├── project-timetracking_bg-BG.properties │ ├── project-timetracking_cs-CZ.properties │ ├── project-timetracking_da-DA.properties │ ├── project-timetracking_de-DE.properties │ ├── project-timetracking_en-US.properties │ ├── project-timetracking_es-ES.properties │ ├── project-timetracking_fi-FI.properties │ ├── project-timetracking_fr-FR.properties │ ├── project-timetracking_hr-HR.properties │ ├── project-timetracking_id-ID.properties │ ├── project-timetracking_pes-IR.properties │ ├── project-timetracking_pl-PL.properties │ ├── project-timetracking_pt-BR.properties │ ├── project-timetracking_ru-RU.properties │ ├── project-timetracking_tr-TR.properties │ ├── project-timetracking_vi-VI.properties │ ├── project-timetracking_zh-CN.properties │ ├── project-version_ar-AR.properties │ ├── project-version_bg-BG.properties │ ├── project-version_cs-CZ.properties │ ├── project-version_da-DA.properties │ ├── project-version_de-DE.properties │ ├── project-version_en-US.properties │ ├── project-version_es-ES.properties │ ├── project-version_fi-FI.properties │ ├── project-version_fr-FR.properties │ ├── project-version_hr-HR.properties │ ├── project-version_id-ID.properties │ ├── project-version_pes-IR.properties │ ├── project-version_pl-PL.properties │ ├── project-version_pt-BR.properties │ ├── project-version_ru-RU.properties │ ├── project-version_tr-TR.properties │ ├── project-version_vi-VI.properties │ ├── project-version_zh-CN.properties │ ├── project_ar-AR.properties │ ├── project_bg-BG.properties │ ├── project_cs-CZ.properties │ ├── project_da-DA.properties │ ├── project_de-DE.properties │ ├── project_en-US.properties │ ├── project_es-ES.properties │ ├── project_fi-FI.properties │ ├── project_fr-FR.properties │ ├── project_hr-HR.properties │ ├── project_id-ID.properties │ ├── project_pes-IR.properties │ ├── project_pl-PL.properties │ ├── project_pt-BR.properties │ ├── project_ru-RU.properties │ ├── project_tr-TR.properties │ ├── project_vi-VI.properties │ ├── project_zh-CN.properties │ └── validation_en.properties ├── mycollab-migration ├── pom.xml └── src │ └── main │ ├── java │ ├── com │ │ └── mycollab │ │ │ └── db │ │ │ └── migration │ │ │ └── service │ │ │ └── DbMigrationRunner.java │ └── db │ │ └── migration │ │ └── common │ │ ├── V20190405_1__MigrateTicketKey.java │ │ └── V20190406_1__MigrateBugRelation.java │ └── resources │ └── db │ └── migration │ ├── h2 │ └── V20190101_1__InitDb.sql │ ├── mysql │ ├── V20170101_1__InitDb.sql │ ├── V20171001_1__Notification_Entity.sql │ ├── V20180531_1__Fix_KeyWords.sql │ ├── V20181212_1__Remove_Redudant_Tables.sql │ ├── V20181212_2__Adjust_Columns_Constraints_And_Names.sql │ ├── V20181212_3__Change_Date_Field.sql │ ├── V20190123_1__Remove_Expired_Custom_View.sql │ ├── V20190212_1__Add_Files_View.sql │ ├── V20190313_1__Add_More_Theme_Parameters.sql │ ├── V20190325_1__Custom_Fields.sql │ └── V20190416_1__Ticket_Hierarchy.sql │ └── postgresql │ └── V20190201_1__InitDb.sql ├── mycollab-parent-community └── pom.xml ├── mycollab-reporting ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── mycollab │ │ └── reporting │ │ ├── AbstractReportBuilder.kt │ │ ├── BeanDataSource.kt │ │ ├── ColumnBuilderClassMapper.kt │ │ ├── CsvReportBuilder.kt │ │ ├── DRIDataTypeFactory.kt │ │ ├── GroupIteratorDataSource.kt │ │ ├── PdfReportBuilder.kt │ │ ├── ReportExportType.kt │ │ ├── ReportStyles.kt │ │ ├── ReportTemplateExecutor.kt │ │ ├── RpFieldsBuilder.kt │ │ ├── SimpleReportTemplateExecutor.kt │ │ ├── TableViewFieldDecorator.java │ │ ├── XlsReportBuilder.kt │ │ ├── configuration │ │ ├── AccountColumnBuilderMapper.kt │ │ └── ProjectColumnBuilderMapper.kt │ │ ├── datatype │ │ ├── Java8DateTimeType.java │ │ └── Java8DateType.java │ │ ├── expression │ │ ├── DateExpression.kt │ │ ├── DateTimeExpression.kt │ │ ├── HumanTimeExpression.kt │ │ ├── I18nExpression.kt │ │ ├── MailExpression.kt │ │ ├── PrimaryTypeFieldExpression.kt │ │ └── SimpleFieldExpression.kt │ │ └── generator │ │ ├── ComponentBuilderGenerator.kt │ │ ├── HtmlBuilderGenerator.kt │ │ ├── HyperlinkBuilderGenerator.kt │ │ └── SimpleExpressionBuilderGenerator.kt │ └── resources │ ├── com │ └── mycollab │ │ └── reporting │ │ └── resources │ │ └── fonts │ │ ├── DejaVuSerif-Bold.ttf │ │ ├── DejaVuSerif-BoldItalic.ttf │ │ ├── DejaVuSerif-Italic.ttf │ │ └── DejaVuSerif.ttf │ ├── dynamicreports-defaults.xml │ ├── images │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── logo.png │ ├── no.png │ ├── priority_high.png │ ├── priority_low.png │ ├── priority_medium.png │ ├── priority_none.png │ ├── priority_urgent.png │ ├── severity_critical.png │ ├── severity_major.png │ ├── severity_minor.png │ ├── severity_trivial.png │ └── yes.png │ ├── jasperreports_extension.properties │ └── my_fonts.xml ├── mycollab-scheduler-community ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── mycollab │ └── community │ └── schedule │ ├── jobs │ └── CheckUpdateJob.java │ └── spring │ └── CommunityScheduleConfiguration.kt ├── mycollab-scheduler ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── mycollab │ │ ├── module │ │ └── project │ │ │ └── schedule │ │ │ └── email │ │ │ └── service │ │ │ ├── BugRelayEmailNotificationActionImpl.kt │ │ │ ├── ComponentRelayEmailNotificationActionImpl.kt │ │ │ ├── MessageRelayEmailNotificationActionImpl.kt │ │ │ ├── OverdueProjectTicketsNotificationJob.kt │ │ │ ├── ProjectMilestoneRelayEmailNotificationActionImpl.kt │ │ │ ├── ProjectPageRelayEmailNotificationActionImpl.kt │ │ │ ├── ProjectRiskRelayEmailNotificationActionImpl.kt │ │ │ ├── ProjectTaskRelayEmailNotificationActionImpl.kt │ │ │ ├── SendMailToAllMembersAction.kt │ │ │ ├── SendMailToFollowersAction.kt │ │ │ └── VersionRelayEmailNotificationActionImpl.kt │ │ └── schedule │ │ ├── AutowiringSpringBeanJobFactory.kt │ │ ├── email │ │ ├── ItemFieldMapper.kt │ │ ├── MailContext.kt │ │ └── format │ │ │ ├── CountryFieldFormat.kt │ │ │ ├── CurrencyFieldFormat.kt │ │ │ ├── DateFieldFormat.kt │ │ │ ├── DateTimeFieldFormat.kt │ │ │ ├── DefaultFieldFormat.kt │ │ │ ├── EmailLinkFieldFormat.kt │ │ │ ├── FieldFormat.kt │ │ │ ├── I18nFieldFormat.kt │ │ │ └── WebItem.kt │ │ ├── jobs │ │ ├── GenericQuartzJobBean.kt │ │ ├── LiveInstanceMonitorJob.kt │ │ ├── MailServiceMap.kt │ │ └── ProjectSendingRelayEmailNotificationJob.kt │ │ └── spring │ │ └── DefaultScheduleConfiguration.kt │ └── resources │ ├── mailProjectFooter.ftl │ ├── mailProjectItemCommentNotifier.ftl │ ├── mailProjectItemCreatedNotifier.ftl │ ├── mailProjectItemUpdatedNotifier.ftl │ └── mailProjectOverdueAssignmentsNotifier.ftl ├── mycollab-server-runner ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── mycollab │ │ ├── installation │ │ ├── servlet │ │ │ ├── AssetHttpServletRequestHandler.kt │ │ │ ├── DatabaseValidateServlet.kt │ │ │ ├── EmailValidationServlet.kt │ │ │ ├── InstallUtils.kt │ │ │ ├── InstallationServlet.kt │ │ │ └── SetupServlet.kt │ │ └── spring │ │ │ └── SetupSpringServletConfiguration.kt │ │ └── server │ │ └── DefaultServerRunner.java │ └── resources │ └── pageSetupFresh.ftl ├── mycollab-services-community ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── mycollab │ │ ├── community │ │ ├── common │ │ │ └── service │ │ │ │ └── AppPropertiesServiceImpl.kt │ │ ├── configuration │ │ │ └── DeploymentMode.kt │ │ └── module │ │ │ ├── billing │ │ │ └── service │ │ │ │ └── impl │ │ │ │ └── BillingPlanCheckerServiceImpl.kt │ │ │ ├── common │ │ │ └── service │ │ │ │ └── impl │ │ │ │ └── TagServiceImpl.kt │ │ │ ├── file │ │ │ └── service │ │ │ │ ├── RawContentServiceFactoryBean.kt │ │ │ │ └── impl │ │ │ │ └── FileStorageServiceImpl.kt │ │ │ ├── project │ │ │ └── service │ │ │ │ └── impl │ │ │ │ └── ProjectTicketServiceImpl.kt │ │ │ └── user │ │ │ └── service │ │ │ └── impl │ │ │ └── AccountThemeServiceImpl.kt │ │ └── form │ │ └── service │ │ └── impl │ │ └── MasterFormServiceImpl.kt │ └── test │ ├── java │ └── com │ │ └── mycollab │ │ ├── common │ │ └── service │ │ │ ├── ActivityStreamServiceTest.kt │ │ │ ├── MonitorServiceTest.kt │ │ │ ├── RelayEmailNotificationServiceTest.kt │ │ │ └── UserServiceTest.kt │ │ ├── core │ │ └── utils │ │ │ └── JSonDeSerializerTest.java │ │ └── module │ │ ├── ecm │ │ └── dao │ │ │ └── ContentJcrDaoTest.kt │ │ ├── page │ │ └── service │ │ │ └── PageServiceTest.kt │ │ └── project │ │ └── service │ │ ├── BugServiceTest.kt │ │ ├── ComponentServiceTest.kt │ │ ├── GenericTaskServiceTest.kt │ │ ├── GenericTicketServiceTest.kt │ │ ├── MessageServiceTest.kt │ │ ├── MilestoneServiceTest.kt │ │ ├── ProjectFollowingTicketServiceTest.kt │ │ ├── ProjectMemberServiceTest.kt │ │ ├── ProjectNotificationServiceTest.kt │ │ ├── ProjectRoleServiceTest.kt │ │ ├── ProjectServiceTest.kt │ │ ├── ProjectTaskServiceTest.kt │ │ ├── ProjectTicketServiceTest.kt │ │ ├── StandupReportServiceTest.kt │ │ ├── TicketRelationServiceTest.kt │ │ └── VersionServiceTest.kt │ └── resources │ ├── com │ └── mycollab │ │ ├── common │ │ └── service │ │ │ ├── ActivityStreamServiceTest.xml │ │ │ ├── AuditLogServiceTest.xml │ │ │ ├── MonitorServiceTest.xml │ │ │ ├── RelayEmailNotificationServiceTest.xml │ │ │ └── UserServiceTest.xml │ │ └── module │ │ └── project │ │ └── service │ │ ├── BugServiceTest.xml │ │ ├── ComponentServiceTest.xml │ │ ├── GenericTaskServiceTest.xml │ │ ├── GenericTicketServiceTest.xml │ │ ├── MessageServiceTest.xml │ │ ├── MilestoneServiceTest.xml │ │ ├── ProjectFollowingTicketServiceTest.xml │ │ ├── ProjectMemberServiceTest.xml │ │ ├── ProjectNotificationServiceTest.xml │ │ ├── ProjectRoleServiceTest.xml │ │ ├── ProjectServiceTest.xml │ │ ├── ProjectTaskServiceTest.xml │ │ ├── ProjectTicketServiceTest.xml │ │ ├── StandupReportServiceTest.xml │ │ ├── TicketRelationServiceTest.xml │ │ └── VersionServiceTest.xml │ └── jackrabbit-repo-test.xml ├── mycollab-services ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── mycollab │ │ │ ├── aspect │ │ │ ├── AuditLogAspect.kt │ │ │ ├── AuditLogUtil.kt │ │ │ ├── ClassInfo.kt │ │ │ ├── ClassInfoMap.kt │ │ │ ├── InjectTimeLoggingAspect.kt │ │ │ ├── MonitorItemAspect.kt │ │ │ ├── Traceable.kt │ │ │ └── TraceableCreateAspect.kt │ │ │ ├── common │ │ │ ├── ActivityStreamConstants.kt │ │ │ ├── CountryValueFactory.kt │ │ │ ├── EntryUpdateNotification.kt │ │ │ ├── GenericLinkUtils.kt │ │ │ ├── InvalidTokenException.kt │ │ │ ├── ModuleNameConstants.kt │ │ │ ├── MonitorTypeConstants.kt │ │ │ ├── NotificationType.kt │ │ │ ├── SessionIdGenerator.kt │ │ │ ├── TableViewField.java │ │ │ ├── UrlEncodeDecoder.kt │ │ │ ├── UrlTokenizer.kt │ │ │ ├── dao │ │ │ │ ├── ActivityStreamMapper.java │ │ │ │ ├── ActivityStreamMapperExt.kt │ │ │ │ ├── AuditLogMapper.java │ │ │ │ ├── AuditLogMapperExt.kt │ │ │ │ ├── ClientMapper.java │ │ │ │ ├── ClientMapperExt.kt │ │ │ │ ├── CommentMapper.java │ │ │ │ ├── CommentMapperExt.kt │ │ │ │ ├── CustomViewStoreMapper.java │ │ │ │ ├── CustomerFeedbackMapper.java │ │ │ │ ├── DriveInfoMapper.java │ │ │ │ ├── MonitorItemMapper.java │ │ │ │ ├── MonitorItemMapperExt.kt │ │ │ │ ├── OptionValMapper.java │ │ │ │ ├── RelayEmailNotificationMapper.java │ │ │ │ ├── RelayEmailNotificationMapperExt.kt │ │ │ │ ├── ReportBugIssueMapper.java │ │ │ │ ├── SaveSearchResultMapper.java │ │ │ │ └── SaveSearchResultMapperExt.kt │ │ │ ├── domain │ │ │ │ ├── ActivityStream.java │ │ │ │ ├── ActivityStreamExample.java │ │ │ │ ├── ActivityStreamWithBLOBs.java │ │ │ │ ├── AggregateTag.kt │ │ │ │ ├── AuditChangeItem.kt │ │ │ │ ├── AuditLog.java │ │ │ │ ├── AuditLogExample.java │ │ │ │ ├── Client.java │ │ │ │ ├── ClientExample.java │ │ │ │ ├── Comment.java │ │ │ │ ├── CommentExample.java │ │ │ │ ├── CommentWithBLOBs.java │ │ │ │ ├── CustomViewStore.java │ │ │ │ ├── CustomViewStoreExample.java │ │ │ │ ├── CustomerFeedback.java │ │ │ │ ├── CustomerFeedbackExample.java │ │ │ │ ├── CustomerFeedbackWithBLOBs.java │ │ │ │ ├── DriveInfo.java │ │ │ │ ├── DriveInfoExample.java │ │ │ │ ├── FavoriteItem.java │ │ │ │ ├── FavoriteItemExample.java │ │ │ │ ├── GroupItem.kt │ │ │ │ ├── LiveInstance.java │ │ │ │ ├── LiveInstanceExample.java │ │ │ │ ├── MailRecipientField.kt │ │ │ │ ├── MonitorItem.java │ │ │ │ ├── MonitorItemExample.java │ │ │ │ ├── NullCustomViewStore.kt │ │ │ │ ├── OptionVal.java │ │ │ │ ├── OptionValExample.java │ │ │ │ ├── RelayEmailNotification.java │ │ │ │ ├── RelayEmailNotificationExample.java │ │ │ │ ├── RelayEmailNotificationWithBLOBs.java │ │ │ │ ├── ReportBugIssue.java │ │ │ │ ├── ReportBugIssueExample.java │ │ │ │ ├── ReportBugIssueWithBLOBs.java │ │ │ │ ├── SaveSearchResult.java │ │ │ │ ├── SaveSearchResultExample.java │ │ │ │ ├── SaveSearchResultWithBLOBs.java │ │ │ │ ├── SimpleActivityStream.kt │ │ │ │ ├── SimpleAuditLog.kt │ │ │ │ ├── SimpleClient.kt │ │ │ │ ├── SimpleComment.kt │ │ │ │ ├── SimpleMonitorItem.kt │ │ │ │ ├── SimpleRelayEmailNotification.kt │ │ │ │ ├── Tag.java │ │ │ │ ├── TagExample.java │ │ │ │ └── criteria │ │ │ │ │ ├── ActivityStreamSearchCriteria.kt │ │ │ │ │ ├── AuditLogSearchCriteria.kt │ │ │ │ │ ├── ClientSearchCriteria.kt │ │ │ │ │ ├── CommentSearchCriteria.kt │ │ │ │ │ ├── MonitorSearchCriteria.kt │ │ │ │ │ ├── RelayEmailNotificationSearchCriteria.kt │ │ │ │ │ ├── SaveSearchResultCriteria.kt │ │ │ │ │ ├── TagSearchCriteria.kt │ │ │ │ │ └── TimelineTrackingSearchCriteria.kt │ │ │ ├── json │ │ │ │ ├── FieldDefAnalyzer.java │ │ │ │ └── QueryAnalyzer.java │ │ │ └── service │ │ │ │ ├── ActivityStreamService.kt │ │ │ │ ├── AppPropertiesService.kt │ │ │ │ ├── AuditLogService.kt │ │ │ │ ├── ClientService.kt │ │ │ │ ├── CommentService.kt │ │ │ │ ├── CustomViewStoreService.kt │ │ │ │ ├── DriveInfoService.kt │ │ │ │ ├── FavoriteItemService.kt │ │ │ │ ├── MonitorItemService.kt │ │ │ │ ├── OptionValService.kt │ │ │ │ ├── RelayEmailNotificationService.kt │ │ │ │ ├── SaveSearchResultService.kt │ │ │ │ ├── TagService.kt │ │ │ │ └── impl │ │ │ │ ├── ActivityStreamServiceImpl.kt │ │ │ │ ├── AuditLogServiceImpl.kt │ │ │ │ ├── ClientServiceImpl.kt │ │ │ │ ├── CommentServiceImpl.kt │ │ │ │ ├── CustomViewStoreServiceImpl.kt │ │ │ │ ├── DriveInfoServiceImpl.kt │ │ │ │ ├── MonitorItemServiceImpl.kt │ │ │ │ ├── OptionValServiceImpl.kt │ │ │ │ ├── RelayEmailNotificationServiceImpl.kt │ │ │ │ └── SaveSearchResultServiceImpl.kt │ │ │ ├── form │ │ │ ├── dao │ │ │ │ ├── FormCustomFieldValueMapper.java │ │ │ │ ├── FormSectionFieldMapper.java │ │ │ │ ├── FormSectionMapper.java │ │ │ │ └── FormSectionMapperExt.kt │ │ │ ├── domain │ │ │ │ ├── FormCustomFieldValue.java │ │ │ │ ├── FormCustomFieldValueExample.java │ │ │ │ ├── FormCustomFieldValueWithBLOBs.java │ │ │ │ ├── FormSection.java │ │ │ │ ├── FormSectionExample.java │ │ │ │ ├── FormSectionField.java │ │ │ │ ├── FormSectionFieldExample.java │ │ │ │ └── SimpleFormSection.kt │ │ │ ├── service │ │ │ │ └── MasterFormService.kt │ │ │ └── view │ │ │ │ ├── LayoutType.kt │ │ │ │ └── builder │ │ │ │ ├── AbstractDynaFieldBuilder.java │ │ │ │ ├── BooleanDynaFieldBuilder.java │ │ │ │ ├── CheckBoxDynaFieldBuilder.java │ │ │ │ ├── CurrencyDynaFieldBuilder.java │ │ │ │ ├── DateDynaFieldBuilder.java │ │ │ │ ├── DateTimeDynaFieldBuilder.java │ │ │ │ ├── DynaFormBuilder.java │ │ │ │ ├── DynaSectionBuilder.java │ │ │ │ ├── EmailDynaFieldBuilder.java │ │ │ │ ├── FieldType.java │ │ │ │ ├── IntDynaFieldBuilder.java │ │ │ │ ├── NumberDynaFieldBuilder.java │ │ │ │ ├── PercentageDynaFieldBuilder.java │ │ │ │ ├── PhoneDynaFieldBuilder.java │ │ │ │ ├── PickListDynaFieldBuilder.java │ │ │ │ ├── TextAreaDynaFieldBuilder.java │ │ │ │ ├── TextDynaFieldBuilder.java │ │ │ │ ├── UrlDynaFieldBuilder.java │ │ │ │ └── type │ │ │ │ ├── AbstractDynaField.java │ │ │ │ ├── BooleanDynaField.java │ │ │ │ ├── CheckBoxDynaField.java │ │ │ │ ├── CurrencyDynaField.java │ │ │ │ ├── DateDynaField.java │ │ │ │ ├── DateTimeDynaField.java │ │ │ │ ├── DynaBuilder.java │ │ │ │ ├── DynaForm.java │ │ │ │ ├── DynaSection.kt │ │ │ │ ├── EmailDynaField.java │ │ │ │ ├── IntDynaField.java │ │ │ │ ├── NumberDynaField.java │ │ │ │ ├── PercentageDynaField.java │ │ │ │ ├── PhoneDynaField.java │ │ │ │ ├── PickListDynaField.java │ │ │ │ ├── TextAreaDynaField.java │ │ │ │ ├── TextDynaField.java │ │ │ │ └── UrlDynaField.java │ │ │ ├── html │ │ │ └── LinkUtils.kt │ │ │ ├── module │ │ │ ├── billing │ │ │ │ ├── AccountReminderStatusContants.kt │ │ │ │ ├── AccountStatusConstants.kt │ │ │ │ ├── RegisterStatusConstants.kt │ │ │ │ ├── SubDomainNotExistException.kt │ │ │ │ ├── UsageExceedBillingPlanException.kt │ │ │ │ ├── UserStatusConstants.kt │ │ │ │ ├── esb │ │ │ │ │ └── AccountCreatedEvent.kt │ │ │ │ └── service │ │ │ │ │ └── BillingPlanCheckerService.kt │ │ │ ├── ecm │ │ │ │ ├── domain │ │ │ │ │ ├── Content.kt │ │ │ │ │ ├── Folder.kt │ │ │ │ │ └── Resource.kt │ │ │ │ ├── esb │ │ │ │ │ ├── DeleteResourcesEvent.kt │ │ │ │ │ └── SaveContentEvent.kt │ │ │ │ └── service │ │ │ │ │ ├── ContentJcrDao.kt │ │ │ │ │ ├── ResourceService.kt │ │ │ │ │ └── impl │ │ │ │ │ ├── ContentJcrDaoImpl.java │ │ │ │ │ └── ResourceServiceImpl.kt │ │ │ ├── file │ │ │ │ ├── AttachmentUtils.kt │ │ │ │ ├── PathUtils.kt │ │ │ │ ├── StorageUtils.kt │ │ │ │ └── service │ │ │ │ │ ├── AbstractStorageService.kt │ │ │ │ │ ├── AccountFavIconService.kt │ │ │ │ │ ├── AccountLogoService.kt │ │ │ │ │ ├── EntityUploaderService.kt │ │ │ │ │ ├── RawContentService.kt │ │ │ │ │ ├── UserAvatarService.kt │ │ │ │ │ └── impl │ │ │ │ │ ├── AccountFavIconServiceImpl.kt │ │ │ │ │ ├── AccountLogoServiceImpl.kt │ │ │ │ │ ├── EntityUploaderServiceImpl.kt │ │ │ │ │ ├── FileRawContentServiceImpl.kt │ │ │ │ │ └── UserAvatarServiceImpl.kt │ │ │ ├── mail │ │ │ │ ├── AttachmentSource.kt │ │ │ │ ├── DefaultMailer.kt │ │ │ │ ├── FileAttachmentSource.kt │ │ │ │ ├── IMailer.kt │ │ │ │ ├── MailUtils.kt │ │ │ │ ├── NullMailer.kt │ │ │ │ └── service │ │ │ │ │ ├── ExtMailService.kt │ │ │ │ │ ├── IContentGenerator.kt │ │ │ │ │ └── impl │ │ │ │ │ ├── ContentGenerator.kt │ │ │ │ │ └── ExtMailServiceImpl.kt │ │ │ ├── page │ │ │ │ ├── domain │ │ │ │ │ ├── Folder.kt │ │ │ │ │ ├── Page.kt │ │ │ │ │ ├── PageResource.kt │ │ │ │ │ └── PageVersion.kt │ │ │ │ └── service │ │ │ │ │ ├── PageService.kt │ │ │ │ │ └── impl │ │ │ │ │ └── PageServiceImpl.java │ │ │ ├── project │ │ │ │ ├── ProjectLinkGenerator.kt │ │ │ │ ├── ProjectMemberStatusConstants.kt │ │ │ │ ├── ProjectResources.kt │ │ │ │ ├── ProjectRolePermissionCollections.kt │ │ │ │ ├── ProjectTooltipGenerator.kt │ │ │ │ ├── ProjectTypeConstants.kt │ │ │ │ ├── TicketRelationConstants.kt │ │ │ │ ├── dao │ │ │ │ │ ├── BugMapper.java │ │ │ │ │ ├── BugMapperExt.kt │ │ │ │ │ ├── ComponentMapper.java │ │ │ │ │ ├── ComponentMapperExt.kt │ │ │ │ │ ├── KanbanBoardMapper.java │ │ │ │ │ ├── MessageMapper.java │ │ │ │ │ ├── MessageMapperExt.kt │ │ │ │ │ ├── MilestoneMapper.java │ │ │ │ │ ├── MilestoneMapperExt.kt │ │ │ │ │ ├── ProjectCustomizeViewMapper.java │ │ │ │ │ ├── ProjectFollowingTicketMapperExt.kt │ │ │ │ │ ├── ProjectGenericItemMapper.kt │ │ │ │ │ ├── ProjectMapper.java │ │ │ │ │ ├── ProjectMapperExt.kt │ │ │ │ │ ├── ProjectMemberMapper.java │ │ │ │ │ ├── ProjectMemberMapperExt.kt │ │ │ │ │ ├── ProjectNotificationSettingMapper.java │ │ │ │ │ ├── ProjectNotificationSettingMapperExt.kt │ │ │ │ │ ├── ProjectRoleMapper.java │ │ │ │ │ ├── ProjectRoleMapperExt.kt │ │ │ │ │ ├── ProjectRolePermissionMapper.java │ │ │ │ │ ├── ProjectRolePermissionMapperExt.kt │ │ │ │ │ ├── ProjectTicketMapper.kt │ │ │ │ │ ├── StandupReportMapper.java │ │ │ │ │ ├── StandupReportMapperExt.kt │ │ │ │ │ ├── TaskMapper.java │ │ │ │ │ ├── TaskMapperExt.kt │ │ │ │ │ ├── TicketHierarchyMapper.java │ │ │ │ │ ├── TicketKeyMapper.java │ │ │ │ │ ├── TicketKeyMapperExt.kt │ │ │ │ │ ├── TicketRelationMapper.java │ │ │ │ │ ├── TicketRelationMapperExt.kt │ │ │ │ │ ├── VersionMapper.java │ │ │ │ │ └── VersionMapperExt.kt │ │ │ │ ├── domain │ │ │ │ │ ├── Bug.java │ │ │ │ │ ├── BugExample.java │ │ │ │ │ ├── BugWithBLOBs.java │ │ │ │ │ ├── Component.java │ │ │ │ │ ├── ComponentExample.java │ │ │ │ │ ├── FollowingTicket.kt │ │ │ │ │ ├── Invoice.java │ │ │ │ │ ├── InvoiceExample.java │ │ │ │ │ ├── ItemTimeLogging.java │ │ │ │ │ ├── ItemTimeLoggingExample.java │ │ │ │ │ ├── KanbanBoard.java │ │ │ │ │ ├── KanbanBoardExample.java │ │ │ │ │ ├── Message.java │ │ │ │ │ ├── MessageExample.java │ │ │ │ │ ├── Milestone.java │ │ │ │ │ ├── MilestoneExample.java │ │ │ │ │ ├── Project.java │ │ │ │ │ ├── ProjectActivityStream.kt │ │ │ │ │ ├── ProjectCustomizeView.java │ │ │ │ │ ├── ProjectCustomizeViewExample.java │ │ │ │ │ ├── ProjectExample.java │ │ │ │ │ ├── ProjectGenericItem.kt │ │ │ │ │ ├── ProjectMember.java │ │ │ │ │ ├── ProjectMemberExample.java │ │ │ │ │ ├── ProjectNotificationSetting.java │ │ │ │ │ ├── ProjectNotificationSettingExample.java │ │ │ │ │ ├── ProjectRelayEmailNotification.kt │ │ │ │ │ ├── ProjectRole.java │ │ │ │ │ ├── ProjectRoleExample.java │ │ │ │ │ ├── ProjectRolePermission.java │ │ │ │ │ ├── ProjectRolePermissionExample.java │ │ │ │ │ ├── ProjectTicket.kt │ │ │ │ │ ├── Risk.java │ │ │ │ │ ├── RiskExample.java │ │ │ │ │ ├── RolePermissionVal.kt │ │ │ │ │ ├── SimpleBug.kt │ │ │ │ │ ├── SimpleComponent.kt │ │ │ │ │ ├── SimpleInvoice.kt │ │ │ │ │ ├── SimpleItemTimeLogging.kt │ │ │ │ │ ├── SimpleMessage.kt │ │ │ │ │ ├── SimpleMilestone.kt │ │ │ │ │ ├── SimpleProject.kt │ │ │ │ │ ├── SimpleProjectMember.kt │ │ │ │ │ ├── SimpleProjectRole.kt │ │ │ │ │ ├── SimpleRisk.kt │ │ │ │ │ ├── SimpleStandupReport.kt │ │ │ │ │ ├── SimpleTask.kt │ │ │ │ │ ├── SimpleTicketRelation.kt │ │ │ │ │ ├── SimpleVersion.kt │ │ │ │ │ ├── StandupReport.java │ │ │ │ │ ├── StandupReportExample.java │ │ │ │ │ ├── StandupReportStatistic.kt │ │ │ │ │ ├── StandupReportWithBLOBs.java │ │ │ │ │ ├── Task.java │ │ │ │ │ ├── TaskExample.java │ │ │ │ │ ├── TicketHierarchy.java │ │ │ │ │ ├── TicketHierarchyExample.java │ │ │ │ │ ├── TicketKey.java │ │ │ │ │ ├── TicketKeyExample.java │ │ │ │ │ ├── TicketRelation.java │ │ │ │ │ ├── TicketRelationExample.java │ │ │ │ │ ├── Version.java │ │ │ │ │ ├── VersionExample.java │ │ │ │ │ └── criteria │ │ │ │ │ │ ├── BugSearchCriteria.kt │ │ │ │ │ │ ├── ComponentSearchCriteria.kt │ │ │ │ │ │ ├── FileSearchCriteria.kt │ │ │ │ │ │ ├── FollowingTicketSearchCriteria.kt │ │ │ │ │ │ ├── InvoiceSearchCriteria.kt │ │ │ │ │ │ ├── ItemTimeLoggingSearchCriteria.kt │ │ │ │ │ │ ├── MessageSearchCriteria.kt │ │ │ │ │ │ ├── MilestoneSearchCriteria.kt │ │ │ │ │ │ ├── ProjectGenericItemSearchCriteria.kt │ │ │ │ │ │ ├── ProjectMemberSearchCriteria.kt │ │ │ │ │ │ ├── ProjectRoleSearchCriteria.kt │ │ │ │ │ │ ├── ProjectSearchCriteria.kt │ │ │ │ │ │ ├── ProjectTicketSearchCriteria.kt │ │ │ │ │ │ ├── RiskSearchCriteria.kt │ │ │ │ │ │ ├── StandupReportSearchCriteria.kt │ │ │ │ │ │ ├── TaskSearchCriteria.kt │ │ │ │ │ │ └── VersionSearchCriteria.kt │ │ │ │ ├── esb │ │ │ │ │ ├── AddProjectEvent.kt │ │ │ │ │ ├── DeleteProjectBugEvent.kt │ │ │ │ │ ├── DeleteProjectComponentEvent.kt │ │ │ │ │ ├── DeleteProjectEvent.kt │ │ │ │ │ ├── DeleteProjectMemberEvent.kt │ │ │ │ │ ├── DeleteProjectMessageEvent.kt │ │ │ │ │ ├── DeleteProjectMilestoneEvent.kt │ │ │ │ │ ├── DeleteProjectRiskEvent.kt │ │ │ │ │ ├── DeleteProjectTaskEvent.kt │ │ │ │ │ ├── DeleteProjectVersionEvent.kt │ │ │ │ │ ├── InviteProjectMembersEvent.kt │ │ │ │ │ └── NewProjectMemberJoinEvent.kt │ │ │ │ └── service │ │ │ │ │ ├── BugService.kt │ │ │ │ │ ├── ComponentService.kt │ │ │ │ │ ├── InvoiceService.kt │ │ │ │ │ ├── ItemTimeLoggingService.kt │ │ │ │ │ ├── MessageService.kt │ │ │ │ │ ├── MilestoneService.kt │ │ │ │ │ ├── ProjectActivityStreamService.kt │ │ │ │ │ ├── ProjectCustomizeViewService.kt │ │ │ │ │ ├── ProjectFollowingTicketService.kt │ │ │ │ │ ├── ProjectGenericItemService.kt │ │ │ │ │ ├── ProjectMemberService.kt │ │ │ │ │ ├── ProjectNotificationSettingService.kt │ │ │ │ │ ├── ProjectPageService.kt │ │ │ │ │ ├── ProjectRoleService.kt │ │ │ │ │ ├── ProjectService.kt │ │ │ │ │ ├── ProjectTemplateService.kt │ │ │ │ │ ├── ProjectTicketService.kt │ │ │ │ │ ├── RiskService.kt │ │ │ │ │ ├── StandupReportService.kt │ │ │ │ │ ├── TaskService.kt │ │ │ │ │ ├── TicketKeyService.kt │ │ │ │ │ ├── TicketRelationService.kt │ │ │ │ │ ├── VersionService.kt │ │ │ │ │ └── impl │ │ │ │ │ ├── AbstractProjectTicketServiceImpl.kt │ │ │ │ │ ├── BugServiceImpl.kt │ │ │ │ │ ├── ComponentServiceImpl.kt │ │ │ │ │ ├── MessageServiceImpl.kt │ │ │ │ │ ├── MilestoneServiceImpl.kt │ │ │ │ │ ├── ProjectActivityStreamServiceImpl.kt │ │ │ │ │ ├── ProjectCustomizeViewServiceImpl.kt │ │ │ │ │ ├── ProjectFollowingTicketServiceImpl.kt │ │ │ │ │ ├── ProjectGenericItemServiceImpl.kt │ │ │ │ │ ├── ProjectMemberServiceImpl.kt │ │ │ │ │ ├── ProjectNotificationSettingServiceImpl.kt │ │ │ │ │ ├── ProjectPageServiceImpl.kt │ │ │ │ │ ├── ProjectRoleServiceImpl.kt │ │ │ │ │ ├── ProjectServiceImpl.kt │ │ │ │ │ ├── StandupReportServiceImpl.kt │ │ │ │ │ ├── TaskServiceImpl.kt │ │ │ │ │ ├── TicketKeyServiceImpl.kt │ │ │ │ │ ├── TicketRelationServiceImpl.kt │ │ │ │ │ └── VersionServiceImpl.kt │ │ │ └── user │ │ │ │ ├── AccountLinkGenerator.kt │ │ │ │ ├── AdminTypeConstants.kt │ │ │ │ ├── CommonTooltipGenerator.java │ │ │ │ ├── dao │ │ │ │ ├── AccountThemeMapper.java │ │ │ │ ├── BillingAccountMapper.java │ │ │ │ ├── BillingAccountMapperExt.kt │ │ │ │ ├── BillingPlanMapper.java │ │ │ │ ├── RoleMapper.java │ │ │ │ ├── RoleMapperExt.kt │ │ │ │ ├── RolePermissionMapper.java │ │ │ │ ├── UserAccountMapper.java │ │ │ │ ├── UserMapper.java │ │ │ │ ├── UserMapperExt.kt │ │ │ │ ├── UserPermissionMapper.java │ │ │ │ └── UserTrackingMapper.java │ │ │ │ ├── domain │ │ │ │ ├── AccountTheme.java │ │ │ │ ├── AccountThemeExample.java │ │ │ │ ├── BillingAccount.java │ │ │ │ ├── BillingAccountExample.java │ │ │ │ ├── BillingAccountWithOwners.kt │ │ │ │ ├── BillingPlan.java │ │ │ │ ├── BillingPlanExample.java │ │ │ │ ├── Role.java │ │ │ │ ├── RoleExample.java │ │ │ │ ├── RolePermission.java │ │ │ │ ├── RolePermissionExample.java │ │ │ │ ├── SimpleBillingAccount.kt │ │ │ │ ├── SimpleRole.kt │ │ │ │ ├── SimpleUser.kt │ │ │ │ ├── User.java │ │ │ │ ├── UserAccount.java │ │ │ │ ├── UserAccountExample.java │ │ │ │ ├── UserExample.java │ │ │ │ ├── UserPermission.java │ │ │ │ ├── UserPermissionExample.java │ │ │ │ ├── UserTracking.java │ │ │ │ ├── UserTrackingExample.java │ │ │ │ └── criteria │ │ │ │ │ ├── RoleSearchCriteria.kt │ │ │ │ │ └── UserSearchCriteria.kt │ │ │ │ ├── esb │ │ │ │ ├── DeleteUserEvent.kt │ │ │ │ ├── NewUserJoinEvent.kt │ │ │ │ ├── RequestToResetPasswordEvent.kt │ │ │ │ ├── SendUserEmailVerifyRequestEvent.kt │ │ │ │ └── SendUserInvitationEvent.kt │ │ │ │ └── service │ │ │ │ ├── AccountThemeService.kt │ │ │ │ ├── BillingAccountService.kt │ │ │ │ ├── RoleService.kt │ │ │ │ ├── UserService.kt │ │ │ │ └── mybatis │ │ │ │ ├── BillingAccountServiceImpl.kt │ │ │ │ ├── RoleServiceDBImpl.kt │ │ │ │ └── UserServiceDBImpl.kt │ │ │ ├── schedule │ │ │ └── email │ │ │ │ ├── MailStyles.kt │ │ │ │ ├── SendingRelayEmailNotificationAction.kt │ │ │ │ └── project │ │ │ │ ├── BugRelayEmailNotificationAction.kt │ │ │ │ ├── ComponentRelayEmailNotificationAction.kt │ │ │ │ ├── MessageRelayEmailNotificationAction.kt │ │ │ │ ├── ProjectMilestoneRelayEmailNotificationAction.kt │ │ │ │ ├── ProjectPageRelayEmailNotificationAction.kt │ │ │ │ ├── ProjectRelayEmailNotificationAction.kt │ │ │ │ ├── ProjectRiskRelayEmailNotificationAction.kt │ │ │ │ ├── ProjectTaskRelayEmailNotificationAction.kt │ │ │ │ ├── StandupRelayEmailNotificationAction.kt │ │ │ │ └── VersionRelayEmailNotificationAction.kt │ │ │ ├── spring │ │ │ ├── AppEventBus.kt │ │ │ ├── DataSourceConfiguration.kt │ │ │ ├── FreeMarkerConfiguration.kt │ │ │ ├── MyBatisConfiguration.java │ │ │ ├── RootConfiguration.java │ │ │ └── ValidatorConfiguration.kt │ │ │ └── support │ │ │ └── domain │ │ │ └── TestimonialForm.java │ └── resources │ │ ├── CommonGeneratorConfig.xml │ │ ├── CommonGeneratorPremiumConfig.xml │ │ ├── FormGeneratorConfig.xml │ │ ├── ProjectGeneratorConfig.xml │ │ ├── ProjectGeneratorPremiumConfig.xml │ │ ├── UserGeneratorConfig.xml │ │ ├── jackrabbit-repo.xml │ │ ├── sqlMap │ │ ├── common │ │ │ ├── ActivityStreamMapper.xml │ │ │ ├── ActivityStreamMapperExt.xml │ │ │ ├── AuditLogMapper.xml │ │ │ ├── AuditLogMapperExt.xml │ │ │ ├── ClientMapper.xml │ │ │ ├── ClientMapperExt.xml │ │ │ ├── CommentMapper.xml │ │ │ ├── CommentMapperExt.xml │ │ │ ├── CustomViewStoreMapper.xml │ │ │ ├── CustomerFeedbackMapper.xml │ │ │ ├── DriveInfoMapper.xml │ │ │ ├── GroupItemMapper.xml │ │ │ ├── MonitorItemMapper.xml │ │ │ ├── MonitorItemMapperExt.xml │ │ │ ├── OptionValMapper.xml │ │ │ ├── RelayEmailNotificationMapper.xml │ │ │ ├── RelayEmailNotificationMapperExt.xml │ │ │ ├── ReportBugIssueMapper.xml │ │ │ ├── SaveSearchResultMapper.xml │ │ │ └── SaveSearchResultMapperExt.xml │ │ ├── form │ │ │ ├── FormCustomFieldValueMapper.xml │ │ │ ├── FormSectionFieldMapper.xml │ │ │ ├── FormSectionMapper.xml │ │ │ └── FormSectionMapperExt.xml │ │ ├── project │ │ │ ├── BugMapper.xml │ │ │ ├── BugMapperExt.xml │ │ │ ├── ComponentMapper.xml │ │ │ ├── ComponentMapperExt.xml │ │ │ ├── KanbanBoardMapper.xml │ │ │ ├── MessageMapper.xml │ │ │ ├── MessageMapperExt.xml │ │ │ ├── MilestoneMapper.xml │ │ │ ├── MilestoneMapperExt.xml │ │ │ ├── ProjectCustomizeViewMapper.xml │ │ │ ├── ProjectFollowingTicketMapperExt.xml │ │ │ ├── ProjectGenericItemMapper.xml │ │ │ ├── ProjectMapper.xml │ │ │ ├── ProjectMapperExt.xml │ │ │ ├── ProjectMemberMapper.xml │ │ │ ├── ProjectMemberMapperExt.xml │ │ │ ├── ProjectNotificationSettingMapper.xml │ │ │ ├── ProjectNotificationSettingMapperExt.xml │ │ │ ├── ProjectRoleMapper.xml │ │ │ ├── ProjectRoleMapperExt.xml │ │ │ ├── ProjectRolePermissionMapper.xml │ │ │ ├── ProjectRolePermissionMapperExt.xml │ │ │ ├── ProjectTicketMapper.xml │ │ │ ├── StandupReportMapper.xml │ │ │ ├── StandupReportMapperExt.xml │ │ │ ├── TaskMapper.xml │ │ │ ├── TaskMapperExt.xml │ │ │ ├── TicketHierarchyMapper.xml │ │ │ ├── TicketKeyMapper.xml │ │ │ ├── TicketKeyMapperExt.xml │ │ │ ├── TicketRelationMapper.xml │ │ │ ├── TicketRelationMapperExt.xml │ │ │ ├── VersionMapper.xml │ │ │ └── VersionMapperExt.xml │ │ └── user │ │ │ ├── AccountThemeMapper.xml │ │ │ ├── BillingAccountMapper.xml │ │ │ ├── BillingAccountMapperExt.xml │ │ │ ├── BillingPlanMapper.xml │ │ │ ├── RoleMapper.xml │ │ │ ├── RoleMapperExt.xml │ │ │ ├── RolePermissionMapper.xml │ │ │ ├── UserAccountMapper.xml │ │ │ ├── UserMapper.xml │ │ │ ├── UserMapperExt.xml │ │ │ ├── UserPermissionMapper.xml │ │ │ └── UserTrackingMapper.xml │ │ ├── validation.xml │ │ ├── validator │ │ ├── project-constraints.xml │ │ ├── tracker-constraints.xml │ │ └── user-constraints.xml │ │ └── wiki-repo.xml │ └── test │ └── java │ └── com │ └── mycollab │ └── common │ └── UrlTokenizerTest.kt ├── mycollab-servlet ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── mycollab │ │ ├── module │ │ ├── billing │ │ │ └── servlet │ │ │ │ ├── BillingSpringServletRegistrator.kt │ │ │ │ ├── ConfirmEmailHandler.kt │ │ │ │ ├── PageGeneratorUtil.kt │ │ │ │ ├── ResetPasswordHandler.kt │ │ │ │ └── ResetPasswordUpdatePage.kt │ │ ├── file │ │ │ └── servlet │ │ │ │ ├── AssetHandler.kt │ │ │ │ ├── FileSpringServletRegistrator.kt │ │ │ │ ├── ResourceGetHandler.kt │ │ │ │ └── UserAvatarHttpServletRequestHandler.kt │ │ └── page │ │ │ └── servlet │ │ │ ├── FileUploadServlet.kt │ │ │ └── PageSpringServletRegistor.kt │ │ └── servlet │ │ ├── AppExceptionServletHandler.kt │ │ ├── ContextStartedListener.java │ │ ├── GenericHttpServlet.kt │ │ ├── GenericSpringServletRegistor.kt │ │ ├── TemplateWebServletRequestHandler.kt │ │ └── TooltipGeneratorServletRequestHandler.kt │ └── resources │ ├── macroPage.ftl │ ├── page404.ftl │ ├── page500.ftl │ ├── pageFooter.ftl │ ├── pageLogo.ftl │ ├── pageUserNotExist.ftl │ └── pageUserRecoveryPassword.ftl ├── mycollab-template ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── mycollab │ │ └── template │ │ └── FreemarkerFactory.kt │ └── resources │ ├── macroTextBlock.ftl │ ├── mailFooter2.ftl │ ├── mailHeader.ftl │ ├── mailLogo.ftl │ └── mailUnsubscribe.ftl ├── mycollab-test ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── mycollab │ │ └── test │ │ ├── DataSet.java │ │ ├── DbUnitUtil.java │ │ ├── TestDbConfiguration.java │ │ ├── TestException.kt │ │ ├── WebServer.java │ │ ├── rule │ │ ├── DbUnitInitializerRule.java │ │ └── EssentialInitRule.kt │ │ └── spring │ │ ├── DataSourceConfigurationTest.java │ │ ├── DataSourceFactoryBean.java │ │ ├── EcmConfigurationTest.java │ │ ├── IntegrationServiceTest.java │ │ ├── PageConfigurationTest.java │ │ └── RootConfigurationTest.java │ └── resources │ ├── jackrabbit-repo-test.xml │ ├── logback-test.xml │ ├── mycollab.dtd │ └── wiki-repo-test.xml ├── mycollab-web-community ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── mycollab │ └── community │ ├── module │ ├── project │ │ └── view │ │ │ ├── ProjectAddWindow.java │ │ │ ├── reports │ │ │ ├── ReportContainerImpl.java │ │ │ └── ReportPresenter.java │ │ │ ├── service │ │ │ ├── BugComponentFactoryImpl.java │ │ │ ├── MilestoneComponentFactoryImpl.java │ │ │ ├── TaskComponentFactoryImpl.java │ │ │ └── TicketComponentFactoryImpl.java │ │ │ └── settings │ │ │ └── ProjectSettingViewImpl.java │ └── user │ │ └── accountsettings │ │ ├── billing │ │ └── view │ │ │ ├── BillingContainer.java │ │ │ └── BillingPresenter.java │ │ └── customize │ │ └── view │ │ ├── ThemeCustomizePresenter.java │ │ └── ThemeCustomizeView.java │ ├── shell │ └── view │ │ ├── AdWindow.java │ │ ├── MainViewImpl.java │ │ └── components │ │ ├── AboutWindow.java │ │ ├── AdRequestWindow.java │ │ └── TestimonialWindow.java │ └── vaadin │ ├── ui │ └── service │ │ └── BroadcastReceiverServiceImpl.kt │ └── web │ └── ui │ ├── NotificationComponent.kt │ └── field │ └── MetaFieldBuilder.java └── mycollab-web ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── mycollab │ │ ├── common │ │ └── ui │ │ │ └── components │ │ │ └── notification │ │ │ ├── RequestUploadAvatarNotification.kt │ │ │ └── SmtpSetupNotification.kt │ │ ├── module │ │ ├── project │ │ │ ├── CurrentProjectVariables.kt │ │ │ ├── ProjectLinkBuilder.kt │ │ │ ├── ProjectLinkParams.kt │ │ │ ├── ProjectPermissionChecker.kt │ │ │ ├── UserNotBelongProjectException.kt │ │ │ ├── event │ │ │ │ ├── BugComponentEvent.kt │ │ │ │ ├── BugEvent.kt │ │ │ │ ├── BugVersionEvent.kt │ │ │ │ ├── CalendarEvent.kt │ │ │ │ ├── ClientEvent.kt │ │ │ │ ├── CustomizeUIEvent.kt │ │ │ │ ├── FavoriteEvent.kt │ │ │ │ ├── FileEvent.kt │ │ │ │ ├── InvoiceEvent.kt │ │ │ │ ├── MessageEvent.kt │ │ │ │ ├── MilestoneEvent.kt │ │ │ │ ├── PageEvent.kt │ │ │ │ ├── ProjectEvent.kt │ │ │ │ ├── ProjectMemberEvent.kt │ │ │ │ ├── ProjectNotificationEvent.kt │ │ │ │ ├── ProjectRoleEvent.kt │ │ │ │ ├── ReportEvent.kt │ │ │ │ ├── RiskEvent.kt │ │ │ │ ├── StandUpEvent.kt │ │ │ │ ├── TaskEvent.kt │ │ │ │ ├── TicketEvent.kt │ │ │ │ └── TimeTrackingEvent.kt │ │ │ ├── fielddef │ │ │ │ ├── ClientTableFieldDef.kt │ │ │ │ ├── MilestoneTableFieldDef.kt │ │ │ │ ├── ProjectMemberTableFieldDef.kt │ │ │ │ ├── ProjectTableFieldDef.kt │ │ │ │ ├── TicketTableFieldDef.kt │ │ │ │ └── TimeTableFieldDef.kt │ │ │ ├── query │ │ │ │ ├── CurrentProjectIdInjector.java │ │ │ │ └── TicketQueryInfo.java │ │ │ ├── ui │ │ │ │ ├── ProjectAssetsManager.kt │ │ │ │ ├── ProjectAssetsUtil.java │ │ │ │ ├── ProjectLocalizationTypeMap.kt │ │ │ │ ├── components │ │ │ │ │ ├── AbstractEditItemComp.java │ │ │ │ │ ├── CommentDisplay.java │ │ │ │ │ ├── CommentRowDisplayHandler.java │ │ │ │ │ ├── ComponentUtils.java │ │ │ │ │ ├── DateInfoComp.java │ │ │ │ │ ├── DurationEditField.java │ │ │ │ │ ├── GenericItemRowDisplayHandler.java │ │ │ │ │ ├── GenericTaskTableFieldDef.kt │ │ │ │ │ ├── IBlockContainer.kt │ │ │ │ │ ├── IGroupComponent.kt │ │ │ │ │ ├── PriorityComboBox.java │ │ │ │ │ ├── ProjectActivityComponent.java │ │ │ │ │ ├── ProjectCommentInput.java │ │ │ │ │ ├── ProjectFollowersComp.java │ │ │ │ │ ├── ProjectListNoItemView.java │ │ │ │ │ ├── ProjectLogoUploadWindow.java │ │ │ │ │ ├── ProjectMemberBlock.java │ │ │ │ │ ├── ProjectMemberLink.java │ │ │ │ │ ├── ProjectPreviewFormControlsGenerator.java │ │ │ │ │ ├── ProjectSubscribersComp.java │ │ │ │ │ ├── TagViewComponent.java │ │ │ │ │ ├── TaskSliderField.java │ │ │ │ │ ├── TicketRowRender.java │ │ │ │ │ ├── TicketTableDisplay.java │ │ │ │ │ ├── TimeLogComp.java │ │ │ │ │ ├── UserProjectComboBox.java │ │ │ │ │ └── UserProjectListSelect.java │ │ │ │ ├── form │ │ │ │ │ ├── ComponentsViewField.kt │ │ │ │ │ ├── ProjectFormAttachmentDisplayField.java │ │ │ │ │ ├── ProjectItemViewField.java │ │ │ │ │ └── VersionsViewField.kt │ │ │ │ └── format │ │ │ │ │ ├── BugFieldFormatter.kt │ │ │ │ │ ├── ComponentFieldFormatter.kt │ │ │ │ │ ├── InvoiceFieldFormatter.kt │ │ │ │ │ ├── MilestoneFieldFormatter.kt │ │ │ │ │ ├── MilestoneHistoryFieldFormat.kt │ │ │ │ │ ├── ProjectFieldFormatter.kt │ │ │ │ │ ├── ProjectMemberHistoryFieldFormat.kt │ │ │ │ │ ├── RiskFieldFormatter.kt │ │ │ │ │ ├── TaskFieldFormatter.kt │ │ │ │ │ ├── TaskHistoryFieldFormat.kt │ │ │ │ │ └── VersionFieldFormatter.kt │ │ │ └── view │ │ │ │ ├── AbstractProjectAddWindow.java │ │ │ │ ├── AbstractProjectPageView.java │ │ │ │ ├── BoardContainer.java │ │ │ │ ├── BoardContainerPresenter.java │ │ │ │ ├── FollowingTicketBeanTableDisplay.java │ │ │ │ ├── FollowingTicketFieldDef.kt │ │ │ │ ├── FollowingTicketSearchPanel.java │ │ │ │ ├── IFavoritePresenter.kt │ │ │ │ ├── IFavoriteView.kt │ │ │ │ ├── IKanbanView.kt │ │ │ │ ├── ITagListPresenter.kt │ │ │ │ ├── ITagListView.kt │ │ │ │ ├── ProjectAddBaseTemplateWindow.java │ │ │ │ ├── ProjectBreadcrumb.java │ │ │ │ ├── ProjectController.kt │ │ │ │ ├── ProjectGeneralInfoStep.java │ │ │ │ ├── ProjectGenericListPresenter.java │ │ │ │ ├── ProjectGenericPresenter.java │ │ │ │ ├── ProjectListCustomizeWindow.java │ │ │ │ ├── ProjectListPresenter.java │ │ │ │ ├── ProjectListView.kt │ │ │ │ ├── ProjectListViewImpl.java │ │ │ │ ├── ProjectModule.java │ │ │ │ ├── ProjectModuleController.kt │ │ │ │ ├── ProjectModulePresenter.java │ │ │ │ ├── ProjectPresenterDataMapper.kt │ │ │ │ ├── ProjectRightBarContainer.java │ │ │ │ ├── ProjectSearchPanel.java │ │ │ │ ├── ProjectStatusComboBox.java │ │ │ │ ├── ProjectUrlResolver.kt │ │ │ │ ├── ProjectView.kt │ │ │ │ ├── ProjectViewImpl.java │ │ │ │ ├── ProjectViewPresenter.java │ │ │ │ ├── ReportUrlResolver.kt │ │ │ │ ├── StandupUrlResolver.kt │ │ │ │ ├── TimeUrlResolver.kt │ │ │ │ ├── TimesheetUrlResolver.kt │ │ │ │ ├── UserProjectDashboardPresenter.java │ │ │ │ ├── UserProjectDashboardView.kt │ │ │ │ ├── UserProjectDashboardViewImpl.java │ │ │ │ ├── WeeklyHoursUrlResolver.kt │ │ │ │ ├── bug │ │ │ │ ├── ApproveInputWindow.java │ │ │ │ ├── AssignBugWindow.java │ │ │ │ ├── BugAddPresenter.java │ │ │ │ ├── BugAddView.java │ │ │ │ ├── BugAddViewImpl.java │ │ │ │ ├── BugDefaultFormLayoutFactory.java │ │ │ │ ├── BugEditForm.java │ │ │ │ ├── BugEditFormFieldFactory.java │ │ │ │ ├── BugPreviewForm.java │ │ │ │ ├── BugReadPresenter.java │ │ │ │ ├── BugReadView.java │ │ │ │ ├── BugReadViewImpl.java │ │ │ │ ├── BugResolutionComboBox.java │ │ │ │ ├── BugSeverityComboBox.java │ │ │ │ ├── BugTimeLogSheet.kt │ │ │ │ ├── BugUrlResolver.kt │ │ │ │ ├── ReOpenWindow.java │ │ │ │ ├── ResolvedInputForm.java │ │ │ │ ├── ResolvedInputWindow.java │ │ │ │ └── ToggleBugSummaryField.java │ │ │ │ ├── client │ │ │ │ ├── ClientUrlResolver.kt │ │ │ │ ├── IClientContainer.kt │ │ │ │ └── IClientPresenter.kt │ │ │ │ ├── file │ │ │ │ ├── AbstractResourceMovingWindow.java │ │ │ │ ├── FileBreadcrumb.java │ │ │ │ ├── FileDashboardPresenter.java │ │ │ │ ├── FileDashboardView.kt │ │ │ │ ├── FileDashboardViewImpl.java │ │ │ │ ├── FileDownloadWindow.java │ │ │ │ ├── ProjectFileUrlResolver.kt │ │ │ │ ├── ResourcesDisplayComponent.java │ │ │ │ ├── StreamDownloadResourceSupportExtDrive.java │ │ │ │ └── StreamDownloadResourceUtil.java │ │ │ │ ├── finance │ │ │ │ ├── IInvoiceContainer.kt │ │ │ │ ├── IInvoiceListPresenter.kt │ │ │ │ ├── ITimeTrackingContainer.kt │ │ │ │ ├── ITimeTrackingPresenter.kt │ │ │ │ └── InvoiceUrlResolver.kt │ │ │ │ ├── message │ │ │ │ ├── MessageListPresenter.java │ │ │ │ ├── MessageListView.java │ │ │ │ ├── MessageListViewImpl.java │ │ │ │ ├── MessageReadPresenter.java │ │ │ │ ├── MessageReadView.java │ │ │ │ ├── MessageReadViewImpl.java │ │ │ │ └── MessageUrlResolver.kt │ │ │ │ ├── milestone │ │ │ │ ├── AllMilestoneTimelineWidget.java │ │ │ │ ├── MilestoneAddPresenter.java │ │ │ │ ├── MilestoneAddView.java │ │ │ │ ├── MilestoneAddViewImpl.java │ │ │ │ ├── MilestoneAddWindow.java │ │ │ │ ├── MilestoneComboBox.java │ │ │ │ ├── MilestoneCustomizeReportOutputWindow.kt │ │ │ │ ├── MilestoneDefaultFormLayoutFactory.java │ │ │ │ ├── MilestoneEditFormFieldFactory.java │ │ │ │ ├── MilestoneListPresenter.java │ │ │ │ ├── MilestoneListSelect.java │ │ │ │ ├── MilestoneListView.kt │ │ │ │ ├── MilestoneListViewImpl.java │ │ │ │ ├── MilestonePreviewForm.java │ │ │ │ ├── MilestoneReadPresenter.java │ │ │ │ ├── MilestoneReadView.java │ │ │ │ ├── MilestoneReadViewImpl.java │ │ │ │ ├── MilestoneRoadmapPresenter.java │ │ │ │ ├── MilestoneRoadmapView.kt │ │ │ │ ├── MilestoneRoadmapViewImpl.java │ │ │ │ ├── MilestoneTimeLogComp.java │ │ │ │ ├── MilestoneTimelineWidget.java │ │ │ │ ├── MilestoneUrlResolver.kt │ │ │ │ └── ToggleMilestoneSummaryField.java │ │ │ │ ├── page │ │ │ │ ├── GroupPageAddWindow.java │ │ │ │ ├── PageAddPresenter.java │ │ │ │ ├── PageAddView.kt │ │ │ │ ├── PageAddViewImpl.java │ │ │ │ ├── PageEditFormFieldFactory.java │ │ │ │ ├── PageFormLayoutFactory.java │ │ │ │ ├── PageListNoItemView.java │ │ │ │ ├── PageListPresenter.java │ │ │ │ ├── PageListView.kt │ │ │ │ ├── PageListViewImpl.java │ │ │ │ ├── PagePreviewForm.java │ │ │ │ ├── PageReadPresenter.java │ │ │ │ ├── PageReadView.java │ │ │ │ ├── PageReadViewImpl.java │ │ │ │ ├── PageReportStreamSource.kt │ │ │ │ ├── PageReportTemplateExecutor.java │ │ │ │ └── PageUrlResolver.kt │ │ │ │ ├── parameters │ │ │ │ ├── BugScreenData.kt │ │ │ │ ├── ClientScreenData.kt │ │ │ │ ├── ComponentScreenData.kt │ │ │ │ ├── FavoriteScreenData.kt │ │ │ │ ├── FileScreenData.kt │ │ │ │ ├── FollowingTicketsScreenData.kt │ │ │ │ ├── InvoiceScreenData.kt │ │ │ │ ├── MessageScreenData.kt │ │ │ │ ├── MilestoneScreenData.kt │ │ │ │ ├── PageScreenData.kt │ │ │ │ ├── ProjectMemberScreenData.kt │ │ │ │ ├── ProjectModuleScreenData.kt │ │ │ │ ├── ProjectRoleScreenData.kt │ │ │ │ ├── ProjectScreenData.kt │ │ │ │ ├── ProjectSettingScreenData.kt │ │ │ │ ├── ReportScreenData.kt │ │ │ │ ├── RiskScreenData.kt │ │ │ │ ├── StandupScreenData.kt │ │ │ │ ├── TaskScreenData.kt │ │ │ │ ├── TicketScreenData.kt │ │ │ │ ├── TimeTrackingScreenData.kt │ │ │ │ └── VersionScreenData.kt │ │ │ │ ├── reports │ │ │ │ ├── IProjectReportContainer.kt │ │ │ │ ├── IProjectReportPresenter.kt │ │ │ │ ├── IReportContainer.kt │ │ │ │ ├── IReportPresenter.kt │ │ │ │ ├── ReportBreadcrumb.java │ │ │ │ ├── StandupAddWindow.java │ │ │ │ ├── StandupListPresenter.java │ │ │ │ ├── StandupListView.java │ │ │ │ ├── StandupListViewImpl.java │ │ │ │ ├── StandupMissingComp.java │ │ │ │ ├── StandupReportFormLayoutFactory.java │ │ │ │ ├── TicketCrossProjectsSearchPanel.java │ │ │ │ ├── UserWorkloadReportPresenter.java │ │ │ │ ├── UserWorkloadReportView.java │ │ │ │ └── UserWorkloadReportViewImpl.java │ │ │ │ ├── risk │ │ │ │ ├── IRiskAddPresenter.kt │ │ │ │ ├── IRiskAddView.kt │ │ │ │ ├── IRiskReadPresenter.kt │ │ │ │ ├── IRiskReadView.kt │ │ │ │ └── RiskUrlResolver.kt │ │ │ │ ├── service │ │ │ │ ├── BugComponentFactory.kt │ │ │ │ ├── MilestoneComponentFactory.kt │ │ │ │ ├── TaskComponentFactory.kt │ │ │ │ └── TicketComponentFactory.kt │ │ │ │ ├── settings │ │ │ │ ├── ComponentAddPresenter.java │ │ │ │ ├── ComponentAddView.java │ │ │ │ ├── ComponentAddViewImpl.java │ │ │ │ ├── ComponentDefaultFormLayoutFactory.java │ │ │ │ ├── ComponentListNoItemView.java │ │ │ │ ├── ComponentListPresenter.java │ │ │ │ ├── ComponentListView.kt │ │ │ │ ├── ComponentListViewImpl.java │ │ │ │ ├── ComponentPreviewForm.java │ │ │ │ ├── ComponentReadPresenter.java │ │ │ │ ├── ComponentReadView.java │ │ │ │ ├── ComponentReadViewImpl.java │ │ │ │ ├── ComponentSearchPanel.java │ │ │ │ ├── ComponentTimeLogComp.java │ │ │ │ ├── ComponentUrlResolver.kt │ │ │ │ ├── CustomEntityFieldsPresenter.java │ │ │ │ ├── CustomEntityFieldsView.java │ │ │ │ ├── ProjectCustomPresenter.java │ │ │ │ ├── ProjectCustomView.kt │ │ │ │ ├── ProjectMemberCustomizeReportOutputWindow.kt │ │ │ │ ├── ProjectMemberEditPresenter.java │ │ │ │ ├── ProjectMemberEditView.java │ │ │ │ ├── ProjectMemberEditViewImpl.java │ │ │ │ ├── ProjectMemberFormLayoutFactory.java │ │ │ │ ├── ProjectMemberInvitePresenter.java │ │ │ │ ├── ProjectMemberInviteView.kt │ │ │ │ ├── ProjectMemberInviteViewImpl.java │ │ │ │ ├── ProjectMemberListPresenter.java │ │ │ │ ├── ProjectMemberListView.java │ │ │ │ ├── ProjectMemberListViewImpl.java │ │ │ │ ├── ProjectMemberReadPresenter.java │ │ │ │ ├── ProjectMemberReadView.java │ │ │ │ ├── ProjectMemberReadViewImpl.java │ │ │ │ ├── ProjectNotificationSettingViewComponent.java │ │ │ │ ├── ProjectRoleAddPresenter.java │ │ │ │ ├── ProjectRoleAddView.java │ │ │ │ ├── ProjectRoleAddViewImpl.java │ │ │ │ ├── ProjectRoleFormLayoutFactory.java │ │ │ │ ├── ProjectRoleListPresenter.java │ │ │ │ ├── ProjectRoleListView.kt │ │ │ │ ├── ProjectRoleListViewImpl.java │ │ │ │ ├── ProjectRoleReadPresenter.java │ │ │ │ ├── ProjectRoleReadView.java │ │ │ │ ├── ProjectRoleReadViewImpl.java │ │ │ │ ├── ProjectRoleSearchPanel.java │ │ │ │ ├── RoleUrlResolver.kt │ │ │ │ ├── SettingUrlResolver.kt │ │ │ │ ├── UserUrlResolver.kt │ │ │ │ ├── VersionAddPresenter.java │ │ │ │ ├── VersionAddView.java │ │ │ │ ├── VersionAddViewImpl.java │ │ │ │ ├── VersionDefaultFormLayoutFactory.java │ │ │ │ ├── VersionListNoItemView.java │ │ │ │ ├── VersionListPresenter.java │ │ │ │ ├── VersionListView.kt │ │ │ │ ├── VersionListViewImpl.java │ │ │ │ ├── VersionPreviewForm.java │ │ │ │ ├── VersionReadPresenter.java │ │ │ │ ├── VersionReadView.java │ │ │ │ ├── VersionReadViewImpl.java │ │ │ │ ├── VersionSearchPanel.java │ │ │ │ ├── VersionTimeLogComp.java │ │ │ │ ├── VersionUrlResolver.kt │ │ │ │ └── component │ │ │ │ │ ├── ComponentAddWindow.java │ │ │ │ │ ├── ComponentEditFormFieldFactory.java │ │ │ │ │ ├── ComponentListSelect.java │ │ │ │ │ ├── ComponentMultiSelectField.java │ │ │ │ │ ├── InviteUserTokenField.java │ │ │ │ │ ├── NotificationSettingWindow.java │ │ │ │ │ ├── ProjectMemberListSelect.java │ │ │ │ │ ├── ProjectMemberSelectionBox.java │ │ │ │ │ ├── ProjectMemberSelectionField.java │ │ │ │ │ ├── ProjectRoleComboBox.java │ │ │ │ │ ├── ProjectUserFormLinkField.java │ │ │ │ │ ├── ProjectUserLink.kt │ │ │ │ │ ├── VersionAddWindow.java │ │ │ │ │ ├── VersionEditFormFieldFactory.java │ │ │ │ │ ├── VersionListSelect.java │ │ │ │ │ └── VersionMultiSelectField.java │ │ │ │ ├── task │ │ │ │ ├── AssignTaskWindow.java │ │ │ │ ├── TaskAddPresenter.java │ │ │ │ ├── TaskAddView.java │ │ │ │ ├── TaskAddViewImpl.java │ │ │ │ ├── TaskDefaultFormLayoutFactory.java │ │ │ │ ├── TaskEditForm.java │ │ │ │ ├── TaskEditFormFieldFactory.java │ │ │ │ ├── TaskPreviewForm.java │ │ │ │ ├── TaskReadPresenter.java │ │ │ │ ├── TaskReadView.java │ │ │ │ ├── TaskReadViewImpl.java │ │ │ │ ├── TaskSavedFilterComboBox.java │ │ │ │ ├── TaskSearchPanel.java │ │ │ │ ├── TaskStatusComboBox.java │ │ │ │ ├── TaskStatusListSelect.java │ │ │ │ ├── TaskTimeLogSheet.java │ │ │ │ ├── TaskUrlResolver.kt │ │ │ │ └── ToggleTaskSummaryField.java │ │ │ │ ├── ticket │ │ │ │ ├── CreatedDateOrderComponent.java │ │ │ │ ├── DefaultTicketGroupComponent.java │ │ │ │ ├── DueDateOrderComponent.java │ │ │ │ ├── EditableTicketRowRenderer.java │ │ │ │ ├── ITicketKanbanPresenter.kt │ │ │ │ ├── MilestoneOrderGroup.java │ │ │ │ ├── MilestoneTicketGroupComponent.java │ │ │ │ ├── ParentTicketComp.java │ │ │ │ ├── ReadableTicketRowRenderer.java │ │ │ │ ├── SelectChildTicketWindow.java │ │ │ │ ├── SimpleListOrderComponent.java │ │ │ │ ├── StartDateOrderComponent.java │ │ │ │ ├── SubTicketsComp.java │ │ │ │ ├── TicketCustomizeReportOutputWindow.kt │ │ │ │ ├── TicketDashboardPresenter.java │ │ │ │ ├── TicketDashboardView.java │ │ │ │ ├── TicketDashboardViewImpl.java │ │ │ │ ├── TicketGroupOrderComponent.java │ │ │ │ ├── TicketKanbanBoardPresenter.java │ │ │ │ ├── TicketKanbanBoardView.java │ │ │ │ ├── TicketKanbanBoardViewImpl.java │ │ │ │ ├── TicketOverdueWidget.java │ │ │ │ ├── TicketRelationComp.java │ │ │ │ ├── TicketRelationSelectField.java │ │ │ │ ├── TicketRelationWindow.java │ │ │ │ ├── TicketRowDisplayHandler.java │ │ │ │ ├── TicketRowRenderer.java │ │ │ │ ├── TicketSavedFilterComboBox.java │ │ │ │ ├── TicketSearchPanel.java │ │ │ │ ├── TicketSelectionWindow.java │ │ │ │ ├── TicketTypeListSelect.java │ │ │ │ ├── TicketUrlResolver.kt │ │ │ │ ├── ToggleTicketSummaryField.java │ │ │ │ ├── ToggleTicketSummaryWithParentRelationshipField.java │ │ │ │ ├── UnresolvedTicketByPriorityWidget.java │ │ │ │ ├── UnresolvedTicketsByAssigneeWidget.java │ │ │ │ └── UserOrderComponent.java │ │ │ │ └── user │ │ │ │ ├── ActivityStreamComponent.java │ │ │ │ ├── ProjectActivityStreamComponent.java │ │ │ │ ├── ProjectActivityStreamPagedList.java │ │ │ │ ├── ProjectAddPresenter.java │ │ │ │ ├── ProjectAddView.java │ │ │ │ ├── ProjectAddViewImpl.java │ │ │ │ ├── ProjectDashboardContainer.java │ │ │ │ ├── ProjectDashboardPresenter.java │ │ │ │ ├── ProjectDefaultFormLayoutFactory.java │ │ │ │ ├── ProjectInfoComponent.java │ │ │ │ ├── ProjectMembersWidget.java │ │ │ │ ├── ProjectOverdueTicketsWidget.java │ │ │ │ ├── ProjectPagedList.java │ │ │ │ ├── ProjectSearchItemPresenter.java │ │ │ │ ├── ProjectSearchItemsView.java │ │ │ │ ├── ProjectSearchItemsViewImpl.java │ │ │ │ ├── ProjectSummaryPresenter.java │ │ │ │ ├── ProjectSummaryView.kt │ │ │ │ ├── ProjectSummaryViewImpl.java │ │ │ │ ├── ProjectUnresolvedTicketsWidget.java │ │ │ │ └── UserUnresolvedTicketWidget.java │ │ └── user │ │ │ ├── accountsettings │ │ │ ├── billing │ │ │ │ └── view │ │ │ │ │ ├── IBillingContainer.kt │ │ │ │ │ └── IBillingPresenter.kt │ │ │ ├── customize │ │ │ │ └── view │ │ │ │ │ ├── AccountInfoChangeWindow.java │ │ │ │ │ ├── GeneralSettingPresenter.java │ │ │ │ │ ├── GeneralSettingView.kt │ │ │ │ │ ├── GeneralSettingViewImpl.java │ │ │ │ │ ├── IThemeCustomizePresenter.kt │ │ │ │ │ ├── IThemeCustomizeView.kt │ │ │ │ │ └── LogoEditWindow.java │ │ │ ├── fielddef │ │ │ │ ├── RoleTableFieldDef.kt │ │ │ │ └── UserTableFieldDef.kt │ │ │ ├── profile │ │ │ │ └── view │ │ │ │ │ ├── AdvancedInfoChangeWindow.java │ │ │ │ │ ├── BasicInfoChangeWindow.java │ │ │ │ │ ├── ContactInfoChangeWindow.java │ │ │ │ │ ├── PasswordChangeWindow.java │ │ │ │ │ ├── ProfileContainer.kt │ │ │ │ │ ├── ProfilePresenter.java │ │ │ │ │ ├── ProfileReadPresenter.java │ │ │ │ │ ├── ProfileReadView.kt │ │ │ │ │ └── ProfileReadViewImpl.java │ │ │ ├── team │ │ │ │ └── view │ │ │ │ │ ├── GetStartedInstructionWindow.java │ │ │ │ │ ├── NewUserAddedWindow.java │ │ │ │ │ ├── RoleAddPresenter.java │ │ │ │ │ ├── RoleAddView.java │ │ │ │ │ ├── RoleAddViewImpl.java │ │ │ │ │ ├── RoleFormLayoutFactory.java │ │ │ │ │ ├── RoleListPresenter.java │ │ │ │ │ ├── RoleListView.kt │ │ │ │ │ ├── RoleListViewImpl.java │ │ │ │ │ ├── RolePermissionContainer.java │ │ │ │ │ ├── RoleReadPresenter.java │ │ │ │ │ ├── RoleReadView.java │ │ │ │ │ ├── RoleReadViewImpl.java │ │ │ │ │ ├── RoleSearchPanel.java │ │ │ │ │ ├── RoleTableDisplay.java │ │ │ │ │ ├── UserAddPresenter.java │ │ │ │ │ ├── UserAddView.java │ │ │ │ │ ├── UserAddViewImpl.java │ │ │ │ │ ├── UserBulkInvitePresenter.java │ │ │ │ │ ├── UserBulkInviteView.java │ │ │ │ │ ├── UserBulkInviteViewImpl.java │ │ │ │ │ ├── UserCustomizeReportOutputWindow.kt │ │ │ │ │ ├── UserListPresenter.java │ │ │ │ │ ├── UserListView.kt │ │ │ │ │ ├── UserListViewImpl.java │ │ │ │ │ ├── UserReadPresenter.java │ │ │ │ │ ├── UserReadView.java │ │ │ │ │ └── UserReadViewImpl.java │ │ │ └── view │ │ │ │ ├── AccountModule.kt │ │ │ │ ├── AccountModuleImpl.java │ │ │ │ ├── AccountModulePresenter.java │ │ │ │ ├── AccountSettingBreadcrumb.java │ │ │ │ ├── AccountSettingUrlResolver.kt │ │ │ │ ├── BillingUrlResolver.kt │ │ │ │ ├── RoleUrlResolver.kt │ │ │ │ ├── SettingUrlResolver.kt │ │ │ │ ├── UserAccountController.kt │ │ │ │ ├── UserUrlResolver.kt │ │ │ │ ├── event │ │ │ │ ├── AccountBillingEvent.kt │ │ │ │ ├── ProfileEvent.kt │ │ │ │ └── SettingEvent.kt │ │ │ │ └── parameters │ │ │ │ ├── AccountModuleScreenData.kt │ │ │ │ ├── BillingScreenData.kt │ │ │ │ ├── RoleScreenData.kt │ │ │ │ ├── SettingExtScreenData.kt │ │ │ │ └── UserScreenData.kt │ │ │ ├── event │ │ │ ├── RoleEvent.kt │ │ │ └── UserEvent.kt │ │ │ ├── ui │ │ │ ├── SettingAssetsManager.kt │ │ │ ├── SettingUIConstants.kt │ │ │ ├── components │ │ │ │ ├── ActiveUserComboBox.java │ │ │ │ ├── ActiveUserListSelect.java │ │ │ │ ├── LanguageSelectionField.java │ │ │ │ ├── PreviewFormControlsGenerator.java │ │ │ │ └── UserBlock.java │ │ │ └── format │ │ │ │ └── UserHistoryFieldFormat.kt │ │ │ └── view │ │ │ └── component │ │ │ ├── AccessPermissionComboBox.java │ │ │ ├── PermissionComboBoxFactory.java │ │ │ ├── RoleComboBox.java │ │ │ └── YesNoPermissionComboBox.java │ │ ├── shell │ │ ├── event │ │ │ └── ShellEvent.kt │ │ └── view │ │ │ ├── AbstractMainView.java │ │ │ ├── ForgotPasswordPresenter.java │ │ │ ├── ForgotPasswordView.kt │ │ │ ├── ForgotPasswordViewImpl.java │ │ │ ├── LoginPresenter.java │ │ │ ├── LoginView.kt │ │ │ ├── LoginViewImpl.java │ │ │ ├── MainView.kt │ │ │ ├── MainViewController.kt │ │ │ ├── MainViewPresenter.java │ │ │ ├── MainWindowContainer.java │ │ │ ├── SetupNewInstanceView.java │ │ │ ├── ShellController.kt │ │ │ ├── ShellUrlResolver.kt │ │ │ └── SystemUIChecker.kt │ │ ├── vaadin │ │ ├── AppBootstrapListener.kt │ │ ├── AppServlet.kt │ │ ├── AppUI.kt │ │ ├── AppUIProvider.kt │ │ ├── ApplicationEventListener.kt │ │ ├── AsyncInvoker.kt │ │ ├── EventBusFactory.kt │ │ ├── TooltipHelper.kt │ │ ├── UserUIContext.java │ │ ├── event │ │ │ ├── ApplicationEvent.kt │ │ │ ├── DefaultEditFormHandler.kt │ │ │ ├── DefaultPreviewFormHandler.kt │ │ │ ├── HasEditFormHandlers.java │ │ │ ├── HasMassItemActionHandler.kt │ │ │ ├── HasPageableHandlers.kt │ │ │ ├── HasPreviewFormHandlers.java │ │ │ ├── HasSearchHandlers.java │ │ │ ├── HasSelectableItemHandlers.java │ │ │ ├── HasSelectionOptionHandlers.kt │ │ │ ├── IEditFormHandler.java │ │ │ ├── MassItemActionHandler.kt │ │ │ ├── PageableHandler.kt │ │ │ ├── PreviewFormHandler.kt │ │ │ ├── SearchHandler.java │ │ │ ├── SelectableItemHandler.java │ │ │ ├── SelectionOptionHandler.kt │ │ │ └── ViewEvent.kt │ │ ├── mvp │ │ │ ├── AbstractController.kt │ │ │ ├── AbstractCssPageView.kt │ │ │ ├── AbstractModule.java │ │ │ ├── AbstractSingleContainerPageView.kt │ │ │ ├── AbstractVerticalPageView.kt │ │ │ ├── CacheableComponent.kt │ │ │ ├── ControllerRegistry.kt │ │ │ ├── IFormAddView.kt │ │ │ ├── IModule.kt │ │ │ ├── IPresenter.kt │ │ │ ├── IPreviewView.kt │ │ │ ├── LazyPageView.kt │ │ │ ├── ListCommand.kt │ │ │ ├── LoadPolicy.kt │ │ │ ├── MassUpdateCommand.kt │ │ │ ├── PageActionChain.kt │ │ │ ├── PageView.kt │ │ │ ├── PresenterNotFoundException.kt │ │ │ ├── PresenterResolver.kt │ │ │ ├── ScreenData.kt │ │ │ ├── UrlResolver.kt │ │ │ ├── ViewComponent.kt │ │ │ ├── ViewManager.kt │ │ │ ├── ViewPermission.kt │ │ │ ├── ViewScope.kt │ │ │ └── service │ │ │ │ └── ComponentScannerService.kt │ │ ├── reporting │ │ │ ├── CustomizeReportOutputWindow.java │ │ │ ├── FormReportLayout.kt │ │ │ ├── FormReportStreamSource.kt │ │ │ ├── FormReportTemplateExecutor.java │ │ │ ├── PrintButton.java │ │ │ └── ReportStreamSource.kt │ │ ├── resources │ │ │ ├── LazyStreamSource.kt │ │ │ ├── OnDemandFileDownloader.kt │ │ │ ├── VaadinResource.kt │ │ │ ├── VaadinResourceFactory.kt │ │ │ └── file │ │ │ │ ├── FileAssetsUtil.kt │ │ │ │ └── VaadinFileResource.kt │ │ ├── spring │ │ │ └── VaadinSpringConfiguration.kt │ │ ├── ui │ │ │ ├── AbstractBeanFieldGroupEditFieldFactory.kt │ │ │ ├── AbstractBeanFieldGroupFieldFactory.java │ │ │ ├── AbstractBeanFieldGroupViewFieldFactory.kt │ │ │ ├── AbstractFormLayoutFactory.java │ │ │ ├── AbstractOptionValComboBox.java │ │ │ ├── AbstractRelatedListHandler.java │ │ │ ├── AccountAssetsResolver.kt │ │ │ ├── AdvancedEditBeanForm.java │ │ │ ├── BeanList.java │ │ │ ├── CurrencyComboBoxField.java │ │ │ ├── DefaultMassItemActionHandlerContainer.kt │ │ │ ├── ELabel.java │ │ │ ├── FieldSelection.kt │ │ │ ├── FormContainer.java │ │ │ ├── FormSection.java │ │ │ ├── GenericBeanForm.java │ │ │ ├── HeaderWithIcon.kt │ │ │ ├── I18nValueListSelect.java │ │ │ ├── IBeanFieldGroupFieldFactory.java │ │ │ ├── IBeanList.java │ │ │ ├── IDynaFormLayout.kt │ │ │ ├── IFormLayoutFactory.kt │ │ │ ├── IRelatedListHandlers.java │ │ │ ├── IgnoreBindingField.java │ │ │ ├── MyCollabSession.kt │ │ │ ├── NotificationUtil.kt │ │ │ ├── PropertyChangedEvent.java │ │ │ ├── PropertyChangedListener.java │ │ │ ├── RelatedListHandler.java │ │ │ ├── ReloadableComponent.kt │ │ │ ├── RemoveInlineComponentMarker.kt │ │ │ ├── SafeHtmlLabel.java │ │ │ ├── ThemeManager.kt │ │ │ ├── UIUtils.kt │ │ │ ├── UserAvatarControlFactory.kt │ │ │ ├── ValueListSelect.java │ │ │ ├── VerticalRemoveInlineComponentMarker.kt │ │ │ ├── WrappedFormLayoutFactory.java │ │ │ ├── field │ │ │ │ ├── BooleanViewField.kt │ │ │ │ ├── ContainerHorizontalViewField.java │ │ │ │ ├── CountryViewField.java │ │ │ │ ├── CurrencyViewField.java │ │ │ │ ├── DateFormatField.java │ │ │ │ ├── DateViewField.java │ │ │ │ ├── DefaultViewField.java │ │ │ │ ├── EmailViewField.java │ │ │ │ ├── I18nFormViewField.java │ │ │ │ ├── RichTextViewField.java │ │ │ │ ├── StyleViewField.java │ │ │ │ └── UrlLinkViewField.java │ │ │ ├── formatter │ │ │ │ ├── CountryHistoryFieldFormat.kt │ │ │ │ ├── CurrencyHistoryFieldFormat.kt │ │ │ │ ├── DateHistoryFieldFormat.kt │ │ │ │ ├── DateTimeHistoryFieldFormat.kt │ │ │ │ ├── DefaultFieldDisplayHandler.kt │ │ │ │ ├── DefaultHistoryFieldFormat.kt │ │ │ │ ├── FieldGroupFormatter.kt │ │ │ │ ├── HistoryFieldFormat.kt │ │ │ │ ├── I18nHistoryFieldFormat.kt │ │ │ │ ├── LocalizationHistoryFieldFormat.kt │ │ │ │ ├── PrettyDateHistoryFieldFormat.kt │ │ │ │ ├── PrettyDateTimeHistoryFieldFormat.kt │ │ │ │ └── TrimHtmlHistoryFieldFormat.kt │ │ │ └── registry │ │ │ │ ├── AuditLogRegistry.kt │ │ │ │ └── ProjectAuditLogRegistry.kt │ │ └── web │ │ │ └── ui │ │ │ ├── AbstractAboutWindow.java │ │ │ ├── AbstractBeanBlockList.java │ │ │ ├── AbstractBeanPagedList.java │ │ │ ├── AbstractLazyPageView.java │ │ │ ├── AbstractNotificationComponent.kt │ │ │ ├── AbstractPresenter.java │ │ │ ├── AbstractPreviewItemComp.java │ │ │ ├── AbstractToggleSummaryField.java │ │ │ ├── AddViewLayout.java │ │ │ ├── AdvancedPreviewBeanForm.java │ │ │ ├── AttachmentDisplayComponent.java │ │ │ ├── AttachmentPanel.java │ │ │ ├── BasicSearchLayout.java │ │ │ ├── BlockWidget.java │ │ │ ├── BuildCriterionComponent.java │ │ │ ├── ButtonGroup.java │ │ │ ├── ButtonI18nComp.java │ │ │ ├── ByteArrayImageResource.java │ │ │ ├── CheckBoxDecor.java │ │ │ ├── CommonUIFactory.java │ │ │ ├── ConfirmDialogExt.java │ │ │ ├── CountryComboBox.java │ │ │ ├── CriteriaBuilderComponent.java │ │ │ ├── DefaultBeanPagedList.java │ │ │ ├── DefaultDynaFormLayout.java │ │ │ ├── DefaultGenericSearchPanel.java │ │ │ ├── DefaultMassEditActionHandler.java │ │ │ ├── DefaultReadViewLayout.java │ │ │ ├── Depot.java │ │ │ ├── DynamicQueryParamLayout.java │ │ │ ├── EmailTokenField.java │ │ │ ├── I18nValueComboBox.java │ │ │ ├── IListView.java │ │ │ ├── ImagePreviewCropWindow.java │ │ │ ├── InitializingView.kt │ │ │ ├── KeyCaptionComboBox.java │ │ │ ├── LabelLink.java │ │ │ ├── LazyPopupView.java │ │ │ ├── ListSelectionPresenter.java │ │ │ ├── MailFormWindow.java │ │ │ ├── MassUpdateLayout.java │ │ │ ├── MassUpdateWindow.java │ │ │ ├── ModuleHelper.java │ │ │ ├── MultiSelectComp.java │ │ │ ├── NoSubDomainExistedWindow.java │ │ │ ├── NotPresentedView.java │ │ │ ├── OptionPopupContent.java │ │ │ ├── ProgressBarIndicator.java │ │ │ ├── QueryParamHandler.java │ │ │ ├── RangeDateField.java │ │ │ ├── ReadViewLayout.java │ │ │ ├── SavedFilterComboBox.java │ │ │ ├── SearchLayout.java │ │ │ ├── SearchTextField.java │ │ │ ├── SelectionOptionButton.java │ │ │ ├── ServiceMenu.java │ │ │ ├── ShortcutExtension.java │ │ │ ├── SortButton.java │ │ │ ├── SplitButton.java │ │ │ ├── StringValueComboBox.java │ │ │ ├── TabSheetDecorator.java │ │ │ ├── TabSheetLazyLoadComponent.java │ │ │ ├── TimeZoneSelectionField.java │ │ │ ├── UpgradeConfirmWindow.java │ │ │ ├── UploadImageField.java │ │ │ ├── UrlLink.java │ │ │ ├── UserLink.java │ │ │ ├── VerticalTabsheet.java │ │ │ ├── WebResourceIds.java │ │ │ ├── WebThemes.java │ │ │ ├── WebUIConstants.java │ │ │ ├── chart │ │ │ ├── ColorConstants.java │ │ │ ├── GenericChartWrapper.java │ │ │ ├── JFreeChartWrapper.java │ │ │ ├── Key.java │ │ │ └── PieChartWrapper.java │ │ │ ├── field │ │ │ ├── AttachmentUploadField.java │ │ │ ├── ContainerViewField.java │ │ │ ├── LinkViewField.java │ │ │ └── UserLinkViewField.java │ │ │ ├── grid │ │ │ ├── GridCellWrapper.java │ │ │ └── GridFormLayoutHelper.java │ │ │ ├── service │ │ │ ├── AbstractBroadcastReceiverService.kt │ │ │ └── BroadcastReceiverService.kt │ │ │ ├── table │ │ │ ├── AbstractPagedBeanTable.java │ │ │ ├── CustomizedTableWindow.java │ │ │ ├── DefaultPagedBeanTable.java │ │ │ └── IPagedTable.java │ │ │ └── utils │ │ │ ├── FormControlsGenerator.java │ │ │ ├── LabelStringGenerator.kt │ │ │ ├── MultiFileUpload.java │ │ │ └── UploadField.java │ │ └── web │ │ ├── CustomLayoutExt.java │ │ ├── DesktopApplication.java │ │ └── optional │ │ └── ThemeCompiler.java └── resources │ ├── VAADIN │ └── themes │ │ └── mycollab_20190414 │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── Vaadin-Icons.eot │ │ ├── Vaadin-Icons.svg │ │ ├── Vaadin-Icons.ttf │ │ └── Vaadin-Icons.woff │ │ ├── icons │ │ ├── 16 │ │ │ └── symbol.png │ │ ├── grad-light-top.png │ │ ├── ico-lock.png │ │ ├── logo.png │ │ ├── no_subdomain_bg.png │ │ ├── no_subdomain_left.png │ │ └── no_subdomain_right.png │ │ └── styles.css │ ├── assets │ ├── css │ │ └── main.css │ ├── favicon.ico │ ├── icons │ │ ├── 12 │ │ │ ├── priority_high.png │ │ │ ├── priority_low.png │ │ │ ├── priority_medium.png │ │ │ ├── priority_none.png │ │ │ ├── priority_urgent.png │ │ │ ├── severity_critical.png │ │ │ ├── severity_major.png │ │ │ ├── severity_minor.png │ │ │ └── severity_trivial.png │ │ ├── 16 │ │ │ ├── cal_month_next.png │ │ │ ├── cal_month_pre.png │ │ │ ├── cal_year_next.png │ │ │ ├── cal_year_pre.png │ │ │ ├── customform │ │ │ │ ├── auto_number.png │ │ │ │ ├── check_box.png │ │ │ │ ├── currency.png │ │ │ │ ├── date.png │ │ │ │ ├── date_time.png │ │ │ │ ├── decimal.png │ │ │ │ ├── integer.png │ │ │ │ ├── long.png │ │ │ │ ├── mail.png │ │ │ │ ├── percent.png │ │ │ │ ├── phone.png │ │ │ │ ├── pick_list.png │ │ │ │ ├── select_pick_list.png │ │ │ │ ├── text.png │ │ │ │ ├── text_area.png │ │ │ │ └── url.png │ │ │ ├── priority_high.png │ │ │ ├── priority_low.png │ │ │ ├── priority_medium.png │ │ │ ├── priority_none.png │ │ │ ├── priority_urgent.png │ │ │ ├── project.png │ │ │ ├── severity_critical.png │ │ │ ├── severity_major.png │ │ │ ├── severity_minor.png │ │ │ └── severity_trivial.png │ │ ├── about.png │ │ ├── default_user_avatar_100.png │ │ ├── default_user_avatar_16.png │ │ ├── default_user_avatar_22.png │ │ ├── default_user_avatar_24.png │ │ ├── default_user_avatar_32.png │ │ ├── default_user_avatar_48.png │ │ ├── default_user_avatar_64.png │ │ ├── email │ │ │ ├── footer-facebook.png │ │ │ ├── footer-google.png │ │ │ └── footer-twitter.png │ │ ├── footer_clouds.png │ │ ├── fs_button05.gif │ │ ├── lazy-load-icon.gif │ │ ├── logo.png │ │ └── sad_face.png │ └── js │ │ ├── common-1.0.0.js │ │ ├── jquery-2.1.4.min.js │ │ ├── jquery-2.1.4.min.map │ │ └── stickytooltip-1.0.2.js │ └── layouts │ ├── addView.html │ ├── advancedSearch.html │ ├── basicSearch.html │ ├── crmContainer.html │ ├── forgotPassword.html │ ├── loginForm.html │ ├── milestoneView.html │ ├── progressBar.html │ ├── projectWelcomeScreen.html │ ├── readView.html │ └── topNavigation.html └── test └── java └── com └── mycollab └── module └── common └── view ├── InvalidSomeView.java ├── SomeView.java └── SomeViewImpl.java /mycollab-app-community/src/main/installer-resources/executor.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-app-community/src/main/installer-resources/executor.jar -------------------------------------------------------------------------------- /mycollab-app-community/src/main/lib/README.txt: -------------------------------------------------------------------------------- 1 | Runtime libraries of MyCollab -------------------------------------------------------------------------------- /mycollab-app-community/src/main/logs/README: -------------------------------------------------------------------------------- 1 | MyCollab output log folder -------------------------------------------------------------------------------- /mycollab-app-community/src/main/resources/VAADIN/widgetsets/com.mycollab.widgetset.MyCollabWidgetSet/cropper/style.css: -------------------------------------------------------------------------------- 1 | .img-loading { 2 | opacity: 0; 3 | } -------------------------------------------------------------------------------- /mycollab-app-community/src/main/resources/VAADIN/widgetsets/com.mycollab.widgetset.MyCollabWidgetSet/vaadin-combobox-multiselect/styles.css: -------------------------------------------------------------------------------- 1 | /* comboboxmultiselect suggestpopup */ 2 | .gwt-MenuItem.align-center { 3 | text-align: center; 4 | } -------------------------------------------------------------------------------- /mycollab-app-community/src/main/scripts/MyCollab7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-app-community/src/main/scripts/MyCollab7.exe -------------------------------------------------------------------------------- /mycollab-app-community/src/main/scripts/MyCollab7amd64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-app-community/src/main/scripts/MyCollab7amd64.exe -------------------------------------------------------------------------------- /mycollab-app-community/src/main/scripts/MyCollab7ia64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-app-community/src/main/scripts/MyCollab7ia64.exe -------------------------------------------------------------------------------- /mycollab-app-community/src/main/scripts/MyCollab7w.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-app-community/src/main/scripts/MyCollab7w.exe -------------------------------------------------------------------------------- /mycollab-core/src/main/java/com/mycollab/core/Tuple2.kt: -------------------------------------------------------------------------------- 1 | package com.mycollab.core 2 | 3 | /** 4 | * @author MyCollab Ltd 5 | * @since 7.0.0 6 | */ 7 | data class Tuple2(var item1: U? = null, var item2: V? = null) -------------------------------------------------------------------------------- /mycollab-jackrabbit/src/main/resources/META-INF/spring.handlers: -------------------------------------------------------------------------------- 1 | http\://www.springsource.org/extensions/se-jcr/schema/jcr=org.springframework.extensions.jcr.config.JcrNamespaceHandler 2 | -------------------------------------------------------------------------------- /mycollab-jackrabbit/src/main/resources/META-INF/spring.schemas: -------------------------------------------------------------------------------- 1 | http\://www.springsource.org/extensions/se-jcr/schema/jcr/se-jcr.xsd=org/springframework/extension/jcr/config/se-jcr.xsd 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-admin_ar-AR.properties: -------------------------------------------------------------------------------- 1 | VIEW_THEME=ساخت قالب 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-admin_pes-IR.properties: -------------------------------------------------------------------------------- 1 | VIEW_SETTING=تنظیمات 2 | VIEW_THEME=ساخت قالب 3 | FORM_SITE_NAME=نام سایت 4 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-billing_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-billing_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-billing_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-billing_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-billing_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-billing_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-billing_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-billing_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-role_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-role_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-role_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-role_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-role_hr-HR.properties: -------------------------------------------------------------------------------- 1 | SECTION_PROJECT_MANAGEMENT_TITLE=Projekat 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-role_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-role_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-role_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-role_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-role_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-role_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-setting_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-setting_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-setting_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-setting_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-setting_fr-FR.properties: -------------------------------------------------------------------------------- 1 | BUTTON_CHANGE_LOGO=Changer le logo 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-setting_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-setting_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-setting_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-setting_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-setting_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-setting_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-setting_ru-RU.properties: -------------------------------------------------------------------------------- 1 | BUTTON_CHANGE_LOGO=Изменить логотип 2 | BUTTON_RESET_DEFAULT=Сброс 3 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-setting_tr-TR.properties: -------------------------------------------------------------------------------- 1 | BUTTON_CHANGE_LOGO=Logoyu değiştir 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-setting_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-setting_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-user_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-user_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-user_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-user_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/account-user_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/account-user_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-industry_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-industry_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-industry_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-industry_de.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-industry_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-industry_es.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-industry_fi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-industry_fi.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-industry_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-industry_fr.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-industry_id.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-industry_id.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-industry_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-industry_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-industry_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-industry_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-industry_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-industry_ru.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-industry_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-industry_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-industry_vi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-industry_vi.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-industry_zh-CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-industry_zh-CN.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-type_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-type_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-type_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-type_de.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-type_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-type_es.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-type_fi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-type_fi.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-type_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-type_fr.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-type_id.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-type_id.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-type_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-type_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-type_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-type_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-type_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-type_ru.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-type_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-type_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-type_vi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-type_vi.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/client-type_zh-CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/client-type_zh-CN.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-client_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-client_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-client_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-client_de.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-client_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-client_es.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-client_fi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-client_fi.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-client_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-client_fr.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-client_id.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-client_id.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-client_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-client_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-client_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-client_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-client_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-client_ru.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-client_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-client_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-client_vi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-client_vi.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-client_zh-CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-client_zh-CN.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-day_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-day_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-day_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-day_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-day_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-day_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-day_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-day_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-day_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-day_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-file_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-file_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-file_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-file_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-file_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-file_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-file_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-file_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-file_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-file_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-follower_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-follower_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-follower_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-follower_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-follower_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-follower_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-follower_fr-FR.properties: -------------------------------------------------------------------------------- 1 | FORM_PROJECT_NAME=Projet 2 | FORM_SUMMARY=Résumé 3 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-follower_hr-HR.properties: -------------------------------------------------------------------------------- 1 | OPT_MY_FOLLOWING_TICKETS=Moji zadaci ({0}) 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-follower_id-ID.properties: -------------------------------------------------------------------------------- 1 | OPT_FOLLOWER_CREATE_DATE=Tanggal Dibuat 2 | FORM_PROJECT_NAME=Projek 3 | FORM_SUMMARY=Ringkasan 4 | OPT_SUB_INFO_WATCHERS=Pengamat 5 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-follower_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-follower_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-follower_pl-PL.properties: -------------------------------------------------------------------------------- 1 | OPT_FOLLOWER_CREATE_DATE=Data utworzenia 2 | FORM_PROJECT_NAME=Projekt 3 | FORM_SUMMARY=Podsumowanie 4 | OPT_SUB_INFO_WATCHERS=Obserwatorzy 5 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-follower_ru-RU.properties: -------------------------------------------------------------------------------- 1 | OPT_FOLLOWER_CREATE_DATE=Дата создания 2 | FORM_PROJECT_NAME=Проект 3 | FORM_SUMMARY=Описание 4 | OPT_SUB_INFO_WATCHERS=Наблюдатели 5 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-follower_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-follower_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-follower_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-follower_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic-status_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-generic-status_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic-status_bg-BG.properties: -------------------------------------------------------------------------------- 1 | Open=отвори 2 | Overdue= Просрочен 3 | Closed=Затворени 4 | Archived=Архивирани 5 | Pending=В очакване на 6 | InProgress=В прогрес 7 | Unresolved=Нерешен 8 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic-status_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-generic-status_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic-status_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-generic-status_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic-status_de-DE.properties: -------------------------------------------------------------------------------- 1 | Open=Öffnen 2 | Overdue=Überfällig 3 | Closed=Schliessen 4 | Archived=Archivierte 5 | Pending=Anstehend 6 | InProgress=In Bearbeitung 7 | Unresolved=Nicht erledigt 8 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic-status_es-ES.properties: -------------------------------------------------------------------------------- 1 | Open=Abrir 2 | Overdue=Atrasado 3 | Closed=Cerrado 4 | Archived=Archivado 5 | Pending=Pendiente 6 | InProgress=En Progreso 7 | Unresolved=Sin Resolver 8 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic-status_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-generic-status_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic-status_fr-FR.properties: -------------------------------------------------------------------------------- 1 | InProgress=En Progrès 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic-status_hr-HR.properties: -------------------------------------------------------------------------------- 1 | Open=Aktivni 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic-status_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-generic-status_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic-status_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-generic-status_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic-status_pt-BR.properties: -------------------------------------------------------------------------------- 1 | Open=Abrir 2 | Closed=Fechado 3 | Archived=Arquivado 4 | Pending=Pendente 5 | InProgress=Em Processo 6 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic-status_ru-RU.properties: -------------------------------------------------------------------------------- 1 | Open=Открыть 2 | Overdue=Просрочено 3 | Closed=Закрытые 4 | Archived=Заархивирован 5 | Pending=В ожидании 6 | InProgress=В процессе 7 | Unresolved=Нерешенные 8 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic-status_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-generic-status_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic-status_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-generic-status_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic-status_zh-CN.properties: -------------------------------------------------------------------------------- 1 | Open=进行中 2 | Overdue=过期 3 | Closed=关闭 4 | Archived=存档 5 | Pending=等待 6 | InProgress=进行中 7 | Unresolved=尚未解决 8 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-generic_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-generic_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-generic_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-generic_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic_hr-HR.properties: -------------------------------------------------------------------------------- 1 | MODULE_PROJECT=Projekat 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-generic_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-generic_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-generic_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-generic_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-generic_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-license_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-license_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-license_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-license_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-license_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-license_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-license_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-license_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-license_de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-license_de-DE.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-license_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-license_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-license_fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-license_fr-FR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-license_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-license_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-license_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-license_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-license_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-license_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-license_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-license_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-license_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-license_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-license_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-license_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-license_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-license_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-mail_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-mail_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-mail_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-mail_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-mail_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-mail_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-mail_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-mail_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-mail_de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-mail_de-DE.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-mail_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-mail_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-mail_fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-mail_fr-FR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-mail_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-mail_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-mail_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-mail_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-mail_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-mail_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-mail_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-mail_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-mail_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-mail_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-mail_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-mail_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-mail_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-mail_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-query_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-query_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-query_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-query_de.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-query_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-query_es.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-query_fi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-query_fi.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-query_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-query_fr.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-query_id.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-query_id.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-query_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-query_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-query_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-query_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-query_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-query_ru.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-query_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-query_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-query_vi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-query_vi.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-query_zh-CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-query_zh-CN.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-security_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-security_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-security_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-security_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-security_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-security_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-security_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-security_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-security_fr-FR.properties: -------------------------------------------------------------------------------- 1 | READONLY=Lecture seule 2 | YES=Oui 3 | NO=Non 4 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-security_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-security_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-security_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-security_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-security_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-security_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-security_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-security_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-security_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-security_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-security_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-security_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-shell_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-shell_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-shell_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-shell_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-shell_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-shell_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-shell_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-shell_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-shell_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-shell_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-shell_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-shell_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-shell_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-shell_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-shell_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-shell_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-shell_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-shell_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-shell_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-shell_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-tag_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-tag_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-tag_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-tag_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-tag_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-tag_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-tag_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-tag_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-tag_de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-tag_de-DE.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-tag_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-tag_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-tag_fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-tag_fr-FR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-tag_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-tag_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-tag_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-tag_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-tag_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-tag_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-tag_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-tag_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-tag_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-tag_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-tag_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-tag_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-tag_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-tag_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-tag_zh-CN.properties: -------------------------------------------------------------------------------- 1 | ACTION_ADD=添加标签 2 | ACTION_DELETE=删除标签 3 | OPT_TAG_CLOUD=标签云 4 | OPT_NO_TAG_EXISTED=没有标签存在 5 | OPT_ENTER_TAG_NAME=输入标签名 6 | ERROR_TAG_NAME_HAS_MORE_2_CHARACTERS=标签值必须超过 2 个字符 7 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-theme_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-theme_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-theme_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-theme_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-theme_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-theme_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-theme_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-theme_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-theme_de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-theme_de-DE.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-theme_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-theme_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-theme_fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-theme_fr-FR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-theme_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-theme_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-theme_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-theme_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-theme_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-theme_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-theme_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-theme_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-theme_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-theme_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-theme_ru-RU.properties: -------------------------------------------------------------------------------- 1 | OPT_BUTTONS=Кнопки 2 | OPT_BUTTON=Кнопка 3 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-theme_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-theme_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-theme_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-theme_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-webexception_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-webexception_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-webexception_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-webexception_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-webexception_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-webexception_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-webexception_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-webexception_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-webexception_fr-FR.properties: -------------------------------------------------------------------------------- 1 | SELECT_AT_LEAST_ONE_CRITERIA=Vous devez sélectionner au moins un critère de recherche 2 | QUERY_SEARCH_IS_INVALID=Requête non valide 3 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-webexception_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-webexception_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-webexception_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-webexception_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-webexception_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-webexception_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-webexception_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-webexception_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-webexception_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-webexception_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-webexception_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-webexception_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-wiki_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_bg-BG.properties: -------------------------------------------------------------------------------- 1 | status_public=Публичен 2 | status_private=Частен 3 | status_archieved=Архивирани 4 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-wiki_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-wiki_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_de-DE.properties: -------------------------------------------------------------------------------- 1 | status_public=Öffentlich 2 | status_private=Privat 3 | status_archieved=Archivierte 4 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_en-US.properties: -------------------------------------------------------------------------------- 1 | status_public=Public 2 | status_private=Private 3 | status_archieved=Archived -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_es-ES.properties: -------------------------------------------------------------------------------- 1 | status_public=Público 2 | status_private=Privado 3 | status_archieved=Archivado 4 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-wiki_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_fr-FR.properties: -------------------------------------------------------------------------------- 1 | status_public=Public 2 | status_private=Privé 3 | status_archieved=Archivé 4 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-wiki_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-wiki_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-wiki_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-wiki_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_pt-BR.properties: -------------------------------------------------------------------------------- 1 | status_public=Público 2 | status_private=Privado 3 | status_archieved=Arquivado 4 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_ru-RU.properties: -------------------------------------------------------------------------------- 1 | status_public=Общедоступный 2 | status_private=Личный 3 | status_archieved=В архиве 4 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-wiki_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/common-wiki_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/common-wiki_zh-CN.properties: -------------------------------------------------------------------------------- 1 | status_public=公开 2 | status_private=私有 3 | status_archieved=存档 4 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-breadcrumb_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-breadcrumb_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-breadcrumb_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-breadcrumb_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-breadcrumb_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-breadcrumb_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-breadcrumb_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-breadcrumb_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-breadcrumb_fr-FR.properties: -------------------------------------------------------------------------------- 1 | FRA_FILES=Fichiers 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-breadcrumb_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-breadcrumb_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-breadcrumb_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-breadcrumb_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-breadcrumb_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-breadcrumb_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-breadcrumb_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-breadcrumb_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-breadcrumb_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-breadcrumb_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-breadcrumb_ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-breadcrumb_ru-RU.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-breadcrumb_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-breadcrumb_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-breadcrumb_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-breadcrumb_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-priority_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug-priority_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-priority_de-DE.properties: -------------------------------------------------------------------------------- 1 | Blocker=Blocker 2 | Critical=Kritisch 3 | Major=Wichtig 4 | Minor=Gering 5 | Trivial=Unbedeutend 6 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-resolution_de-DE.properties: -------------------------------------------------------------------------------- 1 | Fixed=Repariert 2 | Won_Fix=Nicht lösbar 3 | Duplicate=Duplikat 4 | CannotReproduce=Nicht reproduzierbar 5 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-resolution_en-US.properties: -------------------------------------------------------------------------------- 1 | Fixed=Fixed 2 | Won_Fix=Won't Fix 3 | Duplicate=Duplicate 4 | Invalid=Invalid 5 | CannotReproduce=Cannot reproduce 6 | InComplete=In-Complete 7 | None=None -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-resolution_es-ES.properties: -------------------------------------------------------------------------------- 1 | Fixed=Arreglado 2 | Won_Fix=No se Arreglará 3 | Duplicate=Duplicado 4 | Invalid=Inválido 5 | CannotReproduce=No se puede reproducir 6 | None=Ninguno 7 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-resolution_zh-CN.properties: -------------------------------------------------------------------------------- 1 | Fixed=固定 2 | Won_Fix=无法解决 3 | Duplicate=复制 4 | Invalid=无效 5 | CannotReproduce=不能复制 6 | None=没有 7 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug-severity_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug-severity_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug-severity_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug-severity_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_de-DE.properties: -------------------------------------------------------------------------------- 1 | Critical=Kritisch 2 | Major=Wichtig 3 | Minor=Gering 4 | Trivial=Unbedeutend 5 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_en-US.properties: -------------------------------------------------------------------------------- 1 | Critical=Critical 2 | Major=Major 3 | Minor=Minor 4 | Trivial=Trivial -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_es-ES.properties: -------------------------------------------------------------------------------- 1 | Critical=Crítico 2 | Major=Mayor 3 | Minor=Menor 4 | Trivial=Trivial 5 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug-severity_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_fr-FR.properties: -------------------------------------------------------------------------------- 1 | Critical=Critique 2 | Major=Majeur 3 | Minor=Mineur 4 | Trivial=Trivial 5 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug-severity_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug-severity_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug-severity_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug-severity_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug-severity_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug-severity_ru-RU.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug-severity_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug-severity_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug-severity_zh-CN.properties: -------------------------------------------------------------------------------- 1 | Critical=关键 2 | Major=重大 3 | Minor=小 4 | Trivial=微小 5 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug_fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug_fr-FR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug_ru-RU.properties: -------------------------------------------------------------------------------- 1 | OPT_REMOVE_RELATIONSHIP=Удалить отношения 2 | VAL_BUGS_CREATED_BY_ME=Созданные мной баг-репорты 3 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-bug_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-bug_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-client_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-client_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-client_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-client_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-client_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-client_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-client_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-client_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-client_de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-client_de-DE.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-client_en-US.properties: -------------------------------------------------------------------------------- 1 | NEW=New Client 2 | LIST=Clients 3 | DETAIL=Client Details 4 | SINGLE=Client 5 | EDIT=Edit Client 6 | OPT_NUM_PROJECTS=Projects ({0}) 7 | OPT_REMOVE_CLIENT=Remove client "{0}" -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-client_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-client_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-client_fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-client_fr-FR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-client_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-client_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-client_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-client_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-client_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-client_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-client_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-client_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-client_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-client_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-client_ru-RU.properties: -------------------------------------------------------------------------------- 1 | OPT_NUM_PROJECTS=Проекты ({0}) 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-client_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-client_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-client_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-client_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-client_zh-CN.properties: -------------------------------------------------------------------------------- 1 | NEW=新客户 2 | LIST=客户列表 3 | DETAIL=客户信息 4 | SINGLE=客户 5 | EDIT=编辑客户 6 | OPT_NUM_PROJECTS=客户项目 ({0}) 7 | OPT_REMOVE_CLIENT=移除客户 "{0}" 8 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-common_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-common_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-common_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-common_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-common_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-common_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-common_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-common_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-common_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-common_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-common_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-common_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-common_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-common_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-common_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-common_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-common_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-common_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-common_ru-RU.properties: -------------------------------------------------------------------------------- 1 | ACTION_EDIT_NOTIFICATION=Редактировать уведомление 2 | ACTION_ASSIGN_TO_ME=Назначить мне 3 | OPT_LIST=Список 4 | OPT_KANBAN=Канбан 5 | OPT_BOARD=Доска 6 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-common_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-common_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-common_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-common_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-component_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-component_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-component_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-component_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-component_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-component_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-component_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-component_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-component_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-component_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-component_fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-component_fr-FR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-component_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-component_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-component_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-component_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-component_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-component_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-component_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-component_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-component_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-component_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-component_ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-component_ru-RU.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-component_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-component_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-component_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-component_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice-status_en-US.properties: -------------------------------------------------------------------------------- 1 | Paid=Paid 2 | Sent=Sent 3 | Scheduled=Scheduled 4 | All=All -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice-status_es-ES.properties: -------------------------------------------------------------------------------- 1 | Paid=Pago 2 | Sent=Enviado 3 | Scheduled=Programado 4 | All=Todo 5 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice-status_ru-RU.properties: -------------------------------------------------------------------------------- 1 | Paid=Оплачено 2 | Sent=Отправлено 3 | Scheduled=Запланировано 4 | All=Все 5 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice-status_zh-CN.properties: -------------------------------------------------------------------------------- 1 | Paid=已付 2 | Sent=发送 3 | Scheduled=计划 4 | All=全部 5 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-invoice_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice_bg-BG.properties: -------------------------------------------------------------------------------- 1 | FORM_CLIENT_FIELD=Клиент 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-invoice_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-invoice_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice_de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-invoice_de-DE.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-invoice_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice_fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-invoice_fr-FR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-invoice_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-invoice_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-invoice_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-invoice_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-invoice_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice_ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-invoice_ru-RU.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-invoice_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-invoice_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-invoice_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-message_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-message_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-message_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-message_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-message_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-message_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-message_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-message_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-message_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-message_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-message_fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-message_fr-FR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-message_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-message_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-message_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-message_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-message_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-message_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-message_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-message_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-message_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-message_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-message_ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-message_ru-RU.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-message_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-message_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-message_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-message_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone-status_de-DE.properties: -------------------------------------------------------------------------------- 1 | Future=Zukünftig 2 | Closed=Geschlossen 3 | InProgress=In Bearbeitung 4 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone-status_en-US.properties: -------------------------------------------------------------------------------- 1 | Future=Future 2 | Closed=Closed 3 | InProgress=In Progress -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone-status_es-ES.properties: -------------------------------------------------------------------------------- 1 | Future=Futuro 2 | Closed=Cerrado 3 | InProgress=En Progreso 4 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone-status_fr-FR.properties: -------------------------------------------------------------------------------- 1 | InProgress=En Progrès 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone-status_zh-CN.properties: -------------------------------------------------------------------------------- 1 | Future=规划中 2 | Closed=已完成 3 | InProgress=进行中 4 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-milestone_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-milestone_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-milestone_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-milestone_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-milestone_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone_fr-FR.properties: -------------------------------------------------------------------------------- 1 | WIDGET_INPROGRESS_PHASE_TITLE=En Progrès 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-milestone_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-milestone_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-milestone_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-milestone_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-milestone_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone_ru-RU.properties: -------------------------------------------------------------------------------- 1 | OPT_HIDE_CLOSED_MILESTONES=Скрыть закрытые этапы 2 | OPT_SHOW_CLOSED_MILESTONES=Показать закрытые этапы 3 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-milestone_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-milestone_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-milestone_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-page_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-page_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-page_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-page_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-page_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-page_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-page_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-page_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-page_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-page_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-page_fr-FR.properties: -------------------------------------------------------------------------------- 1 | OPT_SORT_BY_DATE=Date 2 | OPT_SORT_BY_NAME=Nom 3 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-page_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-page_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-page_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-page_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-page_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-page_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-page_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-page_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-page_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-page_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-page_ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-page_ru-RU.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-page_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-page_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-page_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-page_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-people_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-people_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-people_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-people_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-people_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-people_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-people_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-people_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-people_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-people_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-people_fr-FR.properties: -------------------------------------------------------------------------------- 1 | LIST=Membres 2 | FORM_USER=Utilisateur 3 | FORM_ROLE=Rôle 4 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-people_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-people_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-people_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-people_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-people_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-people_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-people_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-people_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-people_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-people_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-people_ru-RU.properties: -------------------------------------------------------------------------------- 1 | BUTTON_NEW_INVITEES=Пригласить участника(ов) 2 | OPT_INVITATION_SENT_SUCCESSFULLY=Приглашение успешно выслано 3 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-people_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-people_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-people_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-people_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-reporting_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-reporting_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-reporting_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-reporting_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-reporting_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-reporting_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-reporting_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-reporting_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-reporting_de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-reporting_de-DE.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-reporting_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-reporting_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-reporting_fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-reporting_fr-FR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-reporting_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-reporting_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-reporting_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-reporting_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-reporting_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-reporting_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-reporting_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-reporting_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-reporting_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-reporting_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-reporting_ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-reporting_ru-RU.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-reporting_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-reporting_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-reporting_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-reporting_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk-consequence_en-US.properties: -------------------------------------------------------------------------------- 1 | Catastrophic=Catastrophic 2 | Critical=Critical 3 | Marginal=Marginal 4 | Negligible=Negligible -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk-consequence_es-ES.properties: -------------------------------------------------------------------------------- 1 | Catastrophic=Catastrófico 2 | Critical=Crítico 3 | Marginal=Marginal 4 | Negligible=Despreciable 5 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk-consequence_zh-CN.properties: -------------------------------------------------------------------------------- 1 | Catastrophic=空难的 2 | Critical=严重的 3 | Marginal=微小的 4 | Negligible=微小的 5 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk-probability_en-US.properties: -------------------------------------------------------------------------------- 1 | Certain=Certain 2 | Likely=Likely 3 | Possible=Possible 4 | Unlikely=Unlikely 5 | Rare=Rare -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk-probability_es-ES.properties: -------------------------------------------------------------------------------- 1 | Certain=Cierto 2 | Likely=Probable 3 | Possible=Posible 4 | Unlikely=Improbable 5 | Rare=Raro 6 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk-probability_zh-CN.properties: -------------------------------------------------------------------------------- 1 | Certain=一定 2 | Likely=有可能 3 | Possible=可能的 4 | Unlikely=不大可能的 5 | Rare=很少 6 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-risk_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-risk_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-risk_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-risk_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-risk_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk_fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-risk_fr-FR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-risk_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-risk_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-risk_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-risk_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-risk_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk_ru-RU.properties: -------------------------------------------------------------------------------- 1 | EDIT=Редактировать риск 2 | SECTION_RISK_INFORMATION=Данные о риске 3 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-risk_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-risk_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-risk_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-role-permission_fr-FR.properties: -------------------------------------------------------------------------------- 1 | LIST=Permissions 2 | Task=Tâche 3 | Version=Version 4 | Page=Page 5 | User=Utilisateur 6 | Role=Rôle 7 | Project=Projet 8 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-role_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-role_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-role_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-role_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-role_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-role_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-role_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-role_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-role_de-DE.properties: -------------------------------------------------------------------------------- 1 | SECTION_PERMISSIONS=Berechtigungen 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-role_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-role_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-role_fr-FR.properties: -------------------------------------------------------------------------------- 1 | LIST=Rôles 2 | DETAIL=Détails du rôle 3 | NEW=Nouveau rôle 4 | SINGLE=Rôle 5 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-role_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-role_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-role_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-role_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-role_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-role_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-role_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-role_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-role_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-role_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-role_ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-role_ru-RU.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-role_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-role_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-role_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-role_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-role_zh-CN.properties: -------------------------------------------------------------------------------- 1 | LIST=角色 2 | DETAIL=角色详情 3 | NEW=新角色 4 | SINGLE=角色 5 | SECTION_PERMISSIONS=权限 6 | ERROR_ONLY_OWNER_ASSIGN_ROLE_OWNER=仅限项目所有者才有权将“项目所有者”角色分配给用户 7 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-setting_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-setting_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-setting_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-setting_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-setting_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-setting_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-setting_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-setting_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-setting_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-setting_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-setting_fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-setting_fr-FR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-setting_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-setting_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-setting_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-setting_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-setting_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-setting_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-setting_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-setting_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-setting_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-setting_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-setting_ru-RU.properties: -------------------------------------------------------------------------------- 1 | OPT_APPLY_TO_ALL_PROJECTS=Применить ко всем проектам 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-setting_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-setting_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-setting_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-setting_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-standup_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-standup_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-standup_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-standup_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-standup_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-standup_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-standup_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-standup_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-standup_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-standup_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-standup_fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-standup_fr-FR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-standup_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-standup_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-standup_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-standup_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-standup_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-standup_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-standup_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-standup_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-standup_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-standup_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-standup_ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-standup_ru-RU.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-standup_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-standup_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-standup_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-standup_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task-priority_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-task-priority_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task-priority_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-task-priority_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task-priority_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-task-priority_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task-priority_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-task-priority_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task-priority_de-DE.properties: -------------------------------------------------------------------------------- 1 | Urgent=Dringend 2 | High=Hoch 3 | Medium=Mittel 4 | Low=Niedrig 5 | None=Nichts 6 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task-priority_en-US.properties: -------------------------------------------------------------------------------- 1 | Urgent=Urgent 2 | High=High 3 | Medium=Medium 4 | Low=Low 5 | None=None -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task-priority_es-ES.properties: -------------------------------------------------------------------------------- 1 | Urgent=Urgente 2 | High=Alta 3 | Medium=Media 4 | Low=Baja 5 | None=Ninguna 6 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task-priority_fr-FR.properties: -------------------------------------------------------------------------------- 1 | Urgent=Urgent 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task-priority_hr-HR.properties: -------------------------------------------------------------------------------- 1 | Medium=Srednje 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task-priority_zh-CN.properties: -------------------------------------------------------------------------------- 1 | Urgent=紧急 2 | High=高 3 | Medium=中 4 | Low=低 5 | None=无 6 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-task_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-task_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-task_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-task_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-task_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task_fr-FR.properties: -------------------------------------------------------------------------------- 1 | NEW=Nouvelle tâche 2 | DETAIL=Détails de la tâche 3 | LIST=Tâches 4 | SINGLE=Tâche 5 | FORM_SUB_TASKS=Sous-tâches 6 | VAL_MY_TASKS=Mes tâches 7 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task_hr-HR.properties: -------------------------------------------------------------------------------- 1 | VAL_ALL_OPEN_TASKS=Aktivni zadaci 2 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-task_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-task_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-task_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-task_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-task_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-task_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-task_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-ticket-relation_en-US.properties: -------------------------------------------------------------------------------- 1 | Duplicated=Duplicated 2 | Block=Block 3 | DependsOn=Depends On 4 | Duplicate=Duplicate 5 | Relation=Relation -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-ticket_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-ticket_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-ticket_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-ticket_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-ticket_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-ticket_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-ticket_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-ticket_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-ticket_da-US.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-ticket_da-US.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-ticket_de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-ticket_de-DE.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-ticket_de-US.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-ticket_de-US.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-ticket_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-ticket_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-ticket_fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-ticket_fr-FR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-ticket_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-ticket_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-ticket_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-ticket_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-ticket_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-ticket_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-ticket_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-ticket_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-ticket_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-ticket_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-ticket_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-ticket_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-timetracking_ru-RU.properties: -------------------------------------------------------------------------------- 1 | ACTION_LINK_TICKET=Привязать тикет 2 | ACTION_UNLINK_TICKET=Отвязать тикеты 3 | -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-version_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-version_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-version_bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-version_bg-BG.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-version_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-version_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-version_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-version_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-version_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-version_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-version_fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-version_fr-FR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-version_hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-version_hr-HR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-version_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-version_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-version_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-version_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-version_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-version_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-version_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-version_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-version_ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-version_ru-RU.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-version_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-version_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project-version_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project-version_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project_ar-AR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project_ar-AR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project_cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project_cs-CZ.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project_da-DA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project_da-DA.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project_fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project_fi-FI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project_id-ID.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project_id-ID.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project_pes-IR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project_pes-IR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project_pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project_pl-PL.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project_pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project_pt-BR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project_tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project_tr-TR.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/project_vi-VI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-localization/src/main/resources/project_vi-VI.properties -------------------------------------------------------------------------------- /mycollab-localization/src/main/resources/validation_en.properties: -------------------------------------------------------------------------------- 1 | javax.validation.constraints.NotEmpty.message = must not be empty -------------------------------------------------------------------------------- /mycollab-migration/src/main/resources/db/migration/mysql/V20190212_1__Add_Files_View.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `m_prj_customize_view` 2 | CHANGE COLUMN `displayStandup` `displayFile` BIT(1) NOT NULL ; 3 | -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/dynamicreports-defaults.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-reporting/src/main/resources/images/1.png -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-reporting/src/main/resources/images/2.png -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-reporting/src/main/resources/images/3.png -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-reporting/src/main/resources/images/4.png -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-reporting/src/main/resources/images/5.png -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-reporting/src/main/resources/images/logo.png -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/images/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-reporting/src/main/resources/images/no.png -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/images/priority_high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-reporting/src/main/resources/images/priority_high.png -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/images/priority_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-reporting/src/main/resources/images/priority_low.png -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/images/priority_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-reporting/src/main/resources/images/priority_medium.png -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/images/priority_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-reporting/src/main/resources/images/priority_none.png -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/images/priority_urgent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-reporting/src/main/resources/images/priority_urgent.png -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/images/severity_critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-reporting/src/main/resources/images/severity_critical.png -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/images/severity_major.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-reporting/src/main/resources/images/severity_major.png -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/images/severity_minor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-reporting/src/main/resources/images/severity_minor.png -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/images/severity_trivial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-reporting/src/main/resources/images/severity_trivial.png -------------------------------------------------------------------------------- /mycollab-reporting/src/main/resources/images/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-reporting/src/main/resources/images/yes.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/VAADIN/themes/mycollab_20190414/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/VAADIN/themes/mycollab_20190414/favicon.ico -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/favicon.ico -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/12/priority_high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/12/priority_high.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/12/priority_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/12/priority_low.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/12/priority_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/12/priority_medium.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/12/priority_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/12/priority_none.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/12/priority_urgent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/12/priority_urgent.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/12/severity_critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/12/severity_critical.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/12/severity_major.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/12/severity_major.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/12/severity_minor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/12/severity_minor.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/12/severity_trivial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/12/severity_trivial.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/cal_month_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/cal_month_next.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/cal_month_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/cal_month_pre.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/cal_year_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/cal_year_next.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/cal_year_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/cal_year_pre.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/customform/auto_number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/customform/auto_number.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/customform/check_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/customform/check_box.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/customform/currency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/customform/currency.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/customform/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/customform/date.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/customform/date_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/customform/date_time.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/customform/decimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/customform/decimal.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/customform/integer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/customform/integer.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/customform/long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/customform/long.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/customform/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/customform/mail.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/customform/percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/customform/percent.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/customform/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/customform/phone.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/customform/pick_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/customform/pick_list.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/customform/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/customform/text.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/customform/text_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/customform/text_area.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/customform/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/customform/url.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/priority_high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/priority_high.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/priority_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/priority_low.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/priority_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/priority_medium.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/priority_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/priority_none.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/priority_urgent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/priority_urgent.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/project.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/severity_critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/severity_critical.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/severity_major.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/severity_major.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/severity_minor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/severity_minor.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/16/severity_trivial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/16/severity_trivial.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/about.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/default_user_avatar_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/default_user_avatar_100.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/default_user_avatar_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/default_user_avatar_16.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/default_user_avatar_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/default_user_avatar_22.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/default_user_avatar_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/default_user_avatar_24.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/default_user_avatar_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/default_user_avatar_32.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/default_user_avatar_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/default_user_avatar_48.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/default_user_avatar_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/default_user_avatar_64.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/email/footer-facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/email/footer-facebook.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/email/footer-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/email/footer-google.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/email/footer-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/email/footer-twitter.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/footer_clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/footer_clouds.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/fs_button05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/fs_button05.gif -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/lazy-load-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/lazy-load-icon.gif -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/logo.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/assets/icons/sad_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyCollab/mycollab/5ff4f0946ce1d6741e2d7f633988b23e68e67575/mycollab-web/src/main/resources/assets/icons/sad_face.png -------------------------------------------------------------------------------- /mycollab-web/src/main/resources/layouts/basicSearch.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
-------------------------------------------------------------------------------- /mycollab-web/src/main/resources/layouts/crmContainer.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
-------------------------------------------------------------------------------- /mycollab-web/src/main/resources/layouts/projectWelcomeScreen.html: -------------------------------------------------------------------------------- 1 |
--------------------------------------------------------------------------------