Merge branch 'temp8' into temp8-3087-tree-grouping
# Conflicts: # src/Umbraco.Web.UI/Umbraco/config/lang/en.xml # src/Umbraco.Web.UI/Umbraco/config/lang/en_us.xml # src/Umbraco.Web.UI/Umbraco/config/lang/es.xml # src/Umbraco.Web.UI/Umbraco/config/lang/nl.xml # src/Umbraco.Web.UI/Umbraco/config/lang/tr.xml # src/Umbraco.Web.UI/umbraco/config/lang/nb.xml # src/Umbraco.Web.UI/umbraco/config/lang/zh_tw.xml # src/Umbraco.Web/Trees/DictionaryTreeController.cs
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
<?xml version="1.0"?>
|
||||
<applications xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
|
||||
<add alias="content" icon="traycontent" xdt:Locator="Match(alias)" xdt:Transform="SetAttributes(icon)" />
|
||||
<add alias="media" icon="traymedia" xdt:Locator="Match(alias)" xdt:Transform="SetAttributes(icon)" />
|
||||
<add alias="settings" icon="traysettings" xdt:Locator="Match(alias)" xdt:Transform="SetAttributes(icon)" />
|
||||
<add alias="developer" icon="traydeveloper" xdt:Locator="Match(alias)" xdt:Transform="SetAttributes(icon)" />
|
||||
<add alias="users" icon="trayusers" xdt:Locator="Match(alias)" xdt:Transform="SetAttributes(icon)" />
|
||||
<add alias="member" icon="traymember" xdt:Locator="Match(alias)" xdt:Transform="SetAttributes(icon)" />
|
||||
<add alias="forms" name="Forms" icon="icon-umb-contour" sortOrder="6" xdt:Locator="Match(alias)" xdt:Transform="InsertIfMissing" />
|
||||
<add alias="translation" icon="traytranslation" sortOrder="7" xdt:Locator="Match(alias)" xdt:Transform="SetAttributes(icon,sortOrder)" />
|
||||
</applications>
|
||||
<add alias="content" xdt:Locator="Match(alias)" xdt:Transform="SetAttributes(icon)" />
|
||||
<add alias="media" xdt:Locator="Match(alias)" xdt:Transform="SetAttributes(icon)" />
|
||||
<add alias="settings" xdt:Locator="Match(alias)" xdt:Transform="SetAttributes(icon)" />
|
||||
<add alias="developer" xdt:Locator="Match(alias)" xdt:Transform="SetAttributes(icon)" />
|
||||
<add alias="users" xdt:Locator="Match(alias)" xdt:Transform="SetAttributes(icon)" />
|
||||
<add alias="member" xdt:Locator="Match(alias)" xdt:Transform="SetAttributes(icon)" />
|
||||
<add alias="forms" name="Forms" sortOrder="6" xdt:Locator="Match(alias)" xdt:Transform="InsertIfMissing" />
|
||||
<add alias="translation" sortOrder="7" xdt:Locator="Match(alias)" xdt:Transform="SetAttributes(icon,sortOrder)" />
|
||||
</applications>
|
||||
|
||||
@@ -63,8 +63,6 @@ namespace Umbraco.Core.Composing.CompositionRoots
|
||||
container.RegisterSingleton<IRelationTypeRepository, RelationTypeRepository>();
|
||||
container.RegisterSingleton<IServerRegistrationRepository, ServerRegistrationRepository>();
|
||||
container.RegisterSingleton<ITagRepository, TagRepository>();
|
||||
container.RegisterSingleton<ITaskRepository, TaskRepository>();
|
||||
container.RegisterSingleton<ITaskTypeRepository, TaskTypeRepository>();
|
||||
container.RegisterSingleton<ITemplateRepository, TemplateRepository>();
|
||||
container.RegisterSingleton<IUserGroupRepository, UserGroupRepository>();
|
||||
container.RegisterSingleton<IUserRepository, UserRepository>();
|
||||
|
||||
@@ -28,7 +28,6 @@ namespace Umbraco.Core.Composing.CompositionRoots
|
||||
// register the services
|
||||
container.RegisterSingleton<IKeyValueService, KeyValueService>();
|
||||
container.RegisterSingleton<IPublicAccessService, PublicAccessService>();
|
||||
container.RegisterSingleton<ITaskService, TaskService>();
|
||||
container.RegisterSingleton<IDomainService, DomainService>();
|
||||
container.RegisterSingleton<IAuditService, AuditService>();
|
||||
container.RegisterSingleton<ITagService, TagService>();
|
||||
|
||||
@@ -13,9 +13,9 @@
|
||||
public const string Content = "content";
|
||||
|
||||
/// <summary>
|
||||
/// Application alias for the developer section.
|
||||
/// Application alias for the packages section.
|
||||
/// </summary>
|
||||
public const string Developer = "developer";
|
||||
public const string Packages = "packages";
|
||||
|
||||
/// <summary>
|
||||
/// Application alias for the media section.
|
||||
|
||||
@@ -69,10 +69,7 @@ namespace Umbraco.Core.Migrations.Install
|
||||
|
||||
if (tableName.Equals(Constants.DatabaseSchema.Tables.RelationType))
|
||||
CreateRelationTypeData();
|
||||
|
||||
if (tableName.Equals(Constants.DatabaseSchema.Tables.TaskType))
|
||||
CreateTaskTypeData();
|
||||
|
||||
|
||||
if (tableName.Equals(Constants.DatabaseSchema.Tables.KeyValue))
|
||||
CreateKeyValueData();
|
||||
|
||||
@@ -186,7 +183,7 @@ namespace Umbraco.Core.Migrations.Install
|
||||
private void CreateUserGroup2AppData()
|
||||
{
|
||||
_database.Insert(new UserGroup2AppDto { UserGroupId = 1, AppAlias = Constants.Applications.Content });
|
||||
_database.Insert(new UserGroup2AppDto { UserGroupId = 1, AppAlias = Constants.Applications.Developer });
|
||||
_database.Insert(new UserGroup2AppDto { UserGroupId = 1, AppAlias = Constants.Applications.Packages });
|
||||
_database.Insert(new UserGroup2AppDto { UserGroupId = 1, AppAlias = Constants.Applications.Media });
|
||||
_database.Insert(new UserGroup2AppDto { UserGroupId = 1, AppAlias = Constants.Applications.Members });
|
||||
_database.Insert(new UserGroup2AppDto { UserGroupId = 1, AppAlias = Constants.Applications.Settings });
|
||||
@@ -319,11 +316,6 @@ namespace Umbraco.Core.Migrations.Install
|
||||
_database.Insert(Constants.DatabaseSchema.Tables.RelationType, "id", false, relationType);
|
||||
}
|
||||
|
||||
private void CreateTaskTypeData()
|
||||
{
|
||||
_database.Insert(Constants.DatabaseSchema.Tables.TaskType, "id", false, new TaskTypeDto { Id = 1, Alias = "toTranslate" });
|
||||
}
|
||||
|
||||
private void CreateKeyValueData()
|
||||
{
|
||||
// on install, initialize the umbraco migration plan with the final state
|
||||
|
||||
@@ -59,8 +59,6 @@ namespace Umbraco.Core.Migrations.Install
|
||||
typeof (RelationDto),
|
||||
typeof (TagDto),
|
||||
typeof (TagRelationshipDto),
|
||||
typeof (TaskTypeDto),
|
||||
typeof (TaskDto),
|
||||
typeof (ContentType2ContentTypeDto),
|
||||
typeof (ContentTypeAllowedContentTypeDto),
|
||||
typeof (User2NodeNotifyDto),
|
||||
|
||||
@@ -324,9 +324,7 @@ WHERE v1.propertyTypeId=v2.propertyTypeId AND v1.languageId=v2.languageId AND v1
|
||||
|
||||
public const string Tag = "cmsTags";
|
||||
public const string TagRelationship = "cmsTagRelationship";
|
||||
|
||||
public const string Task = "cmsTask";
|
||||
public const string TaskType = "cmsTaskType";
|
||||
|
||||
// ReSharper restore UnusedMember.Local
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,11 +5,10 @@
|
||||
/// </summary>
|
||||
public class Section
|
||||
{
|
||||
public Section(string name, string @alias, string icon, int sortOrder)
|
||||
public Section(string name, string @alias, int sortOrder)
|
||||
{
|
||||
Name = name;
|
||||
Alias = alias;
|
||||
Icon = icon;
|
||||
SortOrder = sortOrder;
|
||||
}
|
||||
|
||||
@@ -20,7 +19,6 @@
|
||||
|
||||
public string Name { get; set; }
|
||||
public string Alias { get; set; }
|
||||
public string Icon { get; set; }
|
||||
public int SortOrder { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,100 +0,0 @@
|
||||
using System;
|
||||
using System.Reflection;
|
||||
using System.Runtime.Serialization;
|
||||
using Umbraco.Core.Models.Entities;
|
||||
|
||||
namespace Umbraco.Core.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a Task
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
[DataContract(IsReference = true)]
|
||||
public class Task : EntityBase
|
||||
{
|
||||
private bool _closed;
|
||||
private TaskType _taskType;
|
||||
private int _entityId;
|
||||
private int _ownerUserId;
|
||||
private int _assigneeUserId;
|
||||
private string _comment;
|
||||
|
||||
public Task(TaskType taskType)
|
||||
{
|
||||
_taskType = taskType;
|
||||
}
|
||||
|
||||
private static readonly Lazy<PropertySelectors> Ps = new Lazy<PropertySelectors>();
|
||||
|
||||
private class PropertySelectors
|
||||
{
|
||||
public readonly PropertyInfo ClosedSelector = ExpressionHelper.GetPropertyInfo<Task, bool>(x => x.Closed);
|
||||
public readonly PropertyInfo TaskTypeSelector = ExpressionHelper.GetPropertyInfo<Task, TaskType>(x => x.TaskType);
|
||||
public readonly PropertyInfo EntityIdSelector = ExpressionHelper.GetPropertyInfo<Task, int>(x => x.EntityId);
|
||||
public readonly PropertyInfo OwnerUserIdSelector = ExpressionHelper.GetPropertyInfo<Task, int>(x => x.OwnerUserId);
|
||||
public readonly PropertyInfo AssigneeUserIdSelector = ExpressionHelper.GetPropertyInfo<Task, int>(x => x.AssigneeUserId);
|
||||
public readonly PropertyInfo CommentSelector = ExpressionHelper.GetPropertyInfo<Task, string>(x => x.Comment);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a boolean indicating whether the task is closed
|
||||
/// </summary>
|
||||
[DataMember]
|
||||
public bool Closed
|
||||
{
|
||||
get { return _closed; }
|
||||
set { SetPropertyValueAndDetectChanges(value, ref _closed, Ps.Value.ClosedSelector); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the TaskType of the Task
|
||||
/// </summary>
|
||||
[DataMember]
|
||||
public TaskType TaskType
|
||||
{
|
||||
get { return _taskType; }
|
||||
set { SetPropertyValueAndDetectChanges(value, ref _taskType, Ps.Value.TaskTypeSelector); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the Id of the entity, which this task is associated to
|
||||
/// </summary>
|
||||
[DataMember]
|
||||
public int EntityId
|
||||
{
|
||||
get { return _entityId; }
|
||||
set { SetPropertyValueAndDetectChanges(value, ref _entityId, Ps.Value.EntityIdSelector); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the Id of the user, who owns this task
|
||||
/// </summary>
|
||||
[DataMember]
|
||||
public int OwnerUserId
|
||||
{
|
||||
get { return _ownerUserId; }
|
||||
set { SetPropertyValueAndDetectChanges(value, ref _ownerUserId, Ps.Value.OwnerUserIdSelector); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the Id of the user, who is assigned to this task
|
||||
/// </summary>
|
||||
[DataMember]
|
||||
public int AssigneeUserId
|
||||
{
|
||||
get { return _assigneeUserId; }
|
||||
set { SetPropertyValueAndDetectChanges(value, ref _assigneeUserId, Ps.Value.AssigneeUserIdSelector); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the Comment for the Task
|
||||
/// </summary>
|
||||
[DataMember]
|
||||
public string Comment
|
||||
{
|
||||
get { return _comment; }
|
||||
set { SetPropertyValueAndDetectChanges(value, ref _comment, Ps.Value.CommentSelector); }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,39 +0,0 @@
|
||||
using System;
|
||||
using System.Reflection;
|
||||
using System.Runtime.Serialization;
|
||||
using Umbraco.Core.Models.Entities;
|
||||
|
||||
namespace Umbraco.Core.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a Task Type
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
[DataContract(IsReference = true)]
|
||||
public class TaskType : EntityBase
|
||||
{
|
||||
private string _alias;
|
||||
|
||||
public TaskType(string @alias)
|
||||
{
|
||||
_alias = alias;
|
||||
}
|
||||
|
||||
private static readonly Lazy<PropertySelectors> Ps = new Lazy<PropertySelectors>();
|
||||
|
||||
private class PropertySelectors
|
||||
{
|
||||
public readonly PropertyInfo AliasSelector = ExpressionHelper.GetPropertyInfo<TaskType, string>(x => x.Alias);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the Alias of the TaskType
|
||||
/// </summary>
|
||||
[DataMember]
|
||||
public string Alias
|
||||
{
|
||||
get { return _alias; }
|
||||
set { SetPropertyValueAndDetectChanges(value, ref _alias, Ps.Value.AliasSelector); }
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -69,10 +69,7 @@ namespace Umbraco.Core
|
||||
|
||||
public const string Tag = /*TableNamePrefix*/ "cms" + "Tags";
|
||||
public const string TagRelationship = /*TableNamePrefix*/ "cms" + "TagRelationship";
|
||||
|
||||
public const string Task = /*TableNamePrefix*/ "cms" + "Task";
|
||||
public const string TaskType = /*TableNamePrefix*/ "cms" + "TaskType";
|
||||
|
||||
|
||||
public const string KeyValue = TableNamePrefix + "KeyValue";
|
||||
|
||||
public const string AuditEntry = /*TableNamePrefix*/ "umbraco" + "Audit";
|
||||
|
||||
@@ -1,50 +0,0 @@
|
||||
using System;
|
||||
using NPoco;
|
||||
using Umbraco.Core.Persistence.DatabaseAnnotations;
|
||||
using Umbraco.Core.Persistence.DatabaseModelDefinitions;
|
||||
|
||||
namespace Umbraco.Core.Persistence.Dtos
|
||||
{
|
||||
[TableName(Constants.DatabaseSchema.Tables.Task)]
|
||||
[PrimaryKey("id")]
|
||||
[ExplicitColumns]
|
||||
internal class TaskDto
|
||||
{
|
||||
[Column("closed")]
|
||||
[Constraint(Default = "0")]
|
||||
public bool Closed { get; set; }
|
||||
|
||||
[Column("id")]
|
||||
[PrimaryKeyColumn]
|
||||
public int Id { get; set; }
|
||||
|
||||
[Column("taskTypeId")]
|
||||
[ForeignKey(typeof(TaskTypeDto))]
|
||||
public byte TaskTypeId { get; set; }
|
||||
|
||||
[Column("nodeId")]
|
||||
[ForeignKey(typeof(NodeDto))]
|
||||
public int NodeId { get; set; }
|
||||
|
||||
[Column("parentUserId")]
|
||||
[ForeignKey(typeof(UserDto), Name = "FK_cmsTask_umbracoUser")]
|
||||
public int ParentUserId { get; set; }
|
||||
|
||||
[Column("userId")]
|
||||
[ForeignKey(typeof(UserDto), Name = "FK_cmsTask_umbracoUser1")]
|
||||
public int UserId { get; set; }
|
||||
|
||||
[Column("DateTime")]
|
||||
[Constraint(Default = SystemMethods.CurrentDateTime)]
|
||||
public DateTime DateTime { get; set; }
|
||||
|
||||
[Column("Comment")]
|
||||
[NullSetting(NullSetting = NullSettings.Null)]
|
||||
[Length(500)]
|
||||
public string Comment { get; set; }
|
||||
|
||||
[ResultColumn]
|
||||
[Reference(ReferenceType.OneToOne, ColumnName = "TaskTypeId")]
|
||||
public TaskTypeDto TaskTypeDto { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -1,19 +0,0 @@
|
||||
using NPoco;
|
||||
using Umbraco.Core.Persistence.DatabaseAnnotations;
|
||||
|
||||
namespace Umbraco.Core.Persistence.Dtos
|
||||
{
|
||||
[TableName(Constants.DatabaseSchema.Tables.TaskType)]
|
||||
[PrimaryKey("id")]
|
||||
[ExplicitColumns]
|
||||
internal class TaskTypeDto
|
||||
{
|
||||
[Column("id")]
|
||||
[PrimaryKeyColumn(IdentitySeed = 2)]
|
||||
public byte Id { get; set; }
|
||||
|
||||
[Column("alias")]
|
||||
[Index(IndexTypes.NonClustered)]
|
||||
public string Alias { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -1,54 +0,0 @@
|
||||
using Umbraco.Core.Models;
|
||||
using Umbraco.Core.Persistence.Dtos;
|
||||
|
||||
namespace Umbraco.Core.Persistence.Factories
|
||||
{
|
||||
/// <summary>
|
||||
/// Creates the model mappings for Tasks
|
||||
/// </summary>
|
||||
internal static class TaskFactory
|
||||
{
|
||||
public static Task BuildEntity(TaskDto dto)
|
||||
{
|
||||
var entity = new Task(new TaskType(dto.TaskTypeDto.Alias) { Id = dto.TaskTypeDto.Id });
|
||||
|
||||
try
|
||||
{
|
||||
entity.DisableChangeTracking();
|
||||
|
||||
entity.Closed = dto.Closed;
|
||||
entity.AssigneeUserId = dto.UserId;
|
||||
entity.Comment = dto.Comment;
|
||||
entity.CreateDate = dto.DateTime;
|
||||
entity.EntityId = dto.NodeId;
|
||||
entity.Id = dto.Id;
|
||||
entity.OwnerUserId = dto.ParentUserId;
|
||||
|
||||
// reset dirty initial properties (U4-1946)
|
||||
entity.ResetDirtyProperties(false);
|
||||
return entity;
|
||||
}
|
||||
finally
|
||||
{
|
||||
entity.EnableChangeTracking();
|
||||
}
|
||||
}
|
||||
|
||||
public static TaskDto BuildDto(Task entity)
|
||||
{
|
||||
var dto = new TaskDto
|
||||
{
|
||||
Closed = entity.Closed,
|
||||
Comment = entity.Comment,
|
||||
DateTime = entity.CreateDate,
|
||||
Id = entity.Id,
|
||||
NodeId = entity.EntityId,
|
||||
ParentUserId = entity.OwnerUserId,
|
||||
TaskTypeId = (byte)entity.TaskType.Id,
|
||||
UserId = entity.AssigneeUserId
|
||||
};
|
||||
|
||||
return dto;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
using Umbraco.Core.Models;
|
||||
using Umbraco.Core.Persistence.Dtos;
|
||||
|
||||
namespace Umbraco.Core.Persistence.Factories
|
||||
{
|
||||
internal static class TaskTypeFactory
|
||||
{
|
||||
public static TaskType BuildEntity(TaskTypeDto dto)
|
||||
{
|
||||
var entity = new TaskType(dto.Alias) {Id = dto.Id};
|
||||
// reset dirty initial properties (U4-1946)
|
||||
entity.ResetDirtyProperties(false);
|
||||
return entity;
|
||||
}
|
||||
|
||||
public static TaskTypeDto BuildDto(TaskType entity)
|
||||
{
|
||||
var dto = new TaskTypeDto
|
||||
{
|
||||
Id = (byte)entity.Id,
|
||||
Alias = entity.Alias
|
||||
};
|
||||
return dto;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -48,7 +48,6 @@ namespace Umbraco.Core.Persistence.Mappers
|
||||
Add<RelationTypeMapper>();
|
||||
Add<ServerRegistrationMapper>();
|
||||
Add<TagMapper>();
|
||||
Add<TaskTypeMapper>();
|
||||
Add<TemplateMapper>();
|
||||
Add<UmbracoEntityMapper>();
|
||||
Add<UserMapper>();
|
||||
|
||||
@@ -1,24 +0,0 @@
|
||||
using System.Collections.Concurrent;
|
||||
using Umbraco.Core.Models;
|
||||
using Umbraco.Core.Persistence.Dtos;
|
||||
|
||||
namespace Umbraco.Core.Persistence.Mappers
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a <see cref="TaskType"/> to DTO mapper used to translate the properties of the public api
|
||||
/// implementation to that of the database's DTO as sql: [tableName].[columnName].
|
||||
/// </summary>
|
||||
[MapperFor(typeof(TaskType))]
|
||||
public sealed class TaskTypeMapper : BaseMapper
|
||||
{
|
||||
private static readonly ConcurrentDictionary<string, DtoMapModel> PropertyInfoCacheInstance = new ConcurrentDictionary<string, DtoMapModel>();
|
||||
|
||||
internal override ConcurrentDictionary<string, DtoMapModel> PropertyInfoCache => PropertyInfoCacheInstance;
|
||||
|
||||
protected override void BuildMap()
|
||||
{
|
||||
CacheMap<TaskType, TaskTypeDto>(src => src.Id, dto => dto.Id);
|
||||
CacheMap<TaskType, TaskTypeDto>(src => src.Alias, dto => dto.Alias);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
using System.Collections.Generic;
|
||||
using Umbraco.Core.Models;
|
||||
|
||||
namespace Umbraco.Core.Persistence.Repositories
|
||||
{
|
||||
public interface ITaskRepository : IReadWriteQueryRepository<int, Task>
|
||||
{
|
||||
IEnumerable<Task> GetTasks(int? itemId = null, int? assignedUser = null, int? ownerUser = null, string taskTypeAlias = null, bool includeClosed = false);
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
using Umbraco.Core.Models;
|
||||
|
||||
namespace Umbraco.Core.Persistence.Repositories
|
||||
{
|
||||
public interface ITaskTypeRepository : IReadWriteQueryRepository<int, TaskType>
|
||||
{ }
|
||||
}
|
||||
@@ -167,7 +167,6 @@ namespace Umbraco.Core.Persistence.Repositories.Implement
|
||||
var list = new List<string>
|
||||
{
|
||||
"DELETE FROM " + Constants.DatabaseSchema.Tables.RedirectUrl + " WHERE contentKey IN (SELECT uniqueId FROM " + Constants.DatabaseSchema.Tables.Node + " WHERE id = @id)",
|
||||
"DELETE FROM " + Constants.DatabaseSchema.Tables.Task + " WHERE nodeId = @id",
|
||||
"DELETE FROM " + Constants.DatabaseSchema.Tables.User2NodeNotify + " WHERE nodeId = @id",
|
||||
"DELETE FROM " + Constants.DatabaseSchema.Tables.UserGroup2NodePermission + " WHERE nodeId = @id",
|
||||
"DELETE FROM " + Constants.DatabaseSchema.Tables.UserStartNode + " WHERE startNode = @id",
|
||||
|
||||
@@ -137,7 +137,6 @@ namespace Umbraco.Core.Persistence.Repositories.Implement
|
||||
{
|
||||
var list = new List<string>
|
||||
{
|
||||
"DELETE FROM " + Constants.DatabaseSchema.Tables.Task + " WHERE nodeId = @id",
|
||||
"DELETE FROM " + Constants.DatabaseSchema.Tables.User2NodeNotify + " WHERE nodeId = @id",
|
||||
"DELETE FROM " + Constants.DatabaseSchema.Tables.UserGroup2NodePermission + " WHERE nodeId = @id",
|
||||
"DELETE FROM " + Constants.DatabaseSchema.Tables.UserStartNode + " WHERE startNode = @id",
|
||||
|
||||
@@ -1,163 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using LightInject;
|
||||
using NPoco;
|
||||
using Umbraco.Core.Cache;
|
||||
using Umbraco.Core.Composing.CompositionRoots;
|
||||
using Umbraco.Core.Exceptions;
|
||||
using Umbraco.Core.Logging;
|
||||
using Umbraco.Core.Models;
|
||||
using Umbraco.Core.Persistence.Dtos;
|
||||
using Umbraco.Core.Persistence.Factories;
|
||||
using Umbraco.Core.Persistence.Querying;
|
||||
using Umbraco.Core.Scoping;
|
||||
|
||||
namespace Umbraco.Core.Persistence.Repositories.Implement
|
||||
{
|
||||
internal class TaskRepository : NPocoRepositoryBase<int, Task>, ITaskRepository
|
||||
{
|
||||
public TaskRepository(IScopeAccessor scopeAccessor, [Inject(RepositoryCompositionRoot.DisabledCache)] CacheHelper cache, ILogger logger)
|
||||
: base(scopeAccessor, cache, logger)
|
||||
{ }
|
||||
|
||||
protected override Task PerformGet(int id)
|
||||
{
|
||||
var sql = GetBaseQuery(false);
|
||||
sql.Where(GetBaseWhereClause(), new { id = id });
|
||||
|
||||
var taskDto = Database.Fetch<TaskDto>(SqlContext.SqlSyntax.SelectTop(sql, 1)).FirstOrDefault();
|
||||
if (taskDto == null)
|
||||
return null;
|
||||
|
||||
var entity = TaskFactory.BuildEntity(taskDto);
|
||||
return entity;
|
||||
}
|
||||
|
||||
protected override IEnumerable<Task> PerformGetAll(params int[] ids)
|
||||
{
|
||||
var sql = GetBaseQuery(false);
|
||||
|
||||
if (ids.Any())
|
||||
{
|
||||
sql.Where("cmsTask.id IN (@ids)", new { ids = ids });
|
||||
}
|
||||
|
||||
var dtos = Database.Fetch<TaskDto>(sql);
|
||||
return dtos.Select(TaskFactory.BuildEntity);
|
||||
}
|
||||
|
||||
protected override IEnumerable<Task> PerformGetByQuery(IQuery<Task> query)
|
||||
{
|
||||
var sqlClause = GetBaseQuery(false);
|
||||
var translator = new SqlTranslator<Task>(sqlClause, query);
|
||||
var sql = translator.Translate();
|
||||
|
||||
var dtos = Database.Fetch<TaskDto>(sql);
|
||||
return dtos.Select(TaskFactory.BuildEntity);
|
||||
}
|
||||
|
||||
protected override Sql<ISqlContext> GetBaseQuery(bool isCount)
|
||||
{
|
||||
return isCount ? SqlContext.Sql().SelectCount().From<TaskDto>() : GetBaseQuery();
|
||||
}
|
||||
|
||||
private Sql<ISqlContext> GetBaseQuery()
|
||||
{
|
||||
return SqlContext.Sql()
|
||||
.Select("cmsTask.closed,cmsTask.id,cmsTask.taskTypeId,cmsTask.nodeId,cmsTask.parentUserId,cmsTask.userId,cmsTask." + SqlContext.SqlSyntax.GetQuotedColumnName("DateTime") + ",cmsTask.Comment,cmsTaskType.id, cmsTaskType.alias")
|
||||
.From<TaskDto>()
|
||||
.InnerJoin<TaskTypeDto>()
|
||||
.On<TaskDto, TaskTypeDto>(left => left.TaskTypeId, right => right.Id)
|
||||
.InnerJoin<NodeDto>()
|
||||
.On<TaskDto, NodeDto>(left => left.NodeId, right => right.NodeId);
|
||||
}
|
||||
|
||||
protected override string GetBaseWhereClause()
|
||||
{
|
||||
return "cmsTask.id = @id";
|
||||
}
|
||||
|
||||
protected override IEnumerable<string> GetDeleteClauses()
|
||||
{
|
||||
var list = new List<string>
|
||||
{
|
||||
"DELETE FROM cmsTask WHERE id = @id"
|
||||
};
|
||||
return list;
|
||||
}
|
||||
|
||||
protected override Guid NodeObjectTypeId => throw new WontImplementException();
|
||||
|
||||
protected override void PersistNewItem(Task entity)
|
||||
{
|
||||
entity.AddingEntity();
|
||||
|
||||
//ensure the task type exists
|
||||
var taskType = Database.SingleOrDefault<TaskTypeDto>("Where alias = @alias", new { alias = entity.TaskType.Alias });
|
||||
if (taskType == null)
|
||||
{
|
||||
var taskTypeId = Convert.ToInt32(Database.Insert(new TaskTypeDto { Alias = entity.TaskType.Alias }));
|
||||
entity.TaskType.Id = taskTypeId;
|
||||
}
|
||||
else
|
||||
{
|
||||
entity.TaskType.Id = taskType.Id;
|
||||
}
|
||||
|
||||
var dto = TaskFactory.BuildDto(entity);
|
||||
|
||||
var id = Convert.ToInt32(Database.Insert(dto));
|
||||
entity.Id = id;
|
||||
|
||||
entity.ResetDirtyProperties();
|
||||
}
|
||||
|
||||
protected override void PersistUpdatedItem(Task entity)
|
||||
{
|
||||
entity.UpdatingEntity();
|
||||
|
||||
var dto = TaskFactory.BuildDto(entity);
|
||||
|
||||
Database.Update(dto);
|
||||
|
||||
entity.ResetDirtyProperties();
|
||||
}
|
||||
|
||||
public IEnumerable<Task> GetTasks(int? itemId = null, int? assignedUser = null, int? ownerUser = null, string taskTypeAlias = null, bool includeClosed = false)
|
||||
{
|
||||
var sql = GetGetTasksQuery(assignedUser, ownerUser, taskTypeAlias, includeClosed);
|
||||
if (itemId.HasValue)
|
||||
{
|
||||
sql.Where<NodeDto>(dto => dto.NodeId == itemId.Value);
|
||||
}
|
||||
|
||||
var dtos = Database.Fetch<TaskDto>(sql);
|
||||
|
||||
return dtos.Select(TaskFactory.BuildEntity);
|
||||
}
|
||||
|
||||
private Sql<ISqlContext> GetGetTasksQuery(int? assignedUser = null, int? ownerUser = null, string taskTypeAlias = null, bool includeClosed = false)
|
||||
{
|
||||
var sql = GetBaseQuery(false);
|
||||
|
||||
if (includeClosed == false)
|
||||
{
|
||||
sql.Where<TaskDto>(dto => dto.Closed == false);
|
||||
}
|
||||
if (taskTypeAlias.IsNullOrWhiteSpace() == false)
|
||||
{
|
||||
sql.Where("cmsTaskType.alias = @alias", new { alias = taskTypeAlias });
|
||||
}
|
||||
if (ownerUser.HasValue)
|
||||
{
|
||||
sql.Where<TaskDto>(dto => dto.ParentUserId == ownerUser.Value);
|
||||
}
|
||||
if (assignedUser.HasValue)
|
||||
{
|
||||
sql.Where<TaskDto>(dto => dto.UserId == assignedUser.Value);
|
||||
}
|
||||
return sql;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,113 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using LightInject;
|
||||
using NPoco;
|
||||
using Umbraco.Core.Cache;
|
||||
using Umbraco.Core.Composing.CompositionRoots;
|
||||
using Umbraco.Core.Logging;
|
||||
using Umbraco.Core.Models;
|
||||
using Umbraco.Core.Persistence.Dtos;
|
||||
using Umbraco.Core.Persistence.Factories;
|
||||
using Umbraco.Core.Persistence.Querying;
|
||||
using Umbraco.Core.Scoping;
|
||||
|
||||
namespace Umbraco.Core.Persistence.Repositories.Implement
|
||||
{
|
||||
internal class TaskTypeRepository : NPocoRepositoryBase<int, TaskType>, ITaskTypeRepository
|
||||
{
|
||||
public TaskTypeRepository(IScopeAccessor scopeAccessor, [Inject(RepositoryCompositionRoot.DisabledCache)] CacheHelper cache, ILogger logger)
|
||||
: base(scopeAccessor, cache, logger)
|
||||
{ }
|
||||
|
||||
protected override TaskType PerformGet(int id)
|
||||
{
|
||||
var sql = GetBaseQuery(false);
|
||||
sql.Where(GetBaseWhereClause(), new { Id = id });
|
||||
|
||||
var taskDto = Database.Fetch<TaskTypeDto>(SqlContext.SqlSyntax.SelectTop(sql, 1)).FirstOrDefault();
|
||||
if (taskDto == null)
|
||||
return null;
|
||||
|
||||
var entity = TaskTypeFactory.BuildEntity(taskDto);
|
||||
return entity;
|
||||
}
|
||||
|
||||
protected override IEnumerable<TaskType> PerformGetAll(params int[] ids)
|
||||
{
|
||||
var sql = GetBaseQuery(false);
|
||||
|
||||
if (ids.Any())
|
||||
{
|
||||
sql.Where("cmsTaskType.id IN (@ids)", new { ids });
|
||||
}
|
||||
|
||||
var dtos = Database.Fetch<TaskTypeDto>(sql);
|
||||
return dtos.Select(TaskTypeFactory.BuildEntity);
|
||||
}
|
||||
|
||||
protected override IEnumerable<TaskType> PerformGetByQuery(IQuery<TaskType> query)
|
||||
{
|
||||
var sqlClause = GetBaseQuery(false);
|
||||
var translator = new SqlTranslator<TaskType>(sqlClause, query);
|
||||
var sql = translator.Translate();
|
||||
|
||||
var dtos = Database.Fetch<TaskTypeDto>(sql);
|
||||
return dtos.Select(TaskTypeFactory.BuildEntity);
|
||||
}
|
||||
|
||||
protected override Sql<ISqlContext> GetBaseQuery(bool isCount)
|
||||
{
|
||||
return SqlContext.Sql().SelectAll().From<TaskTypeDto>();
|
||||
}
|
||||
|
||||
protected override string GetBaseWhereClause()
|
||||
{
|
||||
return "cmsTaskType.id = @id";
|
||||
}
|
||||
|
||||
protected override IEnumerable<string> GetDeleteClauses()
|
||||
{
|
||||
var list = new List<string>
|
||||
{
|
||||
"DELETE FROM cmsTask WHERE taskTypeId = @id",
|
||||
"DELETE FROM cmsTaskType WHERE id = @id"
|
||||
};
|
||||
return list;
|
||||
}
|
||||
|
||||
protected override Guid NodeObjectTypeId => throw new NotImplementedException();
|
||||
|
||||
protected override void PersistNewItem(TaskType entity)
|
||||
{
|
||||
entity.AddingEntity();
|
||||
|
||||
//TODO: Just remove the task type db table or add a unique index to the alias
|
||||
|
||||
//ensure the task type exists
|
||||
var taskType = Database.SingleOrDefault<TaskTypeDto>("Where alias = @alias", new { alias = entity.Alias });
|
||||
if (taskType != null)
|
||||
{
|
||||
throw new InvalidOperationException("A task type already exists with the given alias " + entity.Alias);
|
||||
}
|
||||
|
||||
var dto = TaskTypeFactory.BuildDto(entity);
|
||||
|
||||
var id = Convert.ToInt32(Database.Insert(dto));
|
||||
entity.Id = id;
|
||||
|
||||
entity.ResetDirtyProperties();
|
||||
}
|
||||
|
||||
protected override void PersistUpdatedItem(TaskType entity)
|
||||
{
|
||||
entity.UpdatingEntity();
|
||||
|
||||
var dto = TaskTypeFactory.BuildDto(entity);
|
||||
|
||||
Database.Update(dto);
|
||||
|
||||
entity.ResetDirtyProperties();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Umbraco.Core.Models;
|
||||
|
||||
namespace Umbraco.Core.Services
|
||||
{
|
||||
public interface ITaskService : IService
|
||||
{
|
||||
TaskType GetTaskTypeByAlias(string taskTypeAlias);
|
||||
TaskType GetTaskTypeById(int id);
|
||||
void Save(TaskType taskType);
|
||||
void Delete(TaskType taskTypeEntity);
|
||||
|
||||
//IEnumerable<Task> GetTasks(Guid? itemId = null, int? assignedUser = null, int? ownerUser = null, string taskTypeAlias = null, bool includeClosed = false);
|
||||
IEnumerable<Task> GetTasks(int? itemId = null, int? assignedUser = null, int? ownerUser = null, string taskTypeAlias = null, bool includeClosed = false);
|
||||
|
||||
/// <summary>
|
||||
/// Saves a task
|
||||
/// </summary>
|
||||
/// <param name="task"></param>
|
||||
void Save(Task task);
|
||||
void Delete(Task task);
|
||||
|
||||
IEnumerable<TaskType> GetAllTaskTypes();
|
||||
Task GetTaskById(int id);
|
||||
}
|
||||
}
|
||||
@@ -1,105 +0,0 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Umbraco.Core.Events;
|
||||
using Umbraco.Core.Logging;
|
||||
using Umbraco.Core.Models;
|
||||
using Umbraco.Core.Persistence.Repositories;
|
||||
using Umbraco.Core.Scoping;
|
||||
|
||||
namespace Umbraco.Core.Services.Implement
|
||||
{
|
||||
public class TaskService : RepositoryService, ITaskService
|
||||
{
|
||||
private readonly ITaskTypeRepository _taskTypeRepository;
|
||||
private readonly ITaskRepository _taskRepository;
|
||||
|
||||
public TaskService(IScopeProvider provider, ILogger logger, IEventMessagesFactory eventMessagesFactory,
|
||||
ITaskTypeRepository taskTypeRepository, ITaskRepository taskRepository)
|
||||
: base(provider, logger, eventMessagesFactory)
|
||||
{
|
||||
_taskTypeRepository = taskTypeRepository;
|
||||
_taskRepository = taskRepository;
|
||||
}
|
||||
|
||||
public TaskType GetTaskTypeByAlias(string taskTypeAlias)
|
||||
{
|
||||
using (var scope = ScopeProvider.CreateScope(autoComplete: true))
|
||||
{
|
||||
return _taskTypeRepository.Get(Query<TaskType>().Where(x => x.Alias == taskTypeAlias)).FirstOrDefault();
|
||||
}
|
||||
}
|
||||
|
||||
public TaskType GetTaskTypeById(int id)
|
||||
{
|
||||
using (var scope = ScopeProvider.CreateScope(autoComplete: true))
|
||||
{
|
||||
return _taskTypeRepository.Get(id);
|
||||
}
|
||||
}
|
||||
|
||||
public void Save(TaskType taskType)
|
||||
{
|
||||
using (var scope = ScopeProvider.CreateScope())
|
||||
{
|
||||
_taskTypeRepository.Save(taskType);
|
||||
scope.Complete();
|
||||
}
|
||||
}
|
||||
|
||||
public void Delete(TaskType taskTypeEntity)
|
||||
{
|
||||
using (var scope = ScopeProvider.CreateScope())
|
||||
{
|
||||
_taskTypeRepository.Delete(taskTypeEntity);
|
||||
scope.Complete();
|
||||
}
|
||||
}
|
||||
|
||||
public IEnumerable<TaskType> GetAllTaskTypes()
|
||||
{
|
||||
using (var scope = ScopeProvider.CreateScope(autoComplete: true))
|
||||
{
|
||||
return _taskTypeRepository.GetMany();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public IEnumerable<Task> GetTasks(int? itemId = null, int? assignedUser = null, int? ownerUser = null, string taskTypeAlias = null, bool includeClosed = false)
|
||||
{
|
||||
using (var scope = ScopeProvider.CreateScope(autoComplete: true))
|
||||
{
|
||||
return _taskRepository.GetTasks(itemId, assignedUser, ownerUser, taskTypeAlias);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Saves a task
|
||||
/// </summary>
|
||||
/// <param name="task"></param>
|
||||
public void Save(Task task)
|
||||
{
|
||||
using (var scope = ScopeProvider.CreateScope())
|
||||
{
|
||||
_taskRepository.Save(task);
|
||||
scope.Complete();
|
||||
}
|
||||
}
|
||||
|
||||
public void Delete(Task task)
|
||||
{
|
||||
using (var scope = ScopeProvider.CreateScope())
|
||||
{
|
||||
_taskRepository.Delete(task);
|
||||
scope.Complete();
|
||||
}
|
||||
}
|
||||
|
||||
public Task GetTaskById(int id)
|
||||
{
|
||||
using (var scope = ScopeProvider.CreateScope(autoComplete: true))
|
||||
{
|
||||
return _taskRepository.Get(id);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -8,7 +8,6 @@ namespace Umbraco.Core.Services
|
||||
public class ServiceContext
|
||||
{
|
||||
private readonly Lazy<IPublicAccessService> _publicAccessService;
|
||||
private readonly Lazy<ITaskService> _taskService;
|
||||
private readonly Lazy<IDomainService> _domainService;
|
||||
private readonly Lazy<IAuditService> _auditService;
|
||||
private readonly Lazy<ILocalizedTextService> _localizedTextService;
|
||||
@@ -40,10 +39,9 @@ namespace Umbraco.Core.Services
|
||||
/// Initializes a new instance of the <see cref="ServiceContext"/> class with lazy services.
|
||||
/// </summary>
|
||||
/// <remarks>Used by IoC. Note that LightInject will favor lazy args when picking a constructor.</remarks>
|
||||
public ServiceContext(Lazy<IPublicAccessService> publicAccessService, Lazy<ITaskService> taskService, Lazy<IDomainService> domainService, Lazy<IAuditService> auditService, Lazy<ILocalizedTextService> localizedTextService, Lazy<ITagService> tagService, Lazy<IContentService> contentService, Lazy<IUserService> userService, Lazy<IMemberService> memberService, Lazy<IMediaService> mediaService, Lazy<IContentTypeService> contentTypeService, Lazy<IMediaTypeService> mediaTypeService, Lazy<IDataTypeService> dataTypeService, Lazy<IFileService> fileService, Lazy<ILocalizationService> localizationService, Lazy<IPackagingService> packagingService, Lazy<IServerRegistrationService> serverRegistrationService, Lazy<IEntityService> entityService, Lazy<IRelationService> relationService, Lazy<IApplicationTreeService> treeService, Lazy<ISectionService> sectionService, Lazy<IMacroService> macroService, Lazy<IMemberTypeService> memberTypeService, Lazy<IMemberGroupService> memberGroupService, Lazy<INotificationService> notificationService, Lazy<IExternalLoginService> externalLoginService, Lazy<IRedirectUrlService> redirectUrlService, Lazy<IConsentService> consentService)
|
||||
public ServiceContext(Lazy<IPublicAccessService> publicAccessService, Lazy<IDomainService> domainService, Lazy<IAuditService> auditService, Lazy<ILocalizedTextService> localizedTextService, Lazy<ITagService> tagService, Lazy<IContentService> contentService, Lazy<IUserService> userService, Lazy<IMemberService> memberService, Lazy<IMediaService> mediaService, Lazy<IContentTypeService> contentTypeService, Lazy<IMediaTypeService> mediaTypeService, Lazy<IDataTypeService> dataTypeService, Lazy<IFileService> fileService, Lazy<ILocalizationService> localizationService, Lazy<IPackagingService> packagingService, Lazy<IServerRegistrationService> serverRegistrationService, Lazy<IEntityService> entityService, Lazy<IRelationService> relationService, Lazy<IApplicationTreeService> treeService, Lazy<ISectionService> sectionService, Lazy<IMacroService> macroService, Lazy<IMemberTypeService> memberTypeService, Lazy<IMemberGroupService> memberGroupService, Lazy<INotificationService> notificationService, Lazy<IExternalLoginService> externalLoginService, Lazy<IRedirectUrlService> redirectUrlService, Lazy<IConsentService> consentService)
|
||||
{
|
||||
_publicAccessService = publicAccessService;
|
||||
_taskService = taskService;
|
||||
_domainService = domainService;
|
||||
_auditService = auditService;
|
||||
_localizedTextService = localizedTextService;
|
||||
@@ -97,7 +95,6 @@ namespace Umbraco.Core.Services
|
||||
ILocalizedTextService localizedTextService = null,
|
||||
IAuditService auditService = null,
|
||||
IDomainService domainService = null,
|
||||
ITaskService taskService = null,
|
||||
IMacroService macroService = null,
|
||||
IPublicAccessService publicAccessService = null,
|
||||
IExternalLoginService externalLoginService = null,
|
||||
@@ -128,7 +125,6 @@ namespace Umbraco.Core.Services
|
||||
if (userService != null) _userService = new Lazy<IUserService>(() => userService);
|
||||
if (notificationService != null) _notificationService = new Lazy<INotificationService>(() => notificationService);
|
||||
if (domainService != null) _domainService = new Lazy<IDomainService>(() => domainService);
|
||||
if (taskService != null) _taskService = new Lazy<ITaskService>(() => taskService);
|
||||
if (macroService != null) _macroService = new Lazy<IMacroService>(() => macroService);
|
||||
if (publicAccessService != null) _publicAccessService = new Lazy<IPublicAccessService>(() => publicAccessService);
|
||||
if (redirectUrlService != null) _redirectUrlService = new Lazy<IRedirectUrlService>(() => redirectUrlService);
|
||||
@@ -139,12 +135,7 @@ namespace Umbraco.Core.Services
|
||||
/// Gets the <see cref="IPublicAccessService"/>
|
||||
/// </summary>
|
||||
public IPublicAccessService PublicAccessService => _publicAccessService.Value;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the <see cref="ITaskService"/>
|
||||
/// </summary>
|
||||
public ITaskService TaskService => _taskService.Value;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Gets the <see cref="IDomainService"/>
|
||||
/// </summary>
|
||||
|
||||
@@ -803,8 +803,6 @@
|
||||
<Compile Include="Persistence\Dtos\ServerRegistrationDto.cs" />
|
||||
<Compile Include="Persistence\Dtos\TagDto.cs" />
|
||||
<Compile Include="Persistence\Dtos\TagRelationshipDto.cs" />
|
||||
<Compile Include="Persistence\Dtos\TaskDto.cs" />
|
||||
<Compile Include="Persistence\Dtos\TaskTypeDto.cs" />
|
||||
<Compile Include="Persistence\Dtos\TemplateDto.cs" />
|
||||
<Compile Include="Persistence\Dtos\User2NodeNotifyDto.cs" />
|
||||
<Compile Include="Persistence\Dtos\User2UserGroupDto.cs" />
|
||||
@@ -826,8 +824,6 @@
|
||||
<Compile Include="Models\TaggableObjectTypes.cs" />
|
||||
<Compile Include="Models\TaggedEntity.cs" />
|
||||
<Compile Include="Models\TaggedProperty.cs" />
|
||||
<Compile Include="Models\Task.cs" />
|
||||
<Compile Include="Models\TaskType.cs" />
|
||||
<Compile Include="Models\Template.cs" />
|
||||
<Compile Include="Models\TemplateNode.cs" />
|
||||
<Compile Include="Models\TemplateOnDisk.cs" />
|
||||
@@ -902,8 +898,6 @@
|
||||
<Compile Include="Persistence\Factories\RelationTypeFactory.cs" />
|
||||
<Compile Include="Persistence\Factories\ServerRegistrationFactory.cs" />
|
||||
<Compile Include="Persistence\Factories\TagFactory.cs" />
|
||||
<Compile Include="Persistence\Factories\TaskFactory.cs" />
|
||||
<Compile Include="Persistence\Factories\TaskTypeFactory.cs" />
|
||||
<Compile Include="Persistence\Factories\TemplateFactory.cs" />
|
||||
<Compile Include="Persistence\Factories\UserFactory.cs" />
|
||||
<Compile Include="Persistence\Factories\UserGroupFactory.cs" />
|
||||
@@ -953,7 +947,6 @@
|
||||
<Compile Include="Persistence\Mappers\RelationTypeMapper.cs" />
|
||||
<Compile Include="Persistence\Mappers\ServerRegistrationMapper.cs" />
|
||||
<Compile Include="Persistence\Mappers\TagMapper.cs" />
|
||||
<Compile Include="Persistence\Mappers\TaskTypeMapper.cs" />
|
||||
<Compile Include="Persistence\Mappers\TemplateMapper.cs" />
|
||||
<Compile Include="Persistence\Mappers\UmbracoEntityMapper.cs" />
|
||||
<Compile Include="Persistence\Mappers\UserGroupMapper.cs" />
|
||||
@@ -1162,8 +1155,6 @@
|
||||
<Compile Include="Persistence\Repositories\IServerRegistrationRepository.cs" />
|
||||
<Compile Include="Persistence\Repositories\IStylesheetRepository.cs" />
|
||||
<Compile Include="Persistence\Repositories\ITagRepository.cs" />
|
||||
<Compile Include="Persistence\Repositories\ITaskRepository.cs" />
|
||||
<Compile Include="Persistence\Repositories\ITaskTypeRepository.cs" />
|
||||
<Compile Include="Persistence\Repositories\ITemplateRepository.cs" />
|
||||
<Compile Include="Persistence\Repositories\IUserGroupRepository.cs" />
|
||||
<Compile Include="Persistence\Repositories\IUserRepository.cs" />
|
||||
@@ -1194,8 +1185,6 @@
|
||||
<Compile Include="Persistence\Repositories\Implement\SimpleGetRepository.cs" />
|
||||
<Compile Include="Persistence\Repositories\Implement\StylesheetRepository.cs" />
|
||||
<Compile Include="Persistence\Repositories\Implement\TagRepository.cs" />
|
||||
<Compile Include="Persistence\Repositories\Implement\TaskRepository.cs" />
|
||||
<Compile Include="Persistence\Repositories\Implement\TaskTypeRepository.cs" />
|
||||
<Compile Include="Persistence\Repositories\Implement\TemplateRepository.cs" />
|
||||
<Compile Include="Persistence\Repositories\Implement\TupleExtensions.cs" />
|
||||
<Compile Include="Persistence\Repositories\Implement\UserGroupRepository.cs" />
|
||||
@@ -1381,7 +1370,6 @@
|
||||
<Compile Include="Services\IServerRegistrationService.cs" />
|
||||
<Compile Include="Services\IService.cs" />
|
||||
<Compile Include="Services\ITagService.cs" />
|
||||
<Compile Include="Services\ITaskService.cs" />
|
||||
<Compile Include="Services\IUserService.cs" />
|
||||
<Compile Include="Services\Implement\LocalizationService.cs" />
|
||||
<Compile Include="Services\Implement\LocalizedTextService.cs" />
|
||||
@@ -1411,7 +1399,6 @@
|
||||
<Compile Include="Services\Implement\ServerRegistrationService.cs" />
|
||||
<Compile Include="Services\ServiceContext.cs" />
|
||||
<Compile Include="Services\Implement\TagService.cs" />
|
||||
<Compile Include="Services\Implement\TaskService.cs" />
|
||||
<Compile Include="Services\Implement\UserService.cs" />
|
||||
<Compile Include="Services\UnpublishResult.cs" />
|
||||
<Compile Include="Services\UnpublishResultType.cs" />
|
||||
|
||||
@@ -1,78 +0,0 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using NUnit.Framework;
|
||||
using Umbraco.Core.Models;
|
||||
using Umbraco.Core.Serialization;
|
||||
|
||||
namespace Umbraco.Tests.Models
|
||||
{
|
||||
[TestFixture]
|
||||
public class TaskTests
|
||||
{
|
||||
[Test]
|
||||
public void Can_Deep_Clone()
|
||||
{
|
||||
var item = new Task(new TaskType("test") {Id = 3})
|
||||
{
|
||||
AssigneeUserId = 4,
|
||||
Closed = true,
|
||||
Comment = "blah",
|
||||
CreateDate = DateTime.Now,
|
||||
EntityId = 99,
|
||||
Id = 2,
|
||||
Key = Guid.NewGuid(),
|
||||
OwnerUserId = 89,
|
||||
TaskType = new TaskType("asdf") {Id = 99},
|
||||
UpdateDate = DateTime.Now
|
||||
};
|
||||
|
||||
var clone = (Task) item.DeepClone();
|
||||
|
||||
Assert.AreNotSame(clone, item);
|
||||
Assert.AreEqual(clone, item);
|
||||
Assert.AreEqual(clone.CreateDate, item.CreateDate);
|
||||
Assert.AreEqual(clone.UpdateDate, item.UpdateDate);
|
||||
Assert.AreEqual(clone.AssigneeUserId, item.AssigneeUserId);
|
||||
Assert.AreEqual(clone.Closed, item.Closed);
|
||||
Assert.AreEqual(clone.Comment, item.Comment);
|
||||
Assert.AreEqual(clone.EntityId, item.EntityId);
|
||||
Assert.AreEqual(clone.Id, item.Id);
|
||||
Assert.AreEqual(clone.Key, item.Key);
|
||||
Assert.AreEqual(clone.OwnerUserId, item.OwnerUserId);
|
||||
Assert.AreNotSame(clone.TaskType, item.TaskType);
|
||||
Assert.AreEqual(clone.TaskType, item.TaskType);
|
||||
|
||||
//This double verifies by reflection
|
||||
var allProps = clone.GetType().GetProperties();
|
||||
foreach (var propertyInfo in allProps)
|
||||
{
|
||||
Assert.AreEqual(propertyInfo.GetValue(clone, null), propertyInfo.GetValue(item, null));
|
||||
}
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Can_Serialize_Without_Error()
|
||||
{
|
||||
var ss = new SerializationService(new JsonNetSerializer());
|
||||
|
||||
var item = new Task(new TaskType("test") { Id = 3 })
|
||||
{
|
||||
AssigneeUserId = 4,
|
||||
Closed = true,
|
||||
Comment = "blah",
|
||||
CreateDate = DateTime.Now,
|
||||
EntityId = 99,
|
||||
Id = 2,
|
||||
Key = Guid.NewGuid(),
|
||||
OwnerUserId = 89,
|
||||
TaskType = new TaskType("asdf") { Id = 99 },
|
||||
UpdateDate = DateTime.Now
|
||||
};
|
||||
|
||||
var result = ss.ToStream(item);
|
||||
var json = result.ResultStream.ToJsonString();
|
||||
Debug.Print(json);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,62 +0,0 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using NUnit.Framework;
|
||||
using Umbraco.Core.Models;
|
||||
using Umbraco.Core.Serialization;
|
||||
|
||||
namespace Umbraco.Tests.Models
|
||||
{
|
||||
[TestFixture]
|
||||
public class TaskTypeTests
|
||||
{
|
||||
[Test]
|
||||
public void Can_Deep_Clone()
|
||||
{
|
||||
var item = new TaskType("test")
|
||||
{
|
||||
Id = 3,
|
||||
Alias = "test",
|
||||
CreateDate = DateTime.Now,
|
||||
Key = Guid.NewGuid(),
|
||||
UpdateDate = DateTime.Now
|
||||
};
|
||||
|
||||
var clone = (TaskType)item.DeepClone();
|
||||
|
||||
Assert.AreNotSame(clone, item);
|
||||
Assert.AreEqual(clone, item);
|
||||
Assert.AreEqual(clone.CreateDate, item.CreateDate);
|
||||
Assert.AreEqual(clone.Id, item.Id);
|
||||
Assert.AreEqual(clone.Key, item.Key);
|
||||
Assert.AreEqual(clone.Alias, item.Alias);
|
||||
Assert.AreEqual(clone.UpdateDate, item.UpdateDate);
|
||||
|
||||
//This double verifies by reflection
|
||||
var allProps = clone.GetType().GetProperties();
|
||||
foreach (var propertyInfo in allProps)
|
||||
{
|
||||
Assert.AreEqual(propertyInfo.GetValue(clone, null), propertyInfo.GetValue(item, null));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Can_Serialize_Without_Error()
|
||||
{
|
||||
var ss = new SerializationService(new JsonNetSerializer());
|
||||
|
||||
var item = new TaskType("test")
|
||||
{
|
||||
Id = 3,
|
||||
Alias = "test",
|
||||
CreateDate = DateTime.Now,
|
||||
Key = Guid.NewGuid(),
|
||||
UpdateDate = DateTime.Now
|
||||
};
|
||||
|
||||
var result = ss.ToStream(item);
|
||||
var json = result.ResultStream.ToJsonString();
|
||||
Debug.Print(json);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,229 +0,0 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using NUnit.Framework;
|
||||
using Umbraco.Core;
|
||||
using Umbraco.Core.Models;
|
||||
using Umbraco.Core.Persistence.Repositories;
|
||||
using Umbraco.Core.Persistence.Repositories.Implement;
|
||||
using Umbraco.Core.Scoping;
|
||||
using Umbraco.Tests.TestHelpers;
|
||||
using Umbraco.Tests.Testing;
|
||||
|
||||
namespace Umbraco.Tests.Persistence.Repositories
|
||||
{
|
||||
[TestFixture]
|
||||
[UmbracoTest(Database = UmbracoTestOptions.Database.NewSchemaPerTest)]
|
||||
public class TaskRepositoryTest : TestWithDatabaseBase
|
||||
{
|
||||
[Test]
|
||||
public void Can_Delete()
|
||||
{
|
||||
var provider = TestObjects.GetScopeProvider(Logger);
|
||||
using (var scope = ScopeProvider.CreateScope())
|
||||
{
|
||||
var repo = new TaskRepository((IScopeAccessor) provider, CacheHelper, Logger);
|
||||
|
||||
var created = DateTime.Now;
|
||||
var task = new Task(new TaskType("asdfasdf"))
|
||||
{
|
||||
AssigneeUserId = Constants.Security.SuperUserId,
|
||||
Closed = false,
|
||||
Comment = "hello world",
|
||||
EntityId = -1,
|
||||
OwnerUserId = Constants.Security.SuperUserId
|
||||
};
|
||||
repo.Save(task);
|
||||
|
||||
|
||||
repo.Delete(task);
|
||||
|
||||
|
||||
task = repo.Get(task.Id);
|
||||
Assert.IsNull(task);
|
||||
}
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Can_Add()
|
||||
{
|
||||
var provider = TestObjects.GetScopeProvider(Logger);
|
||||
using (var scope = ScopeProvider.CreateScope())
|
||||
{
|
||||
var repo = new TaskRepository((IScopeAccessor) provider, CacheHelper, Logger);
|
||||
|
||||
var created = DateTime.Now;
|
||||
repo.Save(new Task(new TaskType("asdfasdf"))
|
||||
{
|
||||
AssigneeUserId = Constants.Security.SuperUserId,
|
||||
Closed = false,
|
||||
Comment = "hello world",
|
||||
EntityId = -1,
|
||||
OwnerUserId = Constants.Security.SuperUserId
|
||||
});
|
||||
|
||||
|
||||
var found = repo.GetMany().ToArray();
|
||||
|
||||
Assert.AreEqual(1, found.Length);
|
||||
Assert.AreEqual(Constants.Security.SuperUserId, found.First().AssigneeUserId);
|
||||
Assert.AreEqual(false, found.First().Closed);
|
||||
Assert.AreEqual("hello world", found.First().Comment);
|
||||
Assert.GreaterOrEqual(found.First().CreateDate.TruncateTo(DateTimeExtensions.DateTruncate.Second), created.TruncateTo(DateTimeExtensions.DateTruncate.Second));
|
||||
Assert.AreEqual(-1, found.First().EntityId);
|
||||
Assert.AreEqual(Constants.Security.SuperUserId, found.First().OwnerUserId);
|
||||
Assert.AreEqual(true, found.First().HasIdentity);
|
||||
Assert.AreEqual(true, found.First().TaskType.HasIdentity);
|
||||
}
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Can_Update()
|
||||
{
|
||||
var provider = TestObjects.GetScopeProvider(Logger);
|
||||
using (var scope = ScopeProvider.CreateScope())
|
||||
{
|
||||
var repo = new TaskRepository((IScopeAccessor) provider, CacheHelper, Logger);
|
||||
|
||||
var task = new Task(new TaskType("asdfasdf"))
|
||||
{
|
||||
AssigneeUserId = Constants.Security.SuperUserId,
|
||||
Closed = false,
|
||||
Comment = "hello world",
|
||||
EntityId = -1,
|
||||
OwnerUserId = Constants.Security.SuperUserId
|
||||
};
|
||||
|
||||
repo.Save(task);
|
||||
|
||||
|
||||
//re-get
|
||||
task = repo.Get(task.Id);
|
||||
|
||||
task.Comment = "blah";
|
||||
task.Closed = true;
|
||||
|
||||
repo.Save(task);
|
||||
|
||||
|
||||
//re-get
|
||||
task = repo.Get(task.Id);
|
||||
|
||||
Assert.AreEqual(true, task.Closed);
|
||||
Assert.AreEqual("blah", task.Comment);
|
||||
}
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Get_By_Id()
|
||||
{
|
||||
var provider = TestObjects.GetScopeProvider(Logger);
|
||||
using (var scope = ScopeProvider.CreateScope())
|
||||
{
|
||||
var repo = new TaskRepository((IScopeAccessor) provider, CacheHelper, Logger);
|
||||
|
||||
var task = new Task(new TaskType("asdfasdf"))
|
||||
{
|
||||
AssigneeUserId = Constants.Security.SuperUserId,
|
||||
Closed = false,
|
||||
Comment = "hello world",
|
||||
EntityId = -1,
|
||||
OwnerUserId = Constants.Security.SuperUserId
|
||||
};
|
||||
|
||||
repo.Save(task);
|
||||
|
||||
|
||||
//re-get
|
||||
task = repo.Get(task.Id);
|
||||
|
||||
Assert.IsNotNull(task);
|
||||
}
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Get_All()
|
||||
{
|
||||
CreateTestData(false, 20);
|
||||
|
||||
var provider = TestObjects.GetScopeProvider(Logger);
|
||||
using (var scope = ScopeProvider.CreateScope())
|
||||
{
|
||||
var repo = new TaskRepository((IScopeAccessor) provider, CacheHelper, Logger);
|
||||
|
||||
var found = repo.GetMany().ToArray();
|
||||
Assert.AreEqual(20, found.Count());
|
||||
}
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Get_All_With_Closed()
|
||||
{
|
||||
CreateTestData(false, 10);
|
||||
CreateTestData(true, 5);
|
||||
|
||||
var provider = TestObjects.GetScopeProvider(Logger);
|
||||
using (var scope = ScopeProvider.CreateScope())
|
||||
{
|
||||
var repo = new TaskRepository((IScopeAccessor) provider, CacheHelper, Logger);
|
||||
|
||||
var found = repo.GetTasks(includeClosed: true).ToArray();
|
||||
Assert.AreEqual(15, found.Count());
|
||||
}
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Get_All_With_Node_Id()
|
||||
{
|
||||
CreateTestData(false, 10, -20);
|
||||
CreateTestData(false, 5, -21);
|
||||
|
||||
var provider = TestObjects.GetScopeProvider(Logger);
|
||||
using (var scope = ScopeProvider.CreateScope())
|
||||
{
|
||||
var repo = new TaskRepository((IScopeAccessor) provider, CacheHelper, Logger);
|
||||
|
||||
var found = repo.GetTasks(itemId:-20).ToArray();
|
||||
Assert.AreEqual(10, found.Count());
|
||||
}
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Get_All_Without_Closed()
|
||||
{
|
||||
CreateTestData(false, 10);
|
||||
CreateTestData(true, 5);
|
||||
|
||||
var provider = TestObjects.GetScopeProvider(Logger);
|
||||
using (var scope = ScopeProvider.CreateScope())
|
||||
{
|
||||
var repo = new TaskRepository((IScopeAccessor) provider, CacheHelper, Logger);
|
||||
|
||||
var found = repo.GetTasks(includeClosed: false);
|
||||
Assert.AreEqual(10, found.Count());
|
||||
}
|
||||
}
|
||||
|
||||
private void CreateTestData(bool closed, int count, int entityId = -1)
|
||||
{
|
||||
var provider = TestObjects.GetScopeProvider(Logger);
|
||||
using (var scope = ScopeProvider.CreateScope())
|
||||
{
|
||||
var repo = new TaskRepository((IScopeAccessor) provider, CacheHelper, Logger);
|
||||
|
||||
for (int i = 0; i < count; i++)
|
||||
{
|
||||
repo.Save(new Task(new TaskType("asdfasdf"))
|
||||
{
|
||||
AssigneeUserId = Constants.Security.SuperUserId,
|
||||
Closed = closed,
|
||||
Comment = "hello world " + i,
|
||||
EntityId = entityId,
|
||||
OwnerUserId = Constants.Security.SuperUserId
|
||||
});
|
||||
}
|
||||
|
||||
scope.Complete();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,50 +0,0 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using NUnit.Framework;
|
||||
using Umbraco.Core;
|
||||
using Umbraco.Core.Models;
|
||||
using Umbraco.Core.Persistence.Repositories;
|
||||
using Umbraco.Core.Persistence.Repositories.Implement;
|
||||
using Umbraco.Core.Scoping;
|
||||
using Umbraco.Tests.TestHelpers;
|
||||
using Umbraco.Tests.Testing;
|
||||
|
||||
namespace Umbraco.Tests.Persistence.Repositories
|
||||
{
|
||||
[TestFixture]
|
||||
[UmbracoTest(Database = UmbracoTestOptions.Database.NewSchemaPerTest)]
|
||||
public class TaskTypeRepositoryTest : TestWithDatabaseBase
|
||||
{
|
||||
[Test]
|
||||
public void Can_Delete()
|
||||
{
|
||||
var provider = TestObjects.GetScopeProvider(Logger);
|
||||
using (var scope = ScopeProvider.CreateScope())
|
||||
{
|
||||
var taskType = new TaskType("asdfasdf");
|
||||
var repo = new TaskRepository((IScopeAccessor) provider, CacheHelper, Logger);
|
||||
var taskTypeRepo = new TaskTypeRepository((IScopeAccessor) provider, CacheHelper, Logger);
|
||||
|
||||
var created = DateTime.Now;
|
||||
var task = new Task(taskType)
|
||||
{
|
||||
AssigneeUserId = Constants.Security.SuperUserId,
|
||||
Closed = false,
|
||||
Comment = "hello world",
|
||||
EntityId = -1,
|
||||
OwnerUserId = Constants.Security.SuperUserId
|
||||
};
|
||||
repo.Save(task);
|
||||
|
||||
var alltasktypes = taskTypeRepo.GetMany();
|
||||
|
||||
taskTypeRepo.Delete(taskType);
|
||||
|
||||
Assert.AreEqual(alltasktypes.Count() - 1, taskTypeRepo.GetMany().Count());
|
||||
Assert.AreEqual(0, repo.GetMany().Count());
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -450,35 +450,6 @@ namespace Umbraco.Tests.Persistence
|
||||
}
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Can_Create_cmsTask_Table()
|
||||
{
|
||||
using (var scope = ScopeProvider.CreateScope())
|
||||
{
|
||||
var helper = new DatabaseSchemaCreator(scope.Database, Mock.Of<ILogger>());
|
||||
|
||||
helper.CreateTable<NodeDto>();
|
||||
helper.CreateTable<UserDto>();
|
||||
helper.CreateTable<TaskTypeDto>();
|
||||
helper.CreateTable<TaskDto>();
|
||||
|
||||
scope.Complete();
|
||||
}
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Can_Create_cmsTaskType_Table()
|
||||
{
|
||||
using (var scope = ScopeProvider.CreateScope())
|
||||
{
|
||||
var helper = new DatabaseSchemaCreator(scope.Database, Mock.Of<ILogger>());
|
||||
|
||||
helper.CreateTable<TaskTypeDto>();
|
||||
|
||||
scope.Complete();
|
||||
}
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Can_Create_umbracoUser_Table()
|
||||
{
|
||||
|
||||
@@ -77,7 +77,6 @@ namespace Umbraco.Tests.TestHelpers
|
||||
MockService<ILocalizedTextService>(),
|
||||
MockService<IAuditService>(),
|
||||
MockService<IDomainService>(),
|
||||
MockService<ITaskService>(),
|
||||
MockService<IMacroService>());
|
||||
}
|
||||
|
||||
|
||||
@@ -120,7 +120,6 @@ namespace Umbraco.Tests.TestHelpers
|
||||
|
||||
var externalLoginService = GetLazyService<IExternalLoginService>(container, c => new ExternalLoginService(scopeProvider, logger, eventMessagesFactory, GetRepo<IExternalLoginRepository>(c)));
|
||||
var publicAccessService = GetLazyService<IPublicAccessService>(container, c => new PublicAccessService(scopeProvider, logger, eventMessagesFactory, GetRepo<IPublicAccessRepository>(c)));
|
||||
var taskService = GetLazyService<ITaskService>(container, c => new TaskService(scopeProvider, logger, eventMessagesFactory, GetRepo<ITaskTypeRepository>(c), GetRepo<ITaskRepository>(c)));
|
||||
var domainService = GetLazyService<IDomainService>(container, c => new DomainService(scopeProvider, logger, eventMessagesFactory, GetRepo<IDomainRepository>(c)));
|
||||
var auditService = GetLazyService<IAuditService>(container, c => new AuditService(scopeProvider, logger, eventMessagesFactory, GetRepo<IAuditRepository>(c), GetRepo<IAuditEntryRepository>(c)));
|
||||
|
||||
@@ -190,7 +189,6 @@ namespace Umbraco.Tests.TestHelpers
|
||||
|
||||
return new ServiceContext(
|
||||
publicAccessService,
|
||||
taskService,
|
||||
domainService,
|
||||
auditService,
|
||||
localizedTextService,
|
||||
|
||||
@@ -25,8 +25,8 @@ namespace Umbraco.Tests.UI
|
||||
|
||||
[TestCase(typeof(MemberGroupTasks), Constants.Applications.Members)]
|
||||
[TestCase(typeof(dictionaryTasks), Constants.Applications.Settings)]
|
||||
[TestCase(typeof(macroTasks), Constants.Applications.Developer)]
|
||||
[TestCase(typeof(CreatedPackageTasks), Constants.Applications.Developer)]
|
||||
[TestCase(typeof(macroTasks), Constants.Applications.Packages)]
|
||||
[TestCase(typeof(CreatedPackageTasks), Constants.Applications.Packages)]
|
||||
public void Check_Assigned_Apps_For_Tasks(Type taskType, string app)
|
||||
{
|
||||
var task = (LegacyDialogTask)Activator.CreateInstance(taskType);
|
||||
|
||||
@@ -227,8 +227,6 @@
|
||||
<Compile Include="Persistence\Repositories\DomainRepositoryTest.cs" />
|
||||
<Compile Include="Persistence\Repositories\PartialViewRepositoryTests.cs" />
|
||||
<Compile Include="Persistence\Repositories\PublicAccessRepositoryTest.cs" />
|
||||
<Compile Include="Persistence\Repositories\TaskRepositoryTest.cs" />
|
||||
<Compile Include="Persistence\Repositories\TaskTypeRepositoryTest.cs" />
|
||||
<Compile Include="Composing\ComposingTestBase.cs" />
|
||||
<Compile Include="Routing\RoutesCacheTests.cs" />
|
||||
<Compile Include="Routing\UrlRoutingTestBase.cs" />
|
||||
@@ -263,8 +261,6 @@
|
||||
<Compile Include="Models\PropertyTypeTests.cs" />
|
||||
<Compile Include="Models\RelationTests.cs" />
|
||||
<Compile Include="Models\RelationTypeTests.cs" />
|
||||
<Compile Include="Models\TaskTests.cs" />
|
||||
<Compile Include="Models\TaskTypeTests.cs" />
|
||||
<Compile Include="Models\TemplateTests.cs" />
|
||||
<Compile Include="Models\LightEntityTest.cs" />
|
||||
<Compile Include="Models\UserTests.cs" />
|
||||
|
||||
@@ -644,24 +644,14 @@ angular.module('umbraco.mocks').
|
||||
"templateEditor_usedIfAllEmpty": "Will only be used when the field values above are empty",
|
||||
"templateEditor_usedIfEmpty": "This field will only be used if the primary field is empty",
|
||||
"templateEditor_withTime": "Yes, with time. Seperator: ",
|
||||
"translation_assignedTasks": "Tasks assigned to you",
|
||||
"translation_assignedTasksHelp": " The list below shows translation tasks <strong>assigned to you</strong>. To see a detailed view including comments, click on 'Details' or just the page name. You can also download the page as XML directly by clicking the 'Download Xml' link. <br/> To close a translation task, please go to the Details view and click the 'Close' button. ",
|
||||
"translation_closeTask": "close task",
|
||||
"translation_details": "Translation details",
|
||||
"translation_downloadAllAsXml": "Download all translation tasks as xml",
|
||||
"translation_downloadTaskAsXml": "Download xml",
|
||||
"translation_DownloadXmlDTD": "Download xml DTD",
|
||||
"translation_fields": "Fields",
|
||||
"translation_includeSubpages": "Include subpages",
|
||||
"translation_mailBody": " Hi %0% This is an automated mail to inform you that the document '%1%' has been requested for translation into '%5%' by %2%. Go to http://%3%/translation/details.aspx?id=%4% to edit. Or log into Umbraco to get an overview of your translation tasks http://%3% Have a nice day! Cheers from the Umbraco robot ",
|
||||
"translation_mailSubject": "[%0%] Translation task for %1%",
|
||||
"translation_noTranslators": "No translator users found. Please create a translator user before you start sending content to translation",
|
||||
"translation_ownedTasks": "Tasks created by you",
|
||||
"translation_ownedTasksHelp": " The list below shows pages <strong>created by you</strong>. To see a detailed view including comments, click on 'Details' or just the page name. You can also download the page as XML directly by clicking the 'Download Xml' link. To close a translation task, please go to the Details view and click the 'Close' button. ",
|
||||
"translation_pageHasBeenSendToTranslation": "The page '%0%' has been send to translation",
|
||||
"translation_pageHasBeenSendToTranslation": "The page '%0%' has been send to translation",
|
||||
"translation_sendToTranslate": "Send the page '%0%' to translation",
|
||||
"translation_taskAssignedBy": "Assigned by",
|
||||
"translation_taskOpened": "Task opened",
|
||||
"translation_totalWords": "Total words",
|
||||
"translation_translateTo": "Translate to",
|
||||
"translation_translationDone": "Translation completed.",
|
||||
|
||||
@@ -80,6 +80,7 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="App_Data\" />
|
||||
<Folder Include="Umbraco\Translation\" />
|
||||
<Folder Include="Views\MacroPartials\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -341,7 +342,9 @@
|
||||
<Content Include="Umbraco\endPreview.aspx" />
|
||||
<Content Include="Umbraco\Controls\Tree\TreeControl.ascx" />
|
||||
<Content Include="default.aspx" />
|
||||
<Content Include="Umbraco\Config\Lang\da.xml" />
|
||||
<Content Include="Umbraco\Config\Lang\da.xml">
|
||||
<SubType>Designer</SubType>
|
||||
</Content>
|
||||
<Content Include="Umbraco\Config\Lang\de.xml" />
|
||||
<Content Include="Umbraco\Config\Lang\es.xml" />
|
||||
<Content Include="Umbraco\Config\Lang\fr.xml" />
|
||||
@@ -352,7 +355,6 @@
|
||||
<Content Include="Umbraco\Dialogs\empty.htm" />
|
||||
<Content Include="Umbraco\Dialogs\republish.aspx" />
|
||||
<Content Include="Umbraco\Dialogs\SendPublish.aspx" />
|
||||
<Content Include="Umbraco\Translation\details.aspx" />
|
||||
<Content Include="Umbraco\Developer\Packages\directoryBrowser.aspx" />
|
||||
<Content Include="Umbraco\Developer\Packages\editPackage.aspx" />
|
||||
<Content Include="Umbraco\Dialogs\create.aspx" />
|
||||
@@ -405,7 +407,6 @@
|
||||
<Content Include="Umbraco\PartialViewMacros\Templates\Navigation.cshtml" />
|
||||
<Content Include="Umbraco\PartialViewMacros\Templates\SiteMap.cshtml" />
|
||||
<Content Include="Umbraco\Views\AuthorizeUpgrade.cshtml" />
|
||||
<Content Include="Umbraco\Translation\translationTasks.dtd" />
|
||||
<Content Include="Views\Web.config">
|
||||
<SubType>Designer</SubType>
|
||||
</Content>
|
||||
@@ -436,9 +437,6 @@
|
||||
<Content Include="Umbraco\Masterpages\umbracoPage.Master" />
|
||||
<Content Include="Umbraco\Masterpages\umbracoDialog.Master" />
|
||||
<Content Include="Umbraco\Webservices\CheckForUpgrade.asmx" />
|
||||
<Content Include="Umbraco\Translation\default.aspx" />
|
||||
<Content Include="Umbraco\Translation\preview.aspx" />
|
||||
<Content Include="Umbraco\Translation\xml.aspx" />
|
||||
<Content Include="Umbraco\Create\simple.ascx" />
|
||||
<Content Include="Umbraco\Developer\Macros\editMacro.aspx" />
|
||||
<Content Include="Umbraco\Js\dualSelectBox.js" />
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<language alias="cs" intName="Czech" localName="česky" lcid="5" culture="cs-CZ">
|
||||
<creator>
|
||||
<name>umbraco</name>
|
||||
@@ -62,7 +62,6 @@
|
||||
</area>
|
||||
<area alias="buttons">
|
||||
<key alias="select">Vybrat</key>
|
||||
<key alias="selectCurrentFolder">Vybrat aktuální složku</key>
|
||||
<key alias="somethingElse">Dělat něco jiného</key>
|
||||
<key alias="bold">Tučně</key>
|
||||
<key alias="deindent">Zrušit odsazení odstavce</key>
|
||||
@@ -159,7 +158,6 @@
|
||||
</area>
|
||||
<area alias="media">
|
||||
<key alias="clickToUpload">Klikněte pro nahrání</key>
|
||||
<key alias="dropFilesHere">Upusťte soubory zde...</key>
|
||||
</area>
|
||||
<area alias="create">
|
||||
<key alias="chooseNode">Kde chcete vytvořit nový %0%</key>
|
||||
@@ -185,27 +183,22 @@
|
||||
</area>
|
||||
<area alias="bulk">
|
||||
<key alias="done">Done</key>
|
||||
|
||||
<key alias="deletedItem">Deleted %0% item</key>
|
||||
<key alias="deletedItems">Deleted %0% items</key>
|
||||
<key alias="deletedItemOfItem">Deleted %0% out of %1% item</key>
|
||||
<key alias="deletedItemOfItems">Deleted %0% out of %1% items</key>
|
||||
|
||||
<key alias="publishedItem">Published %0% item</key>
|
||||
<key alias="publishedItems">Published %0% items</key>
|
||||
<key alias="publishedItemOfItem">Published %0% out of %1% item</key>
|
||||
<key alias="publishedItemOfItems">Published %0% out of %1% items</key>
|
||||
|
||||
<key alias="unpublishedItem">Unpublished %0% item</key>
|
||||
<key alias="unpublishedItems">Unpublished %0% items</key>
|
||||
<key alias="unpublishedItemOfItem">Unpublished %0% out of %1% item</key>
|
||||
<key alias="unpublishedItemOfItems">Unpublished %0% out of %1% items</key>
|
||||
|
||||
<key alias="movedItem">Moved %0% item</key>
|
||||
<key alias="movedItems">Moved %0% items</key>
|
||||
<key alias="movedItemOfItem">Moved %0% out of %1% item</key>
|
||||
<key alias="movedItemOfItems">Moved %0% out of %1% items</key>
|
||||
|
||||
<key alias="copiedItem">Copied %0% item</key>
|
||||
<key alias="copiedItems">Copied %0% items</key>
|
||||
<key alias="copiedItemOfItem">Copied %0% out of %1% item</key>
|
||||
@@ -278,7 +271,6 @@
|
||||
<key alias="newtab">Nová záložka</key>
|
||||
<key alias="tab">Záložka</key>
|
||||
<key alias="thumbnail">Miniatura</key>
|
||||
<key alias="hasListView">Povolit zobrazení jako seznam</key>
|
||||
</area>
|
||||
<area alias="editdatatype">
|
||||
<key alias="addPrevalue">Přidat předlohu</key>
|
||||
@@ -314,14 +306,11 @@
|
||||
<key alias="missingTitle">Uveďte, prosím, titulek</key>
|
||||
<key alias="missingType">Vyberte, prosím, typ</key>
|
||||
<key alias="pictureResizeBiggerThanOrg">Chystáte se obrázek zvětšit více, než je jeho původní rozměr. Opravdu chcete pokračovat?</key>
|
||||
<key alias="pythonErrorHeader">Chyba ve skriptu python</key>
|
||||
<key alias="pythonErrorText">Skript python nebyl ještě uložen, protože obsahuje chyby</key>
|
||||
<key alias="startNodeDoesNotExists">Počáteční uzel je odstraněný, kontaktujte, prosím, administrátora</key>
|
||||
<key alias="stylesMustMarkBeforeSelect">Před změnou stylu označte, prosím, obsah</key>
|
||||
<key alias="stylesNoStylesOnPage">Žádne aktivní styly nejsou dostupné</key>
|
||||
<key alias="tableColMergeLeft">Umístěte, prosím, kurzor nalevo od těch dvou buňek, které chcete sloučit</key>
|
||||
<key alias="tableSplitNotSplittable">Nemužete rozdělit buňku, která nebyla sloučená.</key>
|
||||
<key alias="missingPropertyEditorErrorMessage">V nastavení datového typu použitého pro tuto vlastnost je chyba, zkontrolujte, prosím, datový typ</key>
|
||||
</area>
|
||||
<area alias="general">
|
||||
<key alias="about">O...</key>
|
||||
@@ -376,7 +365,6 @@
|
||||
<key alias="logout">Odhlášení</key>
|
||||
<key alias="macro">Makro</key>
|
||||
<key alias="move">Přesunout</key>
|
||||
<key alias="more">Více</key>
|
||||
<key alias="name">Název</key>
|
||||
<key alias="new">Nový</key>
|
||||
<key alias="next">Následující</key>
|
||||
@@ -405,7 +393,8 @@
|
||||
<key alias="showPageOnSend">Zobrazit stránku při odeslání</key>
|
||||
<key alias="size">Rozměr</key>
|
||||
<key alias="sort">Seřadit</key>
|
||||
<key alias="submit">Submit</key> <!-- TODO: Translate this -->
|
||||
<key alias="submit">Submit</key>
|
||||
<!-- TODO: Translate this -->
|
||||
<key alias="type">Typ</key>
|
||||
<key alias="typeToSearch">Pro hledání pište...</key>
|
||||
<key alias="up">Nahoru</key>
|
||||
@@ -548,7 +537,6 @@
|
||||
<key alias="renewSession">Obnovte nyní pro uložení práce</key>
|
||||
</area>
|
||||
<area alias="login">
|
||||
<key alias="greeting0">Šťastnou super neděli</key>
|
||||
<key alias="greeting1">Šťastné šílené pondělí</key>
|
||||
<key alias="greeting2">Šťastné husté úterý</key>
|
||||
<key alias="greeting3">Šťastnou překrásnou středu</key>
|
||||
@@ -680,11 +668,9 @@
|
||||
<key alias="paSimpleHelp">Jestliže chcete nastavit jenom jednoduchou ochranu prostřednictvím uživatelského jména a hesla</key>
|
||||
</area>
|
||||
<area alias="publish">
|
||||
<key alias="contentPublishedFailedAwaitingRelease">
|
||||
<![CDATA[
|
||||
<key alias="contentPublishedFailedAwaitingRelease"><![CDATA[
|
||||
%0% nemůže být publikována, protože položka je naplánovaná k uvolnění.
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedInvalid"><![CDATA[
|
||||
%0% nemůže být publikována, protože tyto vlastnosti: %1% nesplňují validační pravidla.
|
||||
]]></key>
|
||||
@@ -807,10 +793,6 @@
|
||||
<key alias="fileSavedHeader">Soubor byl uložen</key>
|
||||
<key alias="fileSavedText">Soubor byl uložen bez chyb</key>
|
||||
<key alias="languageSaved">Jazyk byl uložen</key>
|
||||
<key alias="pythonErrorHeader">Skript python nebyl uložen</key>
|
||||
<key alias="pythonErrorText">Skript python nemohl být uložen kvůli chybě</key>
|
||||
<key alias="pythonSavedHeader">Skript python byl uložen</key>
|
||||
<key alias="pythonSavedText">Ve skriptu python nejsou žádné chyby</key>
|
||||
<key alias="templateErrorHeader">Šablona nebyla uložena</key>
|
||||
<key alias="templateErrorText">Ujistěte se, prosím, že nemáte 2 šablony se stejným aliasem</key>
|
||||
<key alias="templateSavedHeader">Šablona byla uložena</key>
|
||||
@@ -841,27 +823,20 @@
|
||||
<key alias="template">Šablona</key>
|
||||
</area>
|
||||
<area alias="grid">
|
||||
<key alias="rte">Rich Text Editor</key>
|
||||
<key alias="media">Image</key>
|
||||
<key alias="macro">Macro</key>
|
||||
<key alias="embed">Embed</key>
|
||||
<key alias="headline">Headline</key>
|
||||
<key alias="quote">Quote</key>
|
||||
<key alias="insertControl">Choose type of content</key>
|
||||
<key alias="chooseLayout">Choose a layout</key>
|
||||
<key alias="addRows">Add a row</key>
|
||||
<key alias="addElement">Add content</key>
|
||||
<key alias="dropElement">Drop content</key>
|
||||
<key alias="settingsApplied">Settings applied</key>
|
||||
|
||||
<key alias="contentNotAllowed">This content is not allowed here</key>
|
||||
<key alias="contentAllowed">This content is allowed here</key>
|
||||
|
||||
<key alias="clickToEmbed">Click to embed</key>
|
||||
<key alias="clickToInsertImage">Click to insert image</key>
|
||||
<key alias="placeholderImageCaption">Image caption...</key>
|
||||
<key alias="placeholderWriteHere">Write here...</key>
|
||||
|
||||
<key alias="gridLayouts">Grid Layouts</key>
|
||||
<key alias="gridLayoutsDetail">Layouts are the overall work area for the grid editor, usually you only need one or two different layouts</key>
|
||||
<key alias="addGridLayout">Add Grid Layout</key>
|
||||
@@ -876,7 +851,6 @@
|
||||
<key alias="settingsDetails">Configure what settings editors can change</key>
|
||||
<key alias="styles">Styles</key>
|
||||
<key alias="stylesDetails">Configure what styling editors can change</key>
|
||||
<key alias="settingDialogDetails">Settings will only save if the entered json configuration is valid</key>
|
||||
<key alias="allowAllEditors">Allow all editors</key>
|
||||
<key alias="allowAllRowConfigurations">Allow all row configurations</key>
|
||||
</area>
|
||||
@@ -909,15 +883,7 @@
|
||||
<key alias="withTime">Ano, s časem. Oddělovač: </key>
|
||||
</area>
|
||||
<area alias="translation">
|
||||
<key alias="assignedTasks">Úlohy přidělené Vám</key>
|
||||
<key alias="assignedTasksHelp"><![CDATA[ Seznam níže zobrazuje překladatelské úlohy <strong>přidělené Vám</strong>. Chcete-li vidět podrobné zobrazení včetně komentářů, klikněte na "Podrobnosti" nebo pouze na název stránky.
|
||||
Můžete také přímo stáhnout stránku jako XML kliknutím na odkaz "Stáhnout Xml". <br/>
|
||||
Pro zavření překladatelské úlohy přejděte, prosím, na zobrazení Podrobnosti a klikněte na tlačítko "Zavřít".
|
||||
]]></key>
|
||||
<key alias="closeTask">zavřít úlohu</key>
|
||||
<key alias="details">Podrobnosti překladu</key>
|
||||
<key alias="downloadAllAsXml">Stáhnout všechny překladatelské úlohy jako xml</key>
|
||||
<key alias="downloadTaskAsXml">Stáhnout xml</key>
|
||||
<key alias="DownloadXmlDTD">Stáhnout xml DTD</key>
|
||||
<key alias="fields">Pole</key>
|
||||
<key alias="includeSubpages">Zahrnout podstránky</key>
|
||||
@@ -936,16 +902,9 @@
|
||||
|
||||
Zdraví umbraco robot
|
||||
]]></key>
|
||||
<key alias="mailSubject">[%0%] Překladatelská úloha pro %1%</key>
|
||||
<key alias="noTranslators">Žádní uživatelé překladatelé nebyli nalezeni. Vytvořte, prosím, překladatele před tím, než začnete posílat obsah k překladu</key>
|
||||
<key alias="ownedTasks">Úlohy vytvořené Vámi</key>
|
||||
<key alias="ownedTasksHelp"><![CDATA[Seznam níže zobrazuje stránky <strong>vytvořené Vámi</strong>. Chcete-li vidět podrobné zobrazení včetně komentářů, klikněte na "Podrobnosti" nebo pouze na název stránky. Můžete také přímo stáhnout stránku jako XML kliknutím na odkaz "Stáhnout Xml".
|
||||
Pro zavření překladatelské úlohy přejděte, prosím, na zobrazení Podrobnosti a klikněte na tlačítko "Zavřít".
|
||||
]]></key>
|
||||
<key alias="pageHasBeenSendToTranslation">Stránka '%0%' byla poslána k překladu</key>
|
||||
<key alias="sendToTranslate">Poslat stránku '%0%' k překladu</key>
|
||||
<key alias="taskAssignedBy">Přiděleno uživatelem</key>
|
||||
<key alias="taskOpened">Otevřené úlohy</key>
|
||||
<key alias="totalWords">Slov celkem</key>
|
||||
<key alias="translateTo">Přeložit do</key>
|
||||
<key alias="translationDone">Překlad hotov.</key>
|
||||
@@ -975,7 +934,6 @@
|
||||
<key alias="documentTypes">Typy dokumentů</key>
|
||||
<key alias="packager">Balíčky</key>
|
||||
<key alias="packages">Balíčky</key>
|
||||
<key alias="python">Soubory python</key>
|
||||
<key alias="repositories">Instalovat z úložiště</key>
|
||||
<key alias="runway">Instalovat Runway</key>
|
||||
<key alias="runwayModules">Moduly Runway</key>
|
||||
@@ -1036,4 +994,4 @@
|
||||
<key alias="yourHistory" version="7.0">Vaše nedávná historie</key>
|
||||
<key alias="sessionExpires" version="7.0">Relace vyprší za</key>
|
||||
</area>
|
||||
</language>
|
||||
</language>
|
||||
@@ -91,16 +91,13 @@
|
||||
<key alias="domainHelp">f.eks. ditdomaene.com, www.ditdomaene.com</key>
|
||||
<key alias="inherit">Nedarv</key>
|
||||
<key alias="setLanguage">Sprog</key>
|
||||
<key alias="setLanguageHelp">
|
||||
<![CDATA[Indstil sproget for noder under den aktuelle node,<br /> eller nedarv sprog fra forældre noder. Gælder også<br />
|
||||
for den aktuelle node, medmindre et domæne nedenfor også indstiller et sprog.]]>
|
||||
</key>
|
||||
<key alias="setLanguageHelp"><![CDATA[Indstil sproget for noder under den aktuelle node,<br /> eller nedarv sprog fra forældre noder. Gælder også<br />
|
||||
for den aktuelle node, medmindre et domæne nedenfor også indstiller et sprog.]]></key>
|
||||
<key alias="setDomains">Domæner</key>
|
||||
</area>
|
||||
<area alias="buttons">
|
||||
<key alias="clearSelection">Ryd valg</key>
|
||||
<key alias="select">Vælg</key>
|
||||
<key alias="selectCurrentFolder">Vælg nuværende mappe</key>
|
||||
<key alias="somethingElse">Gør noget andet</key>
|
||||
<key alias="bold">Fed</key>
|
||||
<key alias="deindent">Fortryd indryk afsnit</key>
|
||||
@@ -130,7 +127,6 @@
|
||||
<key alias="styleChoose">Vælg formattering</key>
|
||||
<key alias="styleShow">Vis koder</key>
|
||||
<key alias="tableInsert">Indsæt tabel</key>
|
||||
<key alias="generateModels">Generer modeller</key>
|
||||
<key alias="saveAndGenerateModels">Gem og generer modeller</key>
|
||||
<key alias="undo">Fortryd</key>
|
||||
<key alias="redo">Genskab</key>
|
||||
@@ -217,7 +213,6 @@
|
||||
<key alias="publish">Udgiv</key>
|
||||
<key alias="published">Udgivet</key>
|
||||
<key alias="publishedPendingChanges">Udgivet (Ventede ændringer)</key>
|
||||
<key alias="publish">Udgivet</key>
|
||||
<key alias="publishStatus">Udgivelsesstatus</key>
|
||||
<key alias="releaseDate">Udgivelsesdato</key>
|
||||
<key alias="unpublishDate">Afpubliceringsdato</key>
|
||||
@@ -248,21 +243,18 @@
|
||||
<key alias="contentRoot">Indholdsrod</key>
|
||||
</area>
|
||||
<area alias="blueprints">
|
||||
<key alias="createBlueprintFrom">Opret en ny indholdsskabelon fra '%0%'</key>
|
||||
<key alias="blankBlueprint">Blank</key>
|
||||
<key alias="selectBlueprint">Vælg en indholdsskabelon</key>
|
||||
<key alias="createdBlueprintHeading">Indholdsskabelon oprettet</key>
|
||||
<key alias="createdBlueprintMessage">En indholdsskabelon blev oprettet fra '%0%'</key>
|
||||
<key alias="duplicateBlueprintMessage">En anden indholdsskabelon med samme navn eksisterer allerede</key>
|
||||
<key alias="blueprintDescription">En indholdskabelon er foruddefineret indhold, som en redaktør kan vælge at bruge som grundlag for at oprette nyt indhold</key>
|
||||
<key alias="createBlueprintFrom">Opret en ny indholdsskabelon fra '%0%'</key>
|
||||
<key alias="blankBlueprint">Blank</key>
|
||||
<key alias="selectBlueprint">Vælg en indholdsskabelon</key>
|
||||
<key alias="createdBlueprintHeading">Indholdsskabelon oprettet</key>
|
||||
<key alias="createdBlueprintMessage">En indholdsskabelon blev oprettet fra '%0%'</key>
|
||||
<key alias="duplicateBlueprintMessage">En anden indholdsskabelon med samme navn eksisterer allerede</key>
|
||||
<key alias="blueprintDescription">En indholdskabelon er foruddefineret indhold, som en redaktør kan vælge at bruge som grundlag for at oprette nyt indhold</key>
|
||||
</area>
|
||||
<area alias="media">
|
||||
<key alias="clickToUpload">Klik for at uploade</key>
|
||||
<key alias="dropFilesHere">Slip filerne her...</key>
|
||||
<key alias="urls">Link til medie</key>
|
||||
<key alias="orClickHereToUpload">eller klik her for at vælge filer</key>
|
||||
<key alias="dragFilesHereToUpload">Du kan trække filer herind for at uploade</key>
|
||||
<key alias="onlyAllowedFiles">Tilladte filtyper er kun</key>
|
||||
<key alias="disallowedFileType">Kan ikke uploade denne fil, den har ikke en godkendt filtype</key>
|
||||
<key alias="maxFileSize">Maks filstørrelse er</key>
|
||||
<key alias="mediaRoot">Medie rod</key>
|
||||
@@ -283,10 +275,8 @@
|
||||
<key alias="newDataType">Ny datatype</key>
|
||||
<key alias="newJavascriptFile">Ny JavaScript-fil</key>
|
||||
<key alias="newEmptyPartialView">Ny tom partial view</key>
|
||||
<key alias="newFolder">Ny mappe</key>
|
||||
<key alias="newPartialViewMacro">Ny partial view makro</key>
|
||||
<key alias="newPartialViewFromSnippet">Ny partial view fra snippet</key>
|
||||
<key alias="newEmptyPartialViewMacro">Ny tom partial view makro</key>
|
||||
<key alias="newPartialViewMacroFromSnippet">Ny partial view makro fra snippet</key>
|
||||
<key alias="newPartialViewMacroNoMacro">Ny partial view makro (uden makro)</key>
|
||||
</area>
|
||||
@@ -307,27 +297,22 @@
|
||||
</area>
|
||||
<area alias="bulk">
|
||||
<key alias="done">Færdig</key>
|
||||
|
||||
<key alias="deletedItem">Slettede %0% element</key>
|
||||
<key alias="deletedItems">Slettede %0% elementer</key>
|
||||
<key alias="deletedItemOfItem">Slettede %0% ud af %1% element</key>
|
||||
<key alias="deletedItemOfItems">Slettede %0% ud af %1% elementer</key>
|
||||
|
||||
<key alias="publishedItem">Udgav %0% element</key>
|
||||
<key alias="publishedItems">Udgav %0% elementer</key>
|
||||
<key alias="publishedItemOfItem">Udgav %0% ud af %1% element</key>
|
||||
<key alias="publishedItemOfItems">Udgav %0% ud af %1% elementer</key>
|
||||
|
||||
<key alias="unpublishedItem">Fjernede %0% element fra udgivelse</key>
|
||||
<key alias="unpublishedItems">Fjernede %0% elementer fra udgivelse</key>
|
||||
<key alias="unpublishedItemOfItem">Fjernede %0% ud af %1% element fra udgivelse</key>
|
||||
<key alias="unpublishedItemOfItems">Fjernede %0% ud af %1% elementer fra udgivelse</key>
|
||||
|
||||
<key alias="movedItem">Flyttede %0% element</key>
|
||||
<key alias="movedItems">Flyttede %0% elementer</key>
|
||||
<key alias="movedItemOfItem">Flyttede %0% ud af %1% element</key>
|
||||
<key alias="movedItemOfItems">Flyttede %0% ud af %1% elementer</key>
|
||||
|
||||
<key alias="copiedItem">Kopierede %0% element</key>
|
||||
<key alias="copiedItems">Kopierede %0% elementer</key>
|
||||
<key alias="copiedItemOfItem">Kopierede %0% ud af %1% element</key>
|
||||
@@ -383,13 +368,11 @@
|
||||
<key alias="thumbnailimageclickfororiginal">Klik på billedet for at se den fulde størrelse</key>
|
||||
<key alias="treepicker">Vælg</key>
|
||||
<key alias="viewCacheItem">Se cache element</key>
|
||||
<key alias="createFolder">Opret mappe...</key>
|
||||
<key alias="relateToOriginalLabel">Relatér til original</key>
|
||||
<key alias="includeDescendants">Inkludér undersider</key>
|
||||
<key alias="linkToPage">Link til side</key>
|
||||
<key alias="openInNewWindow">Åben linket i et nyt vindue eller fane</key>
|
||||
<key alias="linkToMedia">Link til medie</key>
|
||||
<key alias="linkToFile">Link til fil</key>
|
||||
<key alias="selectContentStartNode">Vælg indhold startnode</key>
|
||||
<key alias="selectMedia">Vælg medie</key>
|
||||
<key alias="selectIcon">Vælg ikon</key>
|
||||
@@ -413,19 +396,14 @@
|
||||
<key alias="selectSnippet">Vælg snippet</key>
|
||||
</area>
|
||||
<area alias="dictionaryItem">
|
||||
<key alias="description">
|
||||
<![CDATA[
|
||||
<key alias="description"><![CDATA[
|
||||
Rediger de forskellige sprogversioner for ordbogselementet '%0%' herunder.<br />Du tilføjer flere sprog under 'sprog' i menuen til venstre </key>
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="displayName">Kulturnavn</key>
|
||||
<key alias="changeKey">Rediger navnet på ordbogselementet.</key>
|
||||
<key alias="changeKeyError">
|
||||
<![CDATA[
|
||||
<key alias="changeKeyError"><![CDATA[
|
||||
Navnet '%0%' eksisterer allerede.
|
||||
]]>
|
||||
</key>
|
||||
<key alias="overviewTitle">Ordbog</key>
|
||||
]]></key>
|
||||
<key alias="overviewTitle">Ordbog</key>
|
||||
</area>
|
||||
<area alias="placeholders">
|
||||
<key alias="username">Indtast dit brugernavn</key>
|
||||
@@ -445,20 +423,13 @@
|
||||
<key alias="usernameHint">Dit brugernavn er typisk din e-mailadresse</key>
|
||||
</area>
|
||||
<area alias="editcontenttype">
|
||||
<key alias="allowAtRoot" version="7.2">Tillad på rodniveau</key>
|
||||
<key alias="allowAtRootDesc" version="7.2">Kun dokumenttyper med denne indstilling aktiveret oprettes i rodniveau under Inhold og Mediearkiv</key>
|
||||
<key alias="allowedchildnodetypes">Tilladte typer</key>
|
||||
<key alias="contenttypecompositions">Sammensætning af dokumenttyper</key>
|
||||
<key alias="create">Opret</key>
|
||||
<key alias="deletetab">Slet fane</key>
|
||||
<key alias="description">Beskrivelse</key>
|
||||
<key alias="newtab">Ny fane</key>
|
||||
<key alias="tab">Fane</key>
|
||||
<key alias="thumbnail">Thumbnail</key>
|
||||
<key alias="hasListView">Aktiver listevisning</key>
|
||||
<key alias="hasListViewDesc" version="7.2">Viser undersider i en søgbar liste, undersider vises ikke i indholdstræet</key>
|
||||
<key alias="currentListView" version="7.2">Nuværende listevisning</key>
|
||||
<key alias="currentListViewDesc" version="7.2">Den aktive listevisningsdatatype</key>
|
||||
<key alias="createListView" version="7.2">Opret brugerdefineret listevisning</key>
|
||||
<key alias="removeListView" version="7.2">Fjern brugerdefineret listevisning</key>
|
||||
</area>
|
||||
@@ -509,14 +480,11 @@
|
||||
<key alias="missingTitle">Skriv venligst en titel</key>
|
||||
<key alias="missingType">Du skal vælge en type</key>
|
||||
<key alias="pictureResizeBiggerThanOrg">Du er ved at gøre billedet større end originalen. Det vil forringe kvaliteten af billedet. Ønsker du at fortsætte?</key>
|
||||
<key alias="pythonErrorHeader">Fejl i Python-script</key>
|
||||
<key alias="pythonErrorText">Python-scriptet er ikke blevet gemt, fordi det indeholder fejl</key>
|
||||
<key alias="startNodeDoesNotExists">Startnode er slettet, kontakt systemadministrator</key>
|
||||
<key alias="stylesMustMarkBeforeSelect">Du skal markere noget indhold, før du kan ændre stylen</key>
|
||||
<key alias="stylesNoStylesOnPage">Der er ingen aktive styles eller formatteringer på denne side</key>
|
||||
<key alias="tableColMergeLeft">Du skal stå til venstre for de 2 celler du ønsker at samle!</key>
|
||||
<key alias="tableSplitNotSplittable">Du kan ikke opdele en celle, som ikke allerede er delt.</key>
|
||||
<key alias="missingPropertyEditorErrorMessage">Der er et problem med den datatype, der bruges til denn egenskab. Kontroller konfigurationen og prøv igen.</key>
|
||||
</area>
|
||||
<area alias="general">
|
||||
<key alias="about">Om</key>
|
||||
@@ -580,7 +548,6 @@
|
||||
<key alias="mandatory">Påkrævet</key>
|
||||
<key alias="message">Besked</key>
|
||||
<key alias="move">Flyt</key>
|
||||
<key alias="more">Mere</key>
|
||||
<key alias="name">Navn</key>
|
||||
<key alias="new">Ny</key>
|
||||
<key alias="next">Næste</key>
|
||||
@@ -643,19 +610,11 @@
|
||||
<key alias="saving">Gemmer...</key>
|
||||
<key alias="current">nuværende</key>
|
||||
<key alias="embed">Indlejring</key>
|
||||
<key alias="retrieve">Hent</key>
|
||||
<key alias="selected">valgt</key>
|
||||
</area>
|
||||
|
||||
<area alias="colors">
|
||||
<key alias="black">Sort</key>
|
||||
<key alias="green">Grøn</key>
|
||||
<key alias="yellow">Gul</key>
|
||||
<key alias="orange">Orange</key>
|
||||
<key alias="blue">Blå</key>
|
||||
<key alias="red">Rød</key>
|
||||
</area>
|
||||
|
||||
<area alias="shortcuts">
|
||||
<key alias="addTab">Tilføj fane</key>
|
||||
<key alias="addProperty">Tilføj egenskab</key>
|
||||
@@ -663,28 +622,21 @@
|
||||
<key alias="addTemplate">Tilføj skabelon</key>
|
||||
<key alias="addChildNode">Tilføj child node</key>
|
||||
<key alias="addChild">Tilføj child</key>
|
||||
|
||||
<key alias="editDataType">Rediger datatype</key>
|
||||
|
||||
<key alias="navigateSections">Naviger sektioner</key>
|
||||
|
||||
<key alias="shortcut">Genveje</key>
|
||||
<key alias="showShortcuts">Vis genveje</key>
|
||||
|
||||
<key alias="toggleListView">Brug listevisning</key>
|
||||
<key alias="toggleAllowAsRoot">Tillad på rodniveau</key>
|
||||
|
||||
<key alias="commentLine">Comment/Uncomment lines</key>
|
||||
<key alias="removeLine">Remove line</key>
|
||||
<key alias="copyLineUp">Copy Lines Up</key>
|
||||
<key alias="copyLineDown">Copy Lines Down</key>
|
||||
<key alias="moveLineUp">Move Lines Up</key>
|
||||
<key alias="moveLineDown">Move Lines Down</key>
|
||||
|
||||
<key alias="generalHeader">General</key>
|
||||
<key alias="editorHeader">Editor</key>
|
||||
</area>
|
||||
|
||||
<area alias="graphicheadline">
|
||||
<key alias="backgroundcolor">Baggrundsfarve</key>
|
||||
<key alias="bold">Fed</key>
|
||||
@@ -700,17 +652,12 @@
|
||||
<key alias="databaseErrorWebConfig">Kunne ikke gemme web.config filen. Du bedes venligst manuelt ændre database forbindelses strengen.</key>
|
||||
<key alias="databaseFound">Din database er blevet fundet og identificeret som</key>
|
||||
<key alias="databaseHeader">Database konfiguration</key>
|
||||
<key alias="databaseInstall">
|
||||
<![CDATA[
|
||||
<key alias="databaseInstall"><![CDATA[
|
||||
Klik på <strong>installér</strong> knappen for at installere Umbraco %0% databasen
|
||||
]]>
|
||||
</key>
|
||||
<key alias="databaseInstall"><![CDATA[Tryk på <strong>installér</strong> knappen for at installere Umbraco %0% databasen]]></key>
|
||||
]]></key>
|
||||
<key alias="databaseInstallDone"><![CDATA[Umbraco %0% er nu blevet kopieret til din database. Tryk på <string>Næste</strong> for at fortsætte.]]></key>
|
||||
<key alias="databaseNotFound">
|
||||
<![CDATA[<p>Databasen er ikke fundet. Kontrollér venligst at informationen i database forbindelsesstrengen i "web.config" filen er korrekt.</p>
|
||||
<p>For at fortsætte bedes du venligst rette "web.config" filen (ved at bruge Visual Studio eller dit favoritprogram), scroll til bunden, tilføj forbindelsesstrengen til din database i feltet som hedder "umbracoDbDSN" og gem filen.</p><p>Klik på <strong>Forsøg igen</strong> knappen når du er færdig.<br/><a href="https://our.umbraco.com/documentation/Using-Umbraco/Config-files/webconfig7" target="_blank">Mere information om at redigere web.config her.</a></p>]]>
|
||||
</key>
|
||||
<key alias="databaseNotFound"><![CDATA[<p>Databasen er ikke fundet. Kontrollér venligst at informationen i database forbindelsesstrengen i "web.config" filen er korrekt.</p>
|
||||
<p>For at fortsætte bedes du venligst rette "web.config" filen (ved at bruge Visual Studio eller dit favoritprogram), scroll til bunden, tilføj forbindelsesstrengen til din database i feltet som hedder "umbracoDbDSN" og gem filen.</p><p>Klik på <strong>Forsøg igen</strong> knappen når du er færdig.<br/><a href="https://our.umbraco.com/documentation/Using-Umbraco/Config-files/webconfig7" target="_blank">Mere information om at redigere web.config her.</a></p>]]></key>
|
||||
<key alias="databaseText"><![CDATA[For at afslutte dette skridt er du nødt til at have nogle informationer om din database parat ("database forbindelsesstrengen").<br/>Kontakt venligst din ISP hvis det er nødvendigt. Hvis du installerer på en lokal maskine eller server kan du muligvis få informationerne fra din systemadministrator.]]></key>
|
||||
<key alias="databaseUpgrade"><![CDATA[<p>Tryk på <strong>Opgradér</strong> knappen for at opgradere din database til Umbraco %0%</p><p>Bare rolig - intet indhold vil blive slettet og alt vil stadig fungere bagefter!</p>]]></key>
|
||||
<key alias="databaseUpgradeDone"><![CDATA[Din database er blevet opgraderet til den endelige version %0%.<br/>Tryk på <strong>Næste</strong> for at fortsætte.]]></key>
|
||||
@@ -755,10 +702,8 @@
|
||||
<key alias="theEndFurtherHelp"><![CDATA[<h3>Yderligere hjælpe og informationer</h3> Få hjælp fra vores prisvindende fællesskab, gennemse dokumentationen eller se nogle gratis videoer om hvordan du opsætter et simpelt site, hvordan du bruger pakker og en 'quick guide' til Umbraco terminologier]]></key>
|
||||
<key alias="theEndHeader">Umbraco %0% er installeret og klar til brug</key>
|
||||
<key alias="theEndInstallFailed"><![CDATA[For at afslutte installationen er du nødt til manuelt at rette <strong>/web.config filen</strong> og opdatére 'AppSetting' feltet <strong>UmbracoConfigurationStatus</strong> i bunden til <strong>'%0%'</strong>.]]></key>
|
||||
<key alias="theEndInstallSuccess">
|
||||
<![CDATA[Du kan <strong>komme igang med det samme</strong> ved at klikke på "Start Umbraco" knappen nedenfor.<br/>Hvis du er <strong>ny med Umbraco</strong>, kan du finde masser af ressourcer på vores 'getting started' sider.
|
||||
]]>
|
||||
</key>
|
||||
<key alias="theEndInstallSuccess"><![CDATA[Du kan <strong>komme igang med det samme</strong> ved at klikke på "Start Umbraco" knappen nedenfor.<br/>Hvis du er <strong>ny med Umbraco</strong>, kan du finde masser af ressourcer på vores 'getting started' sider.
|
||||
]]></key>
|
||||
<key alias="theEndOpenUmbraco"><![CDATA[<h3>Start Umbraco</h3>For at administrere dit website skal du blot åbne Umbraco administrationen og begynde at tilføje indhold, opdatere skabelonerne og stylesheets'ene eller tilføje ny funktionalitet.]]></key>
|
||||
<key alias="Unavailable">Forbindelse til databasen fejlede.</key>
|
||||
<key alias="Version3">Umbraco Version 3</key>
|
||||
@@ -775,7 +720,6 @@
|
||||
<key alias="renewSession">Forny for at gemme dine ændringer</key>
|
||||
</area>
|
||||
<area alias="login">
|
||||
<key alias="greeting0">Så er det søndag!</key>
|
||||
<key alias="greeting1">Smil, det er mandag!</key>
|
||||
<key alias="greeting2">Hurra, det er tirsdag!</key>
|
||||
<key alias="greeting3">Hvilken herlig onsdag!</key>
|
||||
@@ -783,7 +727,6 @@
|
||||
<key alias="greeting5">Endelig fredag!</key>
|
||||
<key alias="greeting6">Glædelig lørdag</key>
|
||||
<key alias="instruction">Log ind nedenfor</key>
|
||||
<key alias="instruction">indtast brugernavn og kodeord</key>
|
||||
<key alias="signInWith">Log ind med</key>
|
||||
<key alias="timeout">Din session er udløbet</key>
|
||||
<key alias="bottomText"><![CDATA[<p style="text-align:right;">© 2001 - %0% <br /><a href="http://umbraco.com" style="text-decoration: none" target="_blank">umbraco.com</a></p> ]]></key>
|
||||
@@ -797,9 +740,7 @@
|
||||
<key alias="setPasswordConfirmation">Din adgangskode er blevet opdateret</key>
|
||||
<key alias="resetCodeExpired">Det link, du har klikket på, er ugyldigt eller udløbet</key>
|
||||
<key alias="resetPasswordEmailCopySubject">Umbraco: Nulstil adgangskode</key>
|
||||
<key alias="resetPasswordEmailCopyFormat">
|
||||
<![CDATA[<p>Dit brugernavn til at logge på Umbraco backoffice er: <strong>%0%</strong></p><p>Klik <a href="%1%"><strong>her</strong></a> for at nulstille din adgangskode eller kopier/indsæt denne URL i din browser:</p><p><em>%1%</em></p>]]>
|
||||
</key>
|
||||
<key alias="resetPasswordEmailCopyFormat"><![CDATA[<p>Dit brugernavn til at logge på Umbraco backoffice er: <strong>%0%</strong></p><p>Klik <a href="%1%"><strong>her</strong></a> for at nulstille din adgangskode eller kopier/indsæt denne URL i din browser:</p><p><em>%1%</em></p>]]></key>
|
||||
</area>
|
||||
<area alias="main">
|
||||
<key alias="dashboard">Skrivebord</key>
|
||||
@@ -822,8 +763,7 @@
|
||||
</area>
|
||||
<area alias="notifications">
|
||||
<key alias="editNotifications">Rediger dine notificeringer for %0%</key>
|
||||
<key alias="mailBody">
|
||||
<![CDATA[
|
||||
<key alias="mailBody"><![CDATA[
|
||||
Hej %0%
|
||||
|
||||
Dette er en automatisk mail for at fortælle at handlingen '%1%'
|
||||
@@ -835,15 +775,12 @@ Gå til http://%4%/#/content/content/edit/%5% for at redigere.
|
||||
Ha' en dejlig dag!
|
||||
|
||||
Mange hilsner fra Umbraco robotten
|
||||
]]>
|
||||
</key>
|
||||
<key alias="mailBodyHtml">
|
||||
<![CDATA[<p>Hej %0%</p>
|
||||
]]></key>
|
||||
<key alias="mailBodyHtml"><![CDATA[<p>Hej %0%</p>
|
||||
<p>Dette er en automatisk mail for at informere dig om at opgaven <strong>'%1%'</strong>
|
||||
er blevet udførtpå siden <a href="http://%4%/#/content/content/edit/%5%"><strong>'%2%'</strong></a> af brugeren <strong>'%3%'</strong> </p>
|
||||
<div style="margin: 8px 0; padding: 8px; display: block;"> <br />
|
||||
<a style="color: white; font-weight: bold; background-color: #5372c3; text-decoration : none; margin-right: 20px; border: 8px solid #5372c3; width: 150px;" href="http://%4%/#/content/content/edit/%5%"> RET </a> <br /> </div> <p> <h3>Opdateringssammendrag:</h3> <table style="width: 100%;"> %6% </table> </p> <div style="margin: 8px 0; padding: 8px; display: block;"> <br /> <a style="color: white; font-weight: bold; background-color: #66cc66; text-decoration : none; margin-right: 20px; border: 8px solid #66cc66; width: 150px;" href="http://%4%/actions/publish.aspx?id=%5%"> PUBLISÉR </a> <a style="color: white; font-weight: bold; background-color: #5372c3; text-decoration : none; margin-right: 20px; border: 8px solid #5372c3; width: 150px;" href="http://%4%/#/content/content/edit/%5%"> RET </a> <a style="color: white; font-weight: bold; background-color: #ca4a4a; text-decoration : none; margin-right: 20px; border: 8px solid #ca4a4a; width: 150px;" href="http://%4%/actions/delete.aspx?id=%5%"> SLET </a> <br /> </div> <p>Hav en fortsat god dag!<br /><br /> De bedste hilsner fra umbraco robotten </p>]]>
|
||||
</key>
|
||||
<a style="color: white; font-weight: bold; background-color: #5372c3; text-decoration : none; margin-right: 20px; border: 8px solid #5372c3; width: 150px;" href="http://%4%/#/content/content/edit/%5%"> RET </a> <br /> </div> <p> <h3>Opdateringssammendrag:</h3> <table style="width: 100%;"> %6% </table> </p> <div style="margin: 8px 0; padding: 8px; display: block;"> <br /> <a style="color: white; font-weight: bold; background-color: #66cc66; text-decoration : none; margin-right: 20px; border: 8px solid #66cc66; width: 150px;" href="http://%4%/actions/publish.aspx?id=%5%"> PUBLISÉR </a> <a style="color: white; font-weight: bold; background-color: #5372c3; text-decoration : none; margin-right: 20px; border: 8px solid #5372c3; width: 150px;" href="http://%4%/#/content/content/edit/%5%"> RET </a> <a style="color: white; font-weight: bold; background-color: #ca4a4a; text-decoration : none; margin-right: 20px; border: 8px solid #ca4a4a; width: 150px;" href="http://%4%/actions/delete.aspx?id=%5%"> SLET </a> <br /> </div> <p>Hav en fortsat god dag!<br /><br /> De bedste hilsner fra umbraco robotten </p>]]></key>
|
||||
<key alias="mailSubject">[%0%] Notificering om %1% udført på %2%</key>
|
||||
<key alias="notifications">Notificeringer</key>
|
||||
</area>
|
||||
@@ -897,10 +834,8 @@ Mange hilsner fra Umbraco robotten
|
||||
<key alias="packageUninstalledHeader">Pakken blev fjernet</key>
|
||||
<key alias="packageUninstalledText">Pakken er på succesfuld vis blevet fjernet</key>
|
||||
<key alias="packageUninstallHeader">Afinstallér pakke</key>
|
||||
<key alias="packageUninstallText">
|
||||
<![CDATA[Du kan fjerne markeringen på elementer du ikke ønsker at fjerne, på dette tidspunkt, nedenfor. Når du klikker 'bekræft' vil alle afkrydsede elemenet blive fjernet <br/>
|
||||
<span style="color: Red; font-weight: bold;">Bemærk:</span> at dokumenter og medier som afhænger af denne pakke vil muligvis holde op med at virke, så vær forsigtig. Hvis i tvivl, kontakt personen som har udviklet pakken.]]>
|
||||
</key>
|
||||
<key alias="packageUninstallText"><![CDATA[Du kan fjerne markeringen på elementer du ikke ønsker at fjerne, på dette tidspunkt, nedenfor. Når du klikker 'bekræft' vil alle afkrydsede elemenet blive fjernet <br/>
|
||||
<span style="color: Red; font-weight: bold;">Bemærk:</span> at dokumenter og medier som afhænger af denne pakke vil muligvis holde op med at virke, så vær forsigtig. Hvis i tvivl, kontakt personen som har udviklet pakken.]]></key>
|
||||
<key alias="packageUpgradeDownload">Download opdatering fra opbevaringsbasen</key>
|
||||
<key alias="packageUpgradeHeader">Opdatér pakke</key>
|
||||
<key alias="packageUpgradeInstructions">Opdateringsinstrukser</key>
|
||||
@@ -945,18 +880,12 @@ Mange hilsner fra Umbraco robotten
|
||||
</area>
|
||||
<area alias="publish">
|
||||
<key alias="contentPublishedFailedAwaitingRelease">Udgivelsen kunne ikke udgives da publiceringsdato er sat</key>
|
||||
<key alias="contentPublishedFailedExpired">
|
||||
<![CDATA[
|
||||
<key alias="contentPublishedFailedExpired"><![CDATA[
|
||||
%0% Udgivelsen kunne ikke blive publiceret da publiceringsdatoen er overskredet
|
||||
]]>
|
||||
</key>
|
||||
<key alias="contentPublishedFailedInvalid">
|
||||
<![CDATA[
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedInvalid"><![CDATA[
|
||||
%0% kunne ikke publiceres da følgende egenskaber : %1% ikke overholdte valderingsreglerne.
|
||||
]]>
|
||||
</key>
|
||||
<key alias="editContentPublishedFailedByParent">Udgivelsen fejlede fordi en overordnet side ikke er publiceret</key>
|
||||
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedByEvent">%0% kunne ikke udgives, fordi et 3. parts modul annullerede handlingen</key>
|
||||
<key alias="includeUnpublished">Medtag ikke-udgivede undersider</key>
|
||||
<key alias="inProgress">Publicerer - vent venligst...</key>
|
||||
@@ -976,7 +905,6 @@ Mange hilsner fra Umbraco robotten
|
||||
<area alias="mediaPicker">
|
||||
<key alias="pickedTrashedItem">Du har valgt et medie som er slettet eller lagt i papirkurven</key>
|
||||
<key alias="pickedTrashedItems">Du har valgt medier som er slettede eller lagt i papirkurven</key>
|
||||
<key alias="deletedItem">Slettet medie</key>
|
||||
</area>
|
||||
<area alias="relatedlinks">
|
||||
<key alias="enterExternal">indtast eksternt link</key>
|
||||
@@ -990,8 +918,6 @@ Mange hilsner fra Umbraco robotten
|
||||
<area alias="imagecropper">
|
||||
<key alias="reset">Nulstil</key>
|
||||
</area>
|
||||
|
||||
|
||||
<area alias="rollback">
|
||||
<key alias="currentVersion">Nuværende version</key>
|
||||
<key alias="diffHelp"><![CDATA[Her vises forskellene mellem den nuværende version og den valgte version<br /><del>Rød</del> tekst vil ikke blive vist i den valgte version. <ins>Grøn betyder tilføjet</ins>]]></key>
|
||||
@@ -1019,12 +945,8 @@ Mange hilsner fra Umbraco robotten
|
||||
<key alias="users">Brugere</key>
|
||||
<key alias="help">Hjælp</key>
|
||||
<key alias="forms">Formularer</key>
|
||||
<key alias="analytics">Analytics</key>
|
||||
</area>
|
||||
<area alias="help">
|
||||
<key alias="goTo">gå til</key>
|
||||
<key alias="helpTopicsFor">Hjælpeemner for</key>
|
||||
<key alias="videoChaptersFor">Videokapitler for</key>
|
||||
<key alias="theBestUmbracoVideoTutorials">De bedste Umbraco video tutorials</key>
|
||||
</area>
|
||||
<area alias="settings">
|
||||
@@ -1040,8 +962,6 @@ Mange hilsner fra Umbraco robotten
|
||||
<key alias="tab">Faneblad</key>
|
||||
<key alias="tabname">Titel på faneblad</key>
|
||||
<key alias="tabs">Faneblade</key>
|
||||
<key alias="masterDocumentType">Master Dokumenttype</key>
|
||||
<key alias="createMatchingTemplate">Opret matchende skabelon</key>
|
||||
</area>
|
||||
<area alias="sort">
|
||||
<key alias="sortOrder">Sorteringsrækkefølge</key>
|
||||
@@ -1088,10 +1008,6 @@ Mange hilsner fra Umbraco robotten
|
||||
<key alias="languageSaved">Sprog gemt</key>
|
||||
<key alias="mediaTypeSavedHeader">Medietype gemt</key>
|
||||
<key alias="memberTypeSavedHeader">Medlemstype gemt</key>
|
||||
<key alias="pythonErrorHeader">Python script ikke gemt</key>
|
||||
<key alias="pythonErrorText">Python-script kunne ikke gemmes pga. fejl</key>
|
||||
<key alias="pythonSavedHeader">Python-script gemt</key>
|
||||
<key alias="pythonSavedText">Ingen fejl i Python-script</key>
|
||||
<key alias="templateErrorHeader">Skabelon ikke gemt</key>
|
||||
<key alias="templateErrorText">Undgå venligst at du har 2 templates med samme alias</key>
|
||||
<key alias="templateSavedHeader">Skabelon gemt</key>
|
||||
@@ -1102,28 +1018,15 @@ Mange hilsner fra Umbraco robotten
|
||||
<key alias="partialViewErrorHeader">Partial view ikke gemt</key>
|
||||
<key alias="partialViewErrorText">Der opstod en fejl ved at gemme filen.</key>
|
||||
<key alias="permissionsSavedFor">Rettigheder gemt for</key>
|
||||
<key alias="scriptSavedHeader">Script view gemt</key>
|
||||
<key alias="scriptSavedText">Script view gemt uden fejl!</key>
|
||||
<key alias="scriptErrorHeader">Script view ikke gemt</key>
|
||||
<key alias="scriptErrorText">An error occurred saving the file.</key>
|
||||
<key alias="cssErrorText">An error occurred saving the file.</key>
|
||||
<key alias="deleteUserGroupsSuccess">Slettede %0% brugergrupper</key>
|
||||
<key alias="deleteUserGroupSuccess">%0% blev slettet</key>
|
||||
<key alias="enableUsersSuccess">Aktiverede %0% brugere</key>
|
||||
<key alias="enableUsersError">Der opstod en fejl under aktivering af brugerne</key>
|
||||
<key alias="disableUsersSuccess">Deaktiverede %0% brugere</key>
|
||||
<key alias="disableUsersError">Der opstod en fejl under deaktivering af brugerne</key>
|
||||
<key alias="enableUserSuccess">%0% er nu aktiveret</key>
|
||||
<key alias="enableUserError">Der opstod en fejl under aktivering af brugeren</key>
|
||||
<key alias="disableUserSuccess">%0% er nu deaktiveret</key>
|
||||
<key alias="disableUserError">Der opstod en fejl under deaktivering af brugeren</key>
|
||||
<key alias="setUserGroupOnUsersSuccess">Brugergrupper er blevet indstillet</key>
|
||||
<key alias="deleteUserGroupsSuccess">Slettede %0% brugergrupper</key>
|
||||
<key alias="deleteUserGroupSuccess">%0% blev slettet</key>
|
||||
<key alias="unlockUsersSuccess">Låste %0% brugere op</key>
|
||||
<key alias="unlockUsersError">Der opstod en fejl under oplåsning af brugerne</key>
|
||||
<key alias="unlockUserSuccess">%0% er nu låst op</key>
|
||||
<key alias="unlockUserError">Der opstod en fejl under oplåsning af brugeren</key>
|
||||
</area>
|
||||
<area alias="stylesheet">
|
||||
<key alias="aliasHelp">Bruger CSS-syntaks f.eks. h1, .redheader, .blueTex</key>
|
||||
@@ -1133,90 +1036,64 @@ Mange hilsner fra Umbraco robotten
|
||||
<key alias="preview">Forhåndsvisning</key>
|
||||
<key alias="styles">Styles</key>
|
||||
</area>
|
||||
|
||||
<area alias="template">
|
||||
<key alias="edittemplate">Rediger skabelon</key>
|
||||
|
||||
<key alias="insertSections">Sektioner</key>
|
||||
<key alias="insertContentArea">Indsæt indholdsområde</key>
|
||||
<key alias="insertContentAreaPlaceHolder">Indsæt pladsholder for indholdsområde</key>
|
||||
|
||||
<key alias="insert">Indsæt</key>
|
||||
<key alias="insertDesc">Hvad vil du indsætte?</key>
|
||||
|
||||
<key alias="insertDictionaryItem">Oversættelse</key>
|
||||
<key alias="insertDictionaryItemDesc">Indsætter en oversætbar tekst, som skifter efter det sprog, som websitet vises i.</key>
|
||||
|
||||
<key alias="insertMacro">Makro</key>
|
||||
<key alias="insertMacroDesc">
|
||||
En makro er et element, som kan have forskellige indstillinger, når det indsættes.
|
||||
Brug det som en genbrugelig del af dit design såsom gallerier, formularer og lister.
|
||||
</key>
|
||||
|
||||
<key alias="insertPageField">Sideværdi</key>
|
||||
<key alias="insertPageFieldDesc">
|
||||
Viser værdien af et felt fra den nuværende side. Kan indstilles til at bruge rekursive værdier eller
|
||||
vise en standardværdi i tilfælde af, at feltet er tomt.
|
||||
</key>
|
||||
|
||||
<key alias="insertPartialView">Partial view</key>
|
||||
<key alias="insertPartialViewDesc">
|
||||
Et Partial View er et skabelonelement, som kan indsættes i andre skabeloner og derved
|
||||
genbruges og deles på tværs af sideskabelonerne.
|
||||
</key>
|
||||
|
||||
<key alias="mastertemplate">Master skabelon</key>
|
||||
<key alias="quickGuide">Lynguide til Umbracos skabelontags</key>
|
||||
<key alias="noMastertemplate">Ingen masterskabelon</key>
|
||||
<key alias="noMaster">Ingen master</key>
|
||||
|
||||
<key alias="renderBody">Indsæt en underliggende skabelon</key>
|
||||
<key alias="renderBodyDesc">
|
||||
<![CDATA[
|
||||
<key alias="renderBodyDesc"><![CDATA[
|
||||
Henter indholdet af en underliggende skabelon ind, ved at
|
||||
indsætte et <code>@RenderBody()</code> element.
|
||||
]]>
|
||||
</key>
|
||||
|
||||
|
||||
]]></key>
|
||||
<key alias="defineSection">Definer en sektion</key>
|
||||
<key alias="defineSectionDesc">
|
||||
<![CDATA[
|
||||
<key alias="defineSectionDesc"><![CDATA[
|
||||
Definerer en del af din skabelon som en navngivet sektion, ved at
|
||||
omkranse den i <code>@section { ... }</code>. Herefter kan denne sektion flettes ind i
|
||||
overliggende skabelon ved at indsætte et <code>@RenderSection</code> element.
|
||||
]]>
|
||||
</key>
|
||||
|
||||
]]></key>
|
||||
<key alias="renderSection">Indsæt en sektion</key>
|
||||
<key alias="renderSectionDesc">
|
||||
<![CDATA[
|
||||
<key alias="renderSectionDesc"><![CDATA[
|
||||
Henter indholdet af en sektion fra den underliggende skabelon ind, ved at indsætte et
|
||||
<code>@RenderSection(name)</code> element. Den underliggende skabelon skal have
|
||||
defineret en sektion via et <code>@section [name]{ ... }</code> element.
|
||||
]]>
|
||||
</key>
|
||||
|
||||
]]></key>
|
||||
<key alias="sectionName">Sektionsnavn</key>
|
||||
<key alias="sectionMandatory">Sektionen er obligatorisk</key>
|
||||
|
||||
<key alias="sectionMandatoryDesc">
|
||||
Hvis obligatorisk, skal underskabelonen indeholde en <code>@section</code> -definition.
|
||||
</key>
|
||||
|
||||
|
||||
<key alias="queryBuilder">Query builder</key>
|
||||
<key alias="itemsReturned">sider returneret, på</key>
|
||||
|
||||
<key alias="iWant">Returner</key>
|
||||
<key alias="allContent">alt indhold</key>
|
||||
<key alias="contentOfType">indhold af typen "%0%"</key>
|
||||
|
||||
<key alias="contentOfType">indhold af typen "%0%"</key>
|
||||
<key alias="from">fra</key>
|
||||
<key alias="websiteRoot">mit website</key>
|
||||
<key alias="where">hvor</key>
|
||||
<key alias="and">og</key>
|
||||
|
||||
<key alias="is">er</key>
|
||||
<key alias="isNot">ikke er</key>
|
||||
<key alias="before">er før</key>
|
||||
@@ -1231,129 +1108,88 @@ Mange hilsner fra Umbraco robotten
|
||||
<key alias="greaterThanEqual">er større end eller det samme som</key>
|
||||
<key alias="lessThan">er mindre end</key>
|
||||
<key alias="lessThanEqual">er mindre end eller det samme som</key>
|
||||
|
||||
<key alias="id">Id</key>
|
||||
<key alias="name">Navn</key>
|
||||
<key alias="createdDate">Oprettelsesdato</key>
|
||||
<key alias="lastUpdatedDate">Sidste opdatering</key>
|
||||
|
||||
<key alias="orderBy">Sortér efter</key>
|
||||
<key alias="ascending">stigende rækkefølge</key>
|
||||
<key alias="descending">faldende rækkefølge</key>
|
||||
|
||||
<key alias="template">Skabelon</key>
|
||||
</area>
|
||||
|
||||
<area alias="grid">
|
||||
<key alias="rte">Rich Text Editor</key>
|
||||
<key alias="media">Billede</key>
|
||||
<key alias="macro">Macro</key>
|
||||
<key alias="embed">Embed</key>
|
||||
<key alias="headline">Overskrift</key>
|
||||
<key alias="quote">Citat</key>
|
||||
<key alias="insertControl">Vælg indholdstype</key>
|
||||
<key alias="chooseLayout">Vælg layout</key>
|
||||
<key alias="addRows">Tilføj række</key>
|
||||
<key alias="addElement">Tilføj indhold</key>
|
||||
<key alias="dropElement">Slip indhold</key>
|
||||
<key alias="settingsApplied">Indstillinger tilføjet</key>
|
||||
|
||||
<key alias="contentNotAllowed">Indholdet er ikke tilladt her</key>
|
||||
<key alias="contentAllowed">Indholdet er tilladt her</key>
|
||||
|
||||
<key alias="clickToEmbed">Klik for at indlejre</key>
|
||||
<key alias="clickToInsertImage">Klik for at indsætte et billede</key>
|
||||
<key alias="placeholderImageCaption">Billedtekst...</key>
|
||||
<key alias="placeholderWriteHere">Skriv her...</key>
|
||||
|
||||
<key alias="gridLayouts">Grid layout</key>
|
||||
<key alias="gridLayoutsDetail">Et layout er det overordnede arbejdsområde til dit grid - du vil typisk kun behøve ét eller to</key>
|
||||
<key alias="addGridLayout">Tilføj grid layout</key>
|
||||
<key alias="addGridLayoutDetail">Juster dit layout ved at justere kolonnebredder og tilføj yderligere sektioner</key>
|
||||
|
||||
<key alias="rowConfigurations">Rækkekonfigurationer</key>
|
||||
<key alias="rowConfigurationsDetail">Rækker er foruddefinerede celler, der arrangeres vandret</key>
|
||||
<key alias="addRowConfiguration">Tilføj rækkekonfiguration</key>
|
||||
<key alias="addRowConfigurationDetail">Juster rækken ved at indstille cellebredder og tilføje yderligere celler</key>
|
||||
|
||||
<key alias="columns">Kolonner</key>
|
||||
<key alias="columnsDetails">Det totale antal kolonner i dit grid</key>
|
||||
|
||||
<key alias="settings">Indstillinger</key>
|
||||
<key alias="settingsDetails">Konfigurer, hvilket indstillinger, brugeren kan ændre</key>
|
||||
|
||||
|
||||
<key alias="styles">Typografi</key>
|
||||
<key alias="stylesDetails">Vælg hvilke typografiværdier en redaktør kan ændre</key>
|
||||
|
||||
<key alias="settingDialogDetails">Indstillinger gemmes kun, hvis den indtastede json-konfiguration er gyldig</key>
|
||||
|
||||
<key alias="allowAllEditors">Tillad alle editorer</key>
|
||||
<key alias="allowAllRowConfigurations">Tillad alle rækkekonfigurationer</key>
|
||||
|
||||
<key alias="setAsDefault">Sæt som standard</key>
|
||||
<key alias="chooseExtra">Vælg ekstra</key>
|
||||
<key alias="chooseDefault">Vælg standard</key>
|
||||
<key alias="areAdded">er tilføjet</key>
|
||||
|
||||
<key alias="maxItems">Maksimalt emner</key>
|
||||
<key alias="maxItemsDescription">Efterlad blank eller sæt til 0 for ubegrænset</key>
|
||||
|
||||
</area>
|
||||
<area alias="contentTypeEditor">
|
||||
|
||||
<key alias="compositions">Kompositioner</key>
|
||||
<key alias="noTabs">Du har ikke tilføjet nogle faner</key>
|
||||
<key alias="addNewTab">Tilføj ny fane</key>
|
||||
<key alias="addAnotherTab">Tilføj endnu en fane</key>
|
||||
<key alias="inheritedFrom">Nedarvet fra</key>
|
||||
<key alias="addProperty">Tilføj egenskab</key>
|
||||
<key alias="requiredLabel">Påkrævet label</key>
|
||||
|
||||
<key alias="enableListViewHeading">Aktiver listevisning</key>
|
||||
<key alias="enableListViewDescription">Konfigurer indholdet til at blive vist i en sorterbar og søgbar liste, dens børn vil ikke blive vist i træet</key>
|
||||
|
||||
<key alias="allowedTemplatesHeading">Tilladte skabeloner</key>
|
||||
<key alias="allowedTemplatesDescription">Vælg hvilke skabeloner der er tilladt at bruge på dette indhold</key>
|
||||
|
||||
<key alias="allowAsRootHeading">Tillad på rodniveau</key>
|
||||
<key alias="allowAsRootDescription">Kun dokumenttyper med denne indstilling aktiveret oprettes i rodniveau under inhold og mediearkiv</key>
|
||||
<key alias="allowAsRootCheckbox">Ja – indhold af denne type er tilladt i roden</key>
|
||||
|
||||
<key alias="childNodesHeading">Tilladte typer</key>
|
||||
<key alias="childNodesDescription">Tillad at oprette indhold af en specifik type under denne</key>
|
||||
|
||||
<key alias="chooseChildNode">Vælg child node</key>
|
||||
|
||||
<key alias="compositionsDescription">Nedarv faner og egenskaber fra en anden dokumenttype. Nye faner vil blive tilføjet den nuværende dokumenttype eller sammenflettet hvis fanenavnene er ens.</key>
|
||||
<key alias="compositionInUse">Indholdstypen bliver brugt i en komposition og kan derfor ikke blive anvendt som komposition</key>
|
||||
<key alias="noAvailableCompositions">Der er ingen indholdstyper tilgængelige at bruge som komposition</key>
|
||||
|
||||
<key alias="availableEditors">Tilgængelige editors</key>
|
||||
<key alias="reuse">Genbrug</key>
|
||||
<key alias="editorSettings">Editor indstillinger</key>
|
||||
|
||||
<key alias="configuration">Konfiguration</key>
|
||||
|
||||
<key alias="yesDelete">Ja, slet</key>
|
||||
|
||||
<key alias="movedUnderneath">blev flyttet til</key>
|
||||
<key alias="folderToMove">Vælg hvor</key>
|
||||
<key alias="structureBelow">skal flyttes til</key>
|
||||
|
||||
<key alias="allDocumentTypes">Alle dokumenttyper</key>
|
||||
<key alias="allDocuments">Alle dokumenter</key>
|
||||
<key alias="allMediaItems">Alle medier</key>
|
||||
|
||||
<key alias="usingThisDocument">som benytter denne dokumenttype vil blive slettet permanent. Bekræft at du også vil slette dem.</key>
|
||||
<key alias="usingThisMedia">som benytter denne medietype vil blive slettet permanent. Bekræft at du også vil slette dem.</key>
|
||||
<key alias="usingThisMember">som benytter denne medlemstype vil blive slettet permanent. Bekræft at du også vil slette dem.</key>
|
||||
|
||||
<key alias="andAllDocuments">og alle dokumenter, som benytter denne type</key>
|
||||
<key alias="andAllMediaItems">og alle medier, som benytter denne type</key>
|
||||
<key alias="andAllMembers">og alle medlemmer, som benytter denne type</key>
|
||||
|
||||
<key alias="thisEditorUpdateSettings">der bruger denne editor vil blive opdateret med de nye indstillinger</key>
|
||||
<key alias="memberCanEdit">Medlem kan redigere</key>
|
||||
<key alias="showOnMemberProfile">Vis på medlemsprofil</key>
|
||||
<key alias="tabHasNoSortOrder">fane har ingen sorteringsrækkefølge</key>
|
||||
@@ -1387,24 +1223,14 @@ Mange hilsner fra Umbraco robotten
|
||||
<key alias="withTime">Ja, med klokkeslæt. Dato/tid separator: </key>
|
||||
</area>
|
||||
<area alias="translation">
|
||||
<key alias="assignedTasks">Opgaver tildelt dig</key>
|
||||
<key alias="assignedTasksHelp"><![CDATA[Listen nedenunder viser oversættelsesopgaver <strong>tildelt dig</strong>. For at se en mere detaljeret visning, klik "Detaljer" eller blot sidenavnet. Du kan også hente siden direkte som XML ved at klikke på "Download XML"-linket.<br />For at lukke en oversættelsesopgave, gå til detaljevisning og tryk på "Luk"-knappen.]]></key>
|
||||
<key alias="closeTask">Luk opgave</key>
|
||||
<key alias="details">Oversættelsesdetaljer</key>
|
||||
<key alias="downloadAllAsXml">Download alle oversættelsesopgaver som XML</key>
|
||||
<key alias="downloadTaskAsXml">Download XML</key>
|
||||
<key alias="DownloadXmlDTD">Download XML DTD</key>
|
||||
<key alias="fields">Felter</key>
|
||||
<key alias="includeSubpages">Inkluder undersider</key>
|
||||
<key alias="mailBody">Hej %0%. Dette er en automatisk mail sendt for at informere dig om at dokumentet '%1' har en forespørgsel omkring oversættelse til '%5%' af %2%. Gå til http://%3%/translation/details.aspx?id=%4% for at redigere. Eller log ind i Umbraco for at få en oversigt over dine oversættelsesopgaver: http://%3%/Umbraco Hav en god dag! Mange hilsner Umbraco-robotten</key>
|
||||
<key alias="mailSubject">[%0%] Oversættelsesopgave for %1%</key>
|
||||
<key alias="noTranslators">Ingen oversættelsesbrugere er fundet. Opret venligst en oversættelsesbruger før du begynder at sende indhold til oversættelse</key>
|
||||
<key alias="ownedTasks">Opgaver oprettet af dig</key>
|
||||
<key alias="ownedTasksHelp"><![CDATA[Listen nedenfor viser sider <strong>oprettet af dig</strong>. For at se et detaljeret overblik indeholdende kommentarer, klik på "Detaljer" eller bare sidenavnet. Du kna også downloade siden som XML direkte ved at klikke på "Download XML"linket. Gå venligst til Detaljeoverblikket og klik på "Luk" knappen for at lukke en oversættelsesopgve.]]></key>
|
||||
<key alias="pageHasBeenSendToTranslation">Siden '%0%' er blevet sent til oversættelse</key>
|
||||
<key alias="sendToTranslate">Send siden '%0%' til oversættelse</key>
|
||||
<key alias="taskAssignedBy">Tildelt af</key>
|
||||
<key alias="taskOpened">Opgave åbnet</key>
|
||||
<key alias="totalWords">Totalt antal ord</key>
|
||||
<key alias="translateTo">Oversæt til</key>
|
||||
<key alias="translationDone">Oversættelse gennemført.</key>
|
||||
@@ -1440,7 +1266,6 @@ Mange hilsner fra Umbraco robotten
|
||||
<key alias="packages">Pakker</key>
|
||||
<key alias="partialViews">Partial Views</key>
|
||||
<key alias="partialViewMacros">Partial View Makro Filer</key>
|
||||
<key alias="python">Python</key>
|
||||
<key alias="repositories">Installer fra "repository"</key>
|
||||
<key alias="runway">Installer Runway</key>
|
||||
<key alias="runwayModules">Runway-moduler</key>
|
||||
@@ -1448,7 +1273,6 @@ Mange hilsner fra Umbraco robotten
|
||||
<key alias="scripts">Scripts</key>
|
||||
<key alias="stylesheets">Stylesheets</key>
|
||||
<key alias="templates">Skabeloner</key>
|
||||
<key alias="analytics">Analytics</key>
|
||||
<key alias="userPermissions">Brugertilladelser</key>
|
||||
<key alias="userTypes">Bruger Typer</key>
|
||||
<key alias="users">Brugere</key>
|
||||
@@ -1477,7 +1301,6 @@ Mange hilsner fra Umbraco robotten
|
||||
<key alias="confirmNewPassword">Gentag dit nye kodeord</key>
|
||||
<key alias="changePasswordDescription">Du kan ændre dit kodeord, som giver dig adgang til Umbraco Back Office ved at udfylde formularen og klikke på knappen 'Skift dit kodeord'</key>
|
||||
<key alias="contentChannel">Indholdskanal</key>
|
||||
<key alias="changePhoto">Skift billede</key>
|
||||
<key alias="createUserHelp">Opret nye brugere for at give dem adgang til Umbraco. Når en ny bruger oprettes, genereres der en adgangskode, som du kan dele med brugeren.</key>
|
||||
<key alias="descriptionField">Beskrivelsesfelt</key>
|
||||
<key alias="disabled">Deaktivér bruger</key>
|
||||
@@ -1523,21 +1346,10 @@ Mange hilsner fra Umbraco robotten
|
||||
<key alias="profile">Profil</key>
|
||||
<key alias="searchAllChildren">Søg alle 'børn'</key>
|
||||
<key alias="startnode">Startnode</key>
|
||||
<key alias="stateActive">Aktiv</key>
|
||||
<key alias="stateAll">Alle</key>
|
||||
<key alias="stateDisabled">Deaktiveret</key>
|
||||
<key alias="stateLockedOut">Låst ude</key>
|
||||
<key alias="stateInvited">Inviteret</key>
|
||||
<key alias="sortNameAscending">Navn (A-Å)</key>
|
||||
<key alias="sortNameDescending">Navn (Å-A)</key>
|
||||
<key alias="sortCreateDateDescending">Nyeste</key>
|
||||
<key alias="sortCreateDateAscending">Ældste</key>
|
||||
<key alias="sortLastLoginDateDescending">Senest login</key>
|
||||
<key alias="sectionsHelp">Tilføj sektioner for at give brugerne adgang</key>
|
||||
<key alias="selectUserGroups">Vælg brugergrupper</key>
|
||||
<key alias="noStartNode">Ingen startnode valgt</key>
|
||||
<key alias="noStartNodes">Ingen startnoder valgt</key>
|
||||
<key alias="startnode">Startnode</key>
|
||||
<key alias="startnodehelp">Begræns indholdstræet til en bestemt startnode</key>
|
||||
<key alias="startnodes">Indhold startnoder</key>
|
||||
<key alias="startnodeshelp">Begræns indholdstræet til bestemte startnoder</key>
|
||||
@@ -1547,15 +1359,12 @@ Mange hilsner fra Umbraco robotten
|
||||
<key alias="userManagement">Brugeradministration</key>
|
||||
<key alias="username">Navn</key>
|
||||
<key alias="userPermissions">Brugertilladelser</key>
|
||||
<key alias="userGroupPermissions">Brugergruppe tilladelser</key>
|
||||
<key alias="usergroup">Brugergruppe</key>
|
||||
<key alias="userGroups">Brugergrupper</key>
|
||||
<key alias="userInvited">er blevet inviteret</key>
|
||||
<key alias="userInvitedSuccessHelp">En invitation er blevet sendt til den nye bruger med oplysninger om, hvordan man logger ind i Umbraco.</key>
|
||||
<key alias="userinviteWelcomeMessage">Hej og velkommen til Umbraco! På bare 1 minut vil du være klar til at komme i gang, vi skal bare have dig til at oprette en adgangskode og tilføje et billede til din avatar.</key>
|
||||
<key alias="userinviteAvatarMessage">Upload et billede for at gøre det nemt for andre brugere at genkende dig.</key>
|
||||
<key alias="writer">Forfatter</key>
|
||||
<key alias="translator">Oversætter</key>
|
||||
<key alias="change">Skift</key>
|
||||
<key alias="yourProfile">Din profil</key>
|
||||
<key alias="yourHistory">Din historik</key>
|
||||
@@ -1565,9 +1374,7 @@ Mange hilsner fra Umbraco robotten
|
||||
<key alias="sendInvite">Send invitation</key>
|
||||
<key alias="backToUsers">Tilbage til brugere</key>
|
||||
<key alias="inviteEmailCopySubject">Umbraco: Invitation</key>
|
||||
<key alias="inviteEmailCopyFormat">
|
||||
<![CDATA[<html><body><p>Hej %0%, du er blevet inviteret af %1% til Umbraco backoffice.</p><p>Besked fra %1%: <em>%2%</em></p><p>Klik på dette <a href="%3%" target="_blank">link</a> for acceptere invitationen</p><p><small>Hvis du ikke kan klikke på linket, så kopier og indsæt denne URL i dit browservindue<br/><br/>%3%</small></p></body></html>]]>
|
||||
</key>
|
||||
<key alias="inviteEmailCopyFormat"><![CDATA[<html><body><p>Hej %0%, du er blevet inviteret af %1% til Umbraco backoffice.</p><p>Besked fra %1%: <em>%2%</em></p><p>Klik på dette <a href="%3%" target="_blank">link</a> for acceptere invitationen</p><p><small>Hvis du ikke kan klikke på linket, så kopier og indsæt denne URL i dit browservindue<br/><br/>%3%</small></p></body></html>]]></key>
|
||||
</area>
|
||||
<area alias="validation">
|
||||
<key alias="validation">Validering</key>
|
||||
@@ -1615,11 +1422,4 @@ Mange hilsner fra Umbraco robotten
|
||||
<key alias="noRestoreRelation">Der findes ikke nogen "Genopret" relation for dette dokument/medie. Brug "Flyt" muligheden fra menuen for at flytte det manuelt.</key>
|
||||
<key alias="restoreUnderRecycled">Det dokument/medie du ønsker at genoprette under ('%0%') er i skraldespanden. Brug "Flyt" muligheden fra menuen for at flytte det manuelt.</key>
|
||||
</area>
|
||||
<area alias="recycleBin">
|
||||
<key alias="contentTrashed">Slettet indhold med Id: {0} Relateret til original "parent" med id: {1}</key>
|
||||
<key alias="mediaTrashed">Slettet medie med Id: {0} relateret til original "parent" / mappe med id: {1}</key>
|
||||
<key alias="itemCannotBeRestored">Kan ikke automatisk genoprette dette dokument/medie</key>
|
||||
<key alias="noRestoreRelation">Der findes ikke nogen "Genopret" relation for dette dokument/medie. Brug "Flyt" muligheden fra menuen for at flytte det manuelt.</key>
|
||||
<key alias="restoreUnderRecycled">Det dokument/medie du ønsker at genoprette under ('%0%') er i skraldespanden. Brug "Flyt" muligheden fra menuen for at flytte det manuelt.</key>
|
||||
</area>
|
||||
</language>
|
||||
</language>
|
||||
@@ -63,7 +63,6 @@
|
||||
</area>
|
||||
<area alias="buttons">
|
||||
<key alias="select">Auswählen</key>
|
||||
<key alias="selectCurrentFolder">Aktuellen Ordner auswählen</key>
|
||||
<key alias="somethingElse">Etwas anderes machen</key>
|
||||
<key alias="bold">Fett</key>
|
||||
<key alias="deindent">Ausrücken</key>
|
||||
@@ -165,7 +164,6 @@
|
||||
</area>
|
||||
<area alias="media">
|
||||
<key alias="clickToUpload">Für Upload klicken</key>
|
||||
<key alias="dropFilesHere">Dateien hier fallen lassen ...</key>
|
||||
</area>
|
||||
<area alias="member">
|
||||
<key alias="createNewMember">Neues Mitglied anlegen</key>
|
||||
@@ -195,27 +193,22 @@
|
||||
</area>
|
||||
<area alias="bulk">
|
||||
<key alias="done">Done</key>
|
||||
|
||||
<key alias="deletedItem">Deleted %0% item</key>
|
||||
<key alias="deletedItems">Deleted %0% items</key>
|
||||
<key alias="deletedItemOfItem">Deleted %0% out of %1% item</key>
|
||||
<key alias="deletedItemOfItems">Deleted %0% out of %1% items</key>
|
||||
|
||||
<key alias="publishedItem">Published %0% item</key>
|
||||
<key alias="publishedItems">Published %0% items</key>
|
||||
<key alias="publishedItemOfItem">Published %0% out of %1% item</key>
|
||||
<key alias="publishedItemOfItems">Published %0% out of %1% items</key>
|
||||
|
||||
<key alias="unpublishedItem">Unpublished %0% item</key>
|
||||
<key alias="unpublishedItems">Unpublished %0% items</key>
|
||||
<key alias="unpublishedItemOfItem">Unpublished %0% out of %1% item</key>
|
||||
<key alias="unpublishedItemOfItems">Unpublished %0% out of %1% items</key>
|
||||
|
||||
<key alias="movedItem">Moved %0% item</key>
|
||||
<key alias="movedItems">Moved %0% items</key>
|
||||
<key alias="movedItemOfItem">Moved %0% out of %1% item</key>
|
||||
<key alias="movedItemOfItems">Moved %0% out of %1% items</key>
|
||||
|
||||
<key alias="copiedItem">Copied %0% item</key>
|
||||
<key alias="copiedItems">Copied %0% items</key>
|
||||
<key alias="copiedItemOfItem">Copied %0% out of %1% item</key>
|
||||
@@ -284,20 +277,13 @@
|
||||
<key alias="usernameHint">Der Benutzername ist normalerweise Ihre E-Mail-Adresse</key>
|
||||
</area>
|
||||
<area alias="editcontenttype">
|
||||
<key alias="allowAtRoot" version="7.2">Auf oberster Ebene erlauben</key>
|
||||
<key alias="allowAtRootDesc" version="7.2">Nur diese Dokumenttypen können auf oberster Ebene in Inhalte und Medien angelegt werden</key>
|
||||
<key alias="allowedchildnodetypes">Dokumenttypen, die unterhalb dieses Typs erlaubt sind</key>
|
||||
<key alias="contenttypecompositions">Zusammengesetzte Dokumenttypen</key>
|
||||
<key alias="create">Erstellen</key>
|
||||
<key alias="deletetab">Registerkarte löschen</key>
|
||||
<key alias="description">Beschreibung</key>
|
||||
<key alias="newtab">Neue Registerkarte</key>
|
||||
<key alias="tab">Registerkarte</key>
|
||||
<key alias="thumbnail">Illustration</key>
|
||||
<key alias="hasListView">Listenansicht aktivieren</key>
|
||||
<key alias="hasListViewDesc" version="7.2">Aktiviert eine durchsuch- und sortierbare Listendarstellung der untergeordneten Elemente anstelle diese in der Baumstruktur anzuzeigen</key>
|
||||
<key alias="currentListView" version="7.2">Aktuelle Listenansicht</key>
|
||||
<key alias="currentListViewDesc" version="7.2">Der Datentyp für die aktuelle Ansicht der Liste</key>
|
||||
<key alias="createListView" version="7.2">Angepasste Listenansicht erstellen</key>
|
||||
<key alias="removeListView" version="7.2">Angepasste Listenansicht entfernen</key>
|
||||
</area>
|
||||
@@ -335,14 +321,11 @@
|
||||
<key alias="missingTitle">Bitte geben Sie einen Titel ein</key>
|
||||
<key alias="missingType">Bitte wählen Sie einen Typ</key>
|
||||
<key alias="pictureResizeBiggerThanOrg">Soll die Abbildung wirklich über die Originalgröße hinaus vergrößert werden?</key>
|
||||
<key alias="pythonErrorHeader">Fehler im Python-Skript</key>
|
||||
<key alias="pythonErrorText">Das Python-Skript ist fehlerhaft und wurde daher nicht gespeichert.</key>
|
||||
<key alias="startNodeDoesNotExists">Startelement gelöscht, bitte kontaktieren Sie den System-Administrator.</key>
|
||||
<key alias="stylesMustMarkBeforeSelect">Bitte markieren Sie den gewünschten Text, bevor Sie einen Stil auswählen</key>
|
||||
<key alias="stylesNoStylesOnPage">Keine aktiven Stile vorhanden</key>
|
||||
<key alias="tableColMergeLeft">Bitte platzieren Sie den Mauszeiger in die erste der zusammenzuführenden Zellen</key>
|
||||
<key alias="tableSplitNotSplittable">Sie können keine Zelle trennen, die nicht zuvor aus mehreren zusammengeführt wurde.</key>
|
||||
<key alias="missingPropertyEditorErrorMessage">Es liegt ein Konfigurationsfehler beim Datentyp dieser Eigenschaft vor. Bitte prüfen Sie den Datentyp bzw. die Eigenschaft.</key>
|
||||
</area>
|
||||
<area alias="general">
|
||||
<key alias="about">Info</key>
|
||||
@@ -397,7 +380,6 @@
|
||||
<key alias="logout">Abmelden</key>
|
||||
<key alias="macro">Makro</key>
|
||||
<key alias="move">Verschieben</key>
|
||||
<key alias="more">Mehr</key>
|
||||
<key alias="name">Name</key>
|
||||
<key alias="new">Neu</key>
|
||||
<key alias="next">Weiter</key>
|
||||
@@ -426,7 +408,8 @@
|
||||
<key alias="showPageOnSend">Seite beim Senden anzeigen</key>
|
||||
<key alias="size">Größe</key>
|
||||
<key alias="sort">Sortieren</key>
|
||||
<key alias="submit">Submit</key> <!-- TODO: Translate this -->
|
||||
<key alias="submit">Submit</key>
|
||||
<!-- TODO: Translate this -->
|
||||
<key alias="type">Typ</key>
|
||||
<key alias="typeToSearch">Durchsuchen ...</key>
|
||||
<key alias="up">nach oben</key>
|
||||
@@ -552,7 +535,6 @@ Wenn Sie sich für Runway entscheiden, können Sie optional Blöcke nutzen, die
|
||||
<key alias="renewSession">Erneuern Sie, um Ihre Arbeit zu speichern ...</key>
|
||||
</area>
|
||||
<area alias="login">
|
||||
<key alias="greeting0">Einen wunderbaren Sonntag</key>
|
||||
<key alias="greeting1">Schönen Montag</key>
|
||||
<key alias="greeting2">Einen großartigen Dienstag</key>
|
||||
<key alias="greeting3">Wunderbaren Mittwoch</key>
|
||||
@@ -595,8 +577,7 @@ Wenn Sie sich für Runway entscheiden, können Sie optional Blöcke nutzen, die
|
||||
Einen schönen Tag wünscht
|
||||
Ihr freundlicher Umbraco-Robot
|
||||
</key>
|
||||
<key alias="mailBodyHtml">
|
||||
<![CDATA[<p>Hallo %0%</p>
|
||||
<key alias="mailBodyHtml"><![CDATA[<p>Hallo %0%</p>
|
||||
<p>Dies ist eine automatisch E-Mail, welche Sie informiert, dass die Aufgabe <strong>'%1%'</strong>
|
||||
an der Seite <a href="http://%4%/#/content/content/edit/%5%"><strong>'%2%'</strong></a>
|
||||
vom Benutzer <strong>'%3%'</strong> ausgeführt wurde.
|
||||
@@ -622,8 +603,7 @@ Wenn Sie sich für Runway entscheiden, können Sie optional Blöcke nutzen, die
|
||||
<p>Einen schönen Tag wünscht<br /><br />
|
||||
Ihr freundlicher Umbraco-Robot
|
||||
</p>
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="mailSubject">[%0%] Benachrichtigung: %1% ausgeführt an Seite '%2%' </key>
|
||||
<key alias="notifications">Benachrichtigungen</key>
|
||||
</area>
|
||||
@@ -732,12 +712,8 @@ Wenn Sie sich für Runway entscheiden, können Sie optional Blöcke nutzen, die
|
||||
<key alias="users">Benutzer</key>
|
||||
<key alias="help" version="7.0">Hilfe</key>
|
||||
<key alias="forms">Formulare</key>
|
||||
<key alias="analytics">Auswertungen</key>
|
||||
</area>
|
||||
<area alias="help">
|
||||
<key alias="goTo">go to</key>
|
||||
<key alias="helpTopicsFor">Hilfethemen zu</key>
|
||||
<key alias="videoChaptersFor">Video-Tutorials für</key>
|
||||
<key alias="theBestUmbracoVideoTutorials">Die besten Umbraco-Video-Tutorials</key>
|
||||
</area>
|
||||
<area alias="settings">
|
||||
@@ -757,8 +733,6 @@ Wenn Sie sich für Runway entscheiden, können Sie optional Blöcke nutzen, die
|
||||
<key alias="contentTypeUses">Dieser Dokumenttyp verwendet</key>
|
||||
<key alias="asAContentMasterType">als Masterdokumenttyp. Register vom Masterdokumenttyp werden nicht angezeigt und können nur im Masterdokumenttyp selbst bearbeitet werden</key>
|
||||
<key alias="noPropertiesDefinedOnTab">Für dieses Register sind keine Eigenschaften definiert. Klicken Sie oben auf "neue Eigenschaft hinzufügen", um eine neue Eigenschaft hinzuzufügen.</key>
|
||||
<key alias="masterDocumentType">Masterdokumenttyp</key>
|
||||
<key alias="createMatchingTemplate">Zugehörige Vorlage anlegen</key>
|
||||
</area>
|
||||
<area alias="sort">
|
||||
<key alias="sortOrder">Sortierreihenfolge</key>
|
||||
@@ -807,10 +781,6 @@ Wenn Sie sich für Runway entscheiden, können Sie optional Blöcke nutzen, die
|
||||
<key alias="fileSavedHeader">Datei gespeichert</key>
|
||||
<key alias="fileSavedText">Datei erfolgreich gespeichert</key>
|
||||
<key alias="languageSaved">Sprache gespeichert</key>
|
||||
<key alias="pythonErrorHeader">Python-Skript nicht gespeichert</key>
|
||||
<key alias="pythonErrorText">Das Python-Skript enthält Fehler</key>
|
||||
<key alias="pythonSavedHeader">Python-Skript gespeichert</key>
|
||||
<key alias="pythonSavedText">Keine Fehler im Python-Skript</key>
|
||||
<key alias="templateErrorHeader">Vorlage wurde nicht gespeichert</key>
|
||||
<key alias="templateErrorText">Bitte prüfen Sie, ob möglicherweise zwei Vorlagen den gleichen Alias verwenden.</key>
|
||||
<key alias="templateSavedHeader">Vorlage gespeichert</key>
|
||||
@@ -820,11 +790,6 @@ Wenn Sie sich für Runway entscheiden, können Sie optional Blöcke nutzen, die
|
||||
<key alias="partialViewSavedText">Partielle Ansicht ohne Fehler gespeichert.</key>
|
||||
<key alias="partialViewErrorHeader">Partielle Ansicht nicht gespeichert</key>
|
||||
<key alias="partialViewErrorText">Fehler beim Speichern der Datei.</key>
|
||||
<key alias="scriptSavedHeader">Skript gespeichert</key>
|
||||
<key alias="scriptSavedText">Skript fehlerfrei gespeichert!</key>
|
||||
<key alias="scriptErrorHeader">Skript nicht gespeichert</key>
|
||||
<key alias="scriptErrorText">Fehler beim Speichern der Datei.</key>
|
||||
<key alias="cssErrorText">Fehler beim Speichern der Datei.</key>
|
||||
</area>
|
||||
<area alias="stylesheet">
|
||||
<key alias="aliasHelp">Gewünschter CSS-Selektor, zum Beispiel 'h1', '.bigHeader' oder 'p.infoText'</key>
|
||||
@@ -846,12 +811,8 @@ Wenn Sie sich für Runway entscheiden, können Sie optional Blöcke nutzen, die
|
||||
<key alias="template">Vorlage</key>
|
||||
</area>
|
||||
<area alias="grid">
|
||||
<key alias="rte">Rich Text Editor</key>
|
||||
<key alias="media">Image</key>
|
||||
<key alias="macro">Macro</key>
|
||||
<key alias="embed">Embed</key>
|
||||
<key alias="headline">Headline</key>
|
||||
<key alias="quote">Quote</key>
|
||||
<key alias="insertControl">Element hinzufügen</key>
|
||||
<key alias="addRows">Zeilenlayout auswählen</key>
|
||||
<key alias="addElement">Einfach auf <i class="icon icon-add blue"></i> klicken, um das erste Element anzulegen</key>
|
||||
@@ -874,7 +835,6 @@ Wenn Sie sich für Runway entscheiden, können Sie optional Blöcke nutzen, die
|
||||
<key alias="settingsDetails">Legen Sie fest, welche Einstellungen die Autoren anpassen können.</key>
|
||||
<key alias="styles">CSS-Stile</key>
|
||||
<key alias="stylesDetails">Legen Sie fest, welche Stile die Autoren anpassen können.</key>
|
||||
<key alias="settingDialogDetails">Die Einstellungen werden nur gespeichert, wenn die angegebene JSON-Konfiguration gültig ist.</key>
|
||||
<key alias="allowAllEditors">Alle Elemente erlauben</key>
|
||||
<key alias="allowAllRowConfigurations">Alle Zeilenlayouts erlauben</key>
|
||||
</area>
|
||||
@@ -909,12 +869,7 @@ Wenn Sie sich für Runway entscheiden, können Sie optional Blöcke nutzen, die
|
||||
<key alias="withTime">Datum und Zeit mit Trennzeichen: </key>
|
||||
</area>
|
||||
<area alias="translation">
|
||||
<key alias="assignedTasks">Ihre Aufgaben</key>
|
||||
<key alias="assignedTasksHelp">Die Liste unten zeigt <strong>ihre</strong> Übersetzungsaufträge. Um eine ausführliche Liste mit Kommentaren zu sehen, klicken Sie auf "Details" oder einfach auf den Seitennamen. Sie können die Seite auch direkt als XML herunterladen, indem Sie den Link "XML herunterladen" anklicken. <br/>Um eine Übersetzung abzuschließen, gehen Sie bitte auf die Detailansicht und klicken Sie auf "Aufgabe abschließen".</key>
|
||||
<key alias="closeTask">Aufgabe abschließen</key>
|
||||
<key alias="details">Details zur Übersetzung</key>
|
||||
<key alias="downloadAllAsXml">Alle Übersetzungsaufgaben als XML-Datei herunterladen</key>
|
||||
<key alias="downloadTaskAsXml">XML herunterladen</key>
|
||||
<key alias="DownloadXmlDTD">Herunterladen der XML-Defintionen (XML-DTD)</key>
|
||||
<key alias="fields">Felder</key>
|
||||
<key alias="includeSubpages">Einschließlich der Unterseiten</key>
|
||||
@@ -930,14 +885,9 @@ Sie können sich auch alle anstehenden Übersetzungen gesammelt im Umbraco-Verwa
|
||||
Einen schönen Tag wünscht
|
||||
Ihr freundlicher Umbraco-Robot
|
||||
</key>
|
||||
<key alias="mailSubject">[%0%] Aufgabe zur Übersetzung von '%1%'</key>
|
||||
<key alias="noTranslators">Bitte erstellen Sie zuerst mindestens einen Übersetzer.</key>
|
||||
<key alias="ownedTasks">Von Ihnen erstellte Aufgaben</key>
|
||||
<key alias="ownedTasksHelp">Die Liste unten zeigt die von <strong>Ihnen</strong> erstellten Seiten. Um eine ausführliche Liste mit Kommentaren zu sehen, klicken Sie auf "Details" oder einfach auf den Seitennamen. Sie können die Seite auch direkt als XML herunterladen, indem Sie den Link "XML herunterladen" anklicken. Um eine Übersetzung abzuschließen, gehen Sie bitte auf die Detailansicht und klicken Sie auf "Aufgabe abschließen".</key>
|
||||
<key alias="pageHasBeenSendToTranslation">Die Seite '%0%' wurde zur Übersetzung gesendet</key>
|
||||
<key alias="sendToTranslate">Sendet die Seite '%0%' zur Übersetzung</key>
|
||||
<key alias="taskAssignedBy">Zugewiesen von</key>
|
||||
<key alias="taskOpened">Aufgabe aktiviert</key>
|
||||
<key alias="totalWords">Anzahl der Wörter</key>
|
||||
<key alias="translateTo">Übersetzen in</key>
|
||||
<key alias="translationDone">Übersetzung abgeschlossen.</key>
|
||||
@@ -967,7 +917,6 @@ Ihr freundlicher Umbraco-Robot
|
||||
<key alias="documentTypes">Dokumententypen</key>
|
||||
<key alias="packager">Pakete</key>
|
||||
<key alias="packages">Pakete</key>
|
||||
<key alias="python">Python-Dateien</key>
|
||||
<key alias="repositories">Paket-Repositories</key>
|
||||
<key alias="runway">'Runway' installieren</key>
|
||||
<key alias="runwayModules">Runway-Module</key>
|
||||
@@ -975,7 +924,6 @@ Ihr freundlicher Umbraco-Robot
|
||||
<key alias="scripts">Client-Skripte</key>
|
||||
<key alias="stylesheets">Stylesheets</key>
|
||||
<key alias="templates">Vorlagen</key>
|
||||
<key alias="analytics">Auswertungen</key>
|
||||
<key alias="userPermissions">Berechtigungen</key>
|
||||
<key alias="userTypes">Benutzertypen</key>
|
||||
<key alias="users">Benutzer</key>
|
||||
@@ -1027,9 +975,8 @@ Ihr freundlicher Umbraco-Robot
|
||||
<key alias="usertype">Rolle</key>
|
||||
<key alias="userTypes">Rollen</key>
|
||||
<key alias="writer">Autor</key>
|
||||
<key alias="translator">Übersetzer</key>
|
||||
<key alias="yourProfile" version="7.0">Ihr Profil</key>
|
||||
<key alias="yourHistory" version="7.0">Ihr Verlauf</key>
|
||||
<key alias="sessionExpires" version="7.0">Sitzung läuft ab in</key>
|
||||
</area>
|
||||
</language>
|
||||
</language>
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<language alias="he" intName="Hebrew (Israel)" localName="Hebrew" lcid="" culture="he-IL">
|
||||
<creator>
|
||||
<name>The Umbraco community</name>
|
||||
@@ -132,27 +132,22 @@
|
||||
</area>
|
||||
<area alias="bulk">
|
||||
<key alias="done">Done</key>
|
||||
|
||||
<key alias="deletedItem">Deleted %0% item</key>
|
||||
<key alias="deletedItems">Deleted %0% items</key>
|
||||
<key alias="deletedItemOfItem">Deleted %0% out of %1% item</key>
|
||||
<key alias="deletedItemOfItems">Deleted %0% out of %1% items</key>
|
||||
|
||||
<key alias="publishedItem">Published %0% item</key>
|
||||
<key alias="publishedItems">Published %0% items</key>
|
||||
<key alias="publishedItemOfItem">Published %0% out of %1% item</key>
|
||||
<key alias="publishedItemOfItems">Published %0% out of %1% items</key>
|
||||
|
||||
<key alias="unpublishedItem">Unpublished %0% item</key>
|
||||
<key alias="unpublishedItems">Unpublished %0% items</key>
|
||||
<key alias="unpublishedItemOfItem">Unpublished %0% out of %1% item</key>
|
||||
<key alias="unpublishedItemOfItems">Unpublished %0% out of %1% items</key>
|
||||
|
||||
<key alias="movedItem">Moved %0% item</key>
|
||||
<key alias="movedItems">Moved %0% items</key>
|
||||
<key alias="movedItemOfItem">Moved %0% out of %1% item</key>
|
||||
<key alias="movedItemOfItems">Moved %0% out of %1% items</key>
|
||||
|
||||
<key alias="copiedItem">Copied %0% item</key>
|
||||
<key alias="copiedItems">Copied %0% items</key>
|
||||
<key alias="copiedItemOfItem">Copied %0% out of %1% item</key>
|
||||
@@ -254,8 +249,6 @@
|
||||
<key alias="missingTitle">אנא בחר כותרת</key>
|
||||
<key alias="missingType">אנא בחר סוג</key>
|
||||
<key alias="pictureResizeBiggerThanOrg">הינך עומד לשנות את התמונה לגודל גדול יותר מהמקור, האם ברצונך להמשיך</key>
|
||||
<key alias="pythonErrorHeader">שגיאות ב- python script</key>
|
||||
<key alias="pythonErrorText">ה- python script לא נשמר, מכיל שגיאות</key>
|
||||
<key alias="startNodeDoesNotExists">הפריט תוכן ההתחלתי נמחק, צור קשר עם מנהל האתר.</key>
|
||||
<key alias="stylesMustMarkBeforeSelect">תחילה יש לסמן תוכן לפני שינוי עיצוב</key>
|
||||
<key alias="stylesNoStylesOnPage">סגנונות עיצוב פעילים לא זמינים</key>
|
||||
@@ -341,7 +334,8 @@
|
||||
<key alias="showPageOnSend">הצג עמוד בשליחה</key>
|
||||
<key alias="size">גודל</key>
|
||||
<key alias="sort">סדר</key>
|
||||
<key alias="submit">Submit</key> <!-- TODO: Translate this -->
|
||||
<key alias="submit">Submit</key>
|
||||
<!-- TODO: Translate this -->
|
||||
<key alias="type">סוג</key>
|
||||
<key alias="typeToSearch">הקלד לחיפוש...</key>
|
||||
<key alias="up">למעלה</key>
|
||||
@@ -489,7 +483,6 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
</area>
|
||||
<area alias="login">
|
||||
<key alias="bottomText"><![CDATA[<p style="text-align:right;">© 2001 - %0% <br /><a href="http://umbraco.com" style="text-decoration: none" target="_blank">umbraco.com</a></p> ]]></key>
|
||||
<key alias="topText">ברוכים הבאים לאומברקו, יש להזין שם משתמש וסיסמה בשדות למטה:</key>
|
||||
</area>
|
||||
<area alias="main">
|
||||
<key alias="dashboard">לוח הבקרה</key>
|
||||
@@ -710,10 +703,6 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="fileSavedHeader">הקובץ נשמר</key>
|
||||
<key alias="fileSavedText">הקובץ נשמר ללא שגיאות</key>
|
||||
<key alias="languageSaved">שפה נשמרה</key>
|
||||
<key alias="pythonErrorHeader">Python script לא נשמרו</key>
|
||||
<key alias="pythonErrorText">Python script לא נשמרו עקב שגיאות</key>
|
||||
<key alias="pythonSavedHeader">Python script נשמר</key>
|
||||
<key alias="pythonSavedText">לא נמצאו שגיאות ב- python script</key>
|
||||
<key alias="templateErrorHeader">התבנית לא נשמרה</key>
|
||||
<key alias="templateErrorText">שים לב שאין 2 תבניות עם אותו השם/כינוי</key>
|
||||
<key alias="templateSavedHeader">התבנית נשמרה</key>
|
||||
@@ -739,27 +728,20 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="template">תבנית</key>
|
||||
</area>
|
||||
<area alias="grid">
|
||||
<key alias="rte">Rich Text Editor</key>
|
||||
<key alias="media">Image</key>
|
||||
<key alias="macro">Macro</key>
|
||||
<key alias="embed">Embed</key>
|
||||
<key alias="headline">Headline</key>
|
||||
<key alias="quote">Quote</key>
|
||||
<key alias="insertControl">Choose type of content</key>
|
||||
<key alias="chooseLayout">Choose a layout</key>
|
||||
<key alias="addRows">Add a row</key>
|
||||
<key alias="addElement">Add content</key>
|
||||
<key alias="dropElement">Drop content</key>
|
||||
<key alias="settingsApplied">Settings applied</key>
|
||||
|
||||
<key alias="contentNotAllowed">This content is not allowed here</key>
|
||||
<key alias="contentAllowed">This content is allowed here</key>
|
||||
|
||||
<key alias="clickToEmbed">Click to embed</key>
|
||||
<key alias="clickToInsertImage">Click to insert image</key>
|
||||
<key alias="placeholderImageCaption">Image caption...</key>
|
||||
<key alias="placeholderWriteHere">Write here...</key>
|
||||
|
||||
<key alias="gridLayouts">Grid Layouts</key>
|
||||
<key alias="gridLayoutsDetail">Layouts are the overall work area for the grid editor, usually you only need one or two different layouts</key>
|
||||
<key alias="addGridLayout">Add Grid Layout</key>
|
||||
@@ -768,18 +750,12 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="rowConfigurationsDetail">Rows are predefined cells arranged horizontally</key>
|
||||
<key alias="addRowConfiguration">Add row configuration</key>
|
||||
<key alias="addRowConfigurationDetail">Adjust the row by setting cell widths and adding additional cells</key>
|
||||
|
||||
<key alias="columns">Columns</key>
|
||||
<key alias="columnsDetails">Total combined number of columns in the grid layout</key>
|
||||
|
||||
<key alias="settings">Settings</key>
|
||||
<key alias="settingsDetails">Configure what settings editors can change</key>
|
||||
|
||||
<key alias="styles">Styles</key>
|
||||
<key alias="stylesDetails">Configure what styling editors can change</key>
|
||||
|
||||
<key alias="settingDialogDetails">Settings will only save if the entered json configuration is valid</key>
|
||||
|
||||
<key alias="allowAllEditors">Allow all editors</key>
|
||||
<key alias="allowAllRowConfigurations">Allow all row configurations</key>
|
||||
</area>
|
||||
@@ -811,15 +787,7 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="withTime">כן, עם שעה. תו מפריד: </key>
|
||||
</area>
|
||||
<area alias="translation">
|
||||
<key alias="assignedTasks">משימות משוייכות אליך</key>
|
||||
<key alias="assignedTasksHelp"><![CDATA[ הרשימה הבאה מציגה את משימות התרגום <strong>שמשוייכות אלייך</strong>. כדי לצפות בפרטים נוספים הכוללים תגובות, יש ללחוץ על "פרטים" או על שם העמוד.
|
||||
ניתן בנוסף להוריד את הקובץ כ XML ישירות למחשב על ידי לחיצה ב"הורד קובץ XML".<br/>
|
||||
כדי לסגור את משימת התרגום, אנא בחר בצפיה נרחבת ואז יש ללחוץ על כפתור "סגור משימה".
|
||||
]]></key>
|
||||
<key alias="closeTask">סגור משימה</key>
|
||||
<key alias="details">פרטי תירגום</key>
|
||||
<key alias="downloadAllAsXml">הורד את כל התירגומים כקובץ xml</key>
|
||||
<key alias="downloadTaskAsXml">הורד קובץ xml</key>
|
||||
<key alias="DownloadXmlDTD">הורד xml DTD</key>
|
||||
<key alias="fields">שדות</key>
|
||||
<key alias="includeSubpages">כלול דפי משנה</key>
|
||||
@@ -837,17 +805,9 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
המשך יום נעים.
|
||||
|
||||
]]></key>
|
||||
<key alias="mailSubject">[%0%] משימות תירגום עבור %1%</key>
|
||||
<key alias="noTranslators">לא נמצאו משתמשמים המוגדרים כמתרגמים. יש ליצור משתמש המוגדר כמתרגם לפני שליחת תוכן לתירגום</key>
|
||||
<key alias="ownedTasks">משימות שנוצרו על ידך</key>
|
||||
<key alias="ownedTasksHelp"><![CDATA[ הרשימה הבאה מציגה עמודים <strong>שנוצרו על ידיך</strong>. כדי לצפות בפרטים נוספים הכוללים תגובות,
|
||||
יש ללחוץ על "פרטי תרגום" או על ידי שם העמוד. ניתן בנוסף להוריד את העמוד כקובץ XML ישירות למחשב על ידי לחיצה על "הורד קובץ XML".
|
||||
כדי לסגור את משימת התרגום, אנא בחר בצפיה נרחבת ואז יש ללחוץ על כפתור "סגור משימה".
|
||||
]]></key>
|
||||
<key alias="pageHasBeenSendToTranslation">העמוד '%0%' נשלח לתירגום</key>
|
||||
<key alias="sendToTranslate">שלח את העמוד '%0%' לתירגום</key>
|
||||
<key alias="taskAssignedBy">הוקצה על ידי</key>
|
||||
<key alias="taskOpened">משימה נפתחה</key>
|
||||
<key alias="totalWords">סך הכל מילים</key>
|
||||
<key alias="translateTo">תרגם עבור</key>
|
||||
<key alias="translationDone">התירגום הושלם.</key>
|
||||
@@ -877,7 +837,6 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="documentTypes">סוגי מסמכים</key>
|
||||
<key alias="packager">חבילות</key>
|
||||
<key alias="packages">חבילות</key>
|
||||
<key alias="python">קבצי פייתון</key>
|
||||
<key alias="repositories">התקן מתוך מאגר</key>
|
||||
<key alias="runway">התקן Runway</key>
|
||||
<key alias="runwayModules">מודולי Runway</key>
|
||||
@@ -932,4 +891,4 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="userTypes">סוגי משתמש</key>
|
||||
<key alias="writer">כותב</key>
|
||||
</area>
|
||||
</language>
|
||||
</language>
|
||||
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<language alias="it" intName="Italian" localName="italiano" lcid="16" culture="it-IT">
|
||||
<creator>
|
||||
<name>The Umbraco community</name>
|
||||
@@ -35,7 +35,7 @@
|
||||
<key alias="unpublish">Annulla pubblicazione</key>
|
||||
<key alias="update">Aggiorna</key>
|
||||
</area>
|
||||
<area alias="assignDomain">
|
||||
<area alias="assignDomain">
|
||||
<key alias="addNew">Aggiungi nuovo dominio</key>
|
||||
<key alias="domain">Dominio</key>
|
||||
<key alias="domainCreated"><![CDATA[Il dominio '%0%' è stato creato]]></key>
|
||||
@@ -135,27 +135,22 @@
|
||||
</area>
|
||||
<area alias="bulk">
|
||||
<key alias="done">Fatto</key>
|
||||
|
||||
<key alias="deletedItem">Elimianto %0% elemento</key>
|
||||
<key alias="deletedItems">Elimianto %0% elementi</key>
|
||||
<key alias="deletedItemOfItem">Eliminato %0% su %1% elemento</key>
|
||||
<key alias="deletedItemOfItems">Eliminato %0% su %1% elementi</key>
|
||||
|
||||
<key alias="publishedItem">Pubblicato %0% elemento</key>
|
||||
<key alias="publishedItems">Pubblicato %0% elementi</key>
|
||||
<key alias="publishedItemOfItem">Pubblicato %0% su %1% elemento</key>
|
||||
<key alias="publishedItemOfItems">Pubblicato %0% su %1% elementi</key>
|
||||
|
||||
<key alias="unpublishedItem">%0% elemento non pubblicato</key>
|
||||
<key alias="unpublishedItems">%0% elementi non pubblicati</key>
|
||||
<key alias="unpublishedItemOfItem">Elementi non pubblicati - %0% su %1%</key>
|
||||
<key alias="unpublishedItemOfItems">Elementi non pubblicati - %0% su %1%</key>
|
||||
|
||||
<key alias="movedItem">Spostato %0% elemento</key>
|
||||
<key alias="movedItems">Spsotato %0% elementi</key>
|
||||
<key alias="movedItemOfItem">Spostato %0% su %1% elemento</key>
|
||||
<key alias="movedItemOfItems">Spostato %0% su %1% elementi</key>
|
||||
|
||||
<key alias="copiedItem">Copiato %0% elemento</key>
|
||||
<key alias="copiedItems">Copiato %0% elementi</key>
|
||||
<key alias="copiedItemOfItem">Copiato %0% su %1% elemento</key>
|
||||
@@ -173,7 +168,7 @@
|
||||
<key alias="confirmlogout"><![CDATA[Sei sicuro?]]></key>
|
||||
<key alias="confirmSure"><![CDATA[Sei sicuro?]]></key>
|
||||
<key alias="cut">Taglia</key>
|
||||
<key alias="editdictionary">Modifica elemento Dictionary</key>
|
||||
<key alias="editdictionary">Modifica elemento Dictionary</key>
|
||||
<key alias="editlanguage">Modifica il linguaggio</key>
|
||||
<key alias="insertAnchor">Inserisci il link locale</key>
|
||||
<key alias="insertCharacter">Inserisci carattere</key>
|
||||
@@ -255,8 +250,6 @@
|
||||
<key alias="missingTitle"><![CDATA[Per favore inserisci un titolo]]></key>
|
||||
<key alias="missingType"><![CDATA[Per favore scegli un tipo]]></key>
|
||||
<key alias="pictureResizeBiggerThanOrg"><![CDATA[Stai allargano l'immagine più dell'originale. Sei sicuro che vuoi procedere?]]></key>
|
||||
<key alias="pythonErrorHeader"><![CDATA[Errore nello script python]]></key>
|
||||
<key alias="pythonErrorText"><![CDATA[Lo script python non è stato salvato, perchè contiene degli errori]]></key>
|
||||
<key alias="startNodeDoesNotExists"><![CDATA[Nodo iniziale cancellato, per favore contatta il tuo amministratore]]></key>
|
||||
<key alias="stylesMustMarkBeforeSelect"><![CDATA[Per favore evidenzia il contenuto prima di cambiare lo stile]]></key>
|
||||
<key alias="stylesNoStylesOnPage"><![CDATA[Nessuno stile attivo disponibile]]></key>
|
||||
@@ -343,7 +336,8 @@
|
||||
<key alias="showPageOnSend">Mostra la pagina inviata</key>
|
||||
<key alias="size">Dimensione</key>
|
||||
<key alias="sort">Ordina</key>
|
||||
<key alias="submit">Submit</key> <!-- TODO: Translate this -->
|
||||
<key alias="submit">Submit</key>
|
||||
<!-- TODO: Translate this -->
|
||||
<key alias="type">Tipo</key>
|
||||
<key alias="typeToSearch"><![CDATA[Parola da cercare...]]></key>
|
||||
<key alias="up">Su</key>
|
||||
@@ -378,10 +372,8 @@
|
||||
<key alias="databaseHeader"><![CDATA[Configurazione database]]></key>
|
||||
<key alias="databaseInstall"><![CDATA[Premi il tasto <strong>installa</strong> per installare il database Umbraco %0% ]]></key>
|
||||
<key alias="databaseInstallDone"><![CDATA[Umbraco %0% è stato copiato nel tuo database. Premi <strong>Avanti</strong> per proseguire.]]></key>
|
||||
<key alias="databaseNotFound">
|
||||
<![CDATA[<p>Database non trovato! Perfavore, controlla che le informazioni della stringa di connessione nel file "web.config" siano corrette.</p>
|
||||
<p>Per procedere, edita il file "web.config" (utilizzando Visual Studio o l'editor di testo che preferisci), scorri in basso, aggiungi la stringa di connessione per il database chiamato "umbracoDbDSN" e salva il file.</p><p>Clicca il tasto <strong>riprova</strong> quando hai finito.<br /><a href="https://our.umbraco.com/documentation/Using-Umbraco/Config-files/webconfig7" target="_blank"> Maggiori dettagli per la modifica del file web.config qui.</a></p>]]>
|
||||
</key>
|
||||
<key alias="databaseNotFound"><![CDATA[<p>Database non trovato! Perfavore, controlla che le informazioni della stringa di connessione nel file "web.config" siano corrette.</p>
|
||||
<p>Per procedere, edita il file "web.config" (utilizzando Visual Studio o l'editor di testo che preferisci), scorri in basso, aggiungi la stringa di connessione per il database chiamato "umbracoDbDSN" e salva il file.</p><p>Clicca il tasto <strong>riprova</strong> quando hai finito.<br /><a href="https://our.umbraco.com/documentation/Using-Umbraco/Config-files/webconfig7" target="_blank"> Maggiori dettagli per la modifica del file web.config qui.</a></p>]]></key>
|
||||
<key alias="databaseText"><![CDATA[Per completare questo passaggio, devi conoscere alcune informazioni riguardanti il tuo database server ("connection string"). Se è necessario contatta il tuo ISP per reperire le informazioni necessarie. Se stai effettuando l'installazione in locale o su un server, puoi richiederle al tuo amministratore di sistema]]></key>
|
||||
<key alias="databaseUpgrade"><![CDATA[<p>Premi il tasto <strong>aggiorna</strong> per aggiornare il database ad Umbraco %0%</p><p>Non preoccuparti, il contenuto non verrà perso e tutto continuerà a funzionare dopo l'aggiornamento!</p>]]></key>
|
||||
<key alias="databaseUpgradeDone"><![CDATA[Il tuo database è stato aggiornato all'ultima versione %0%.<br />Premi il tasto <strong>Avanti</strong> per continuare.]]></key>
|
||||
@@ -442,10 +434,8 @@ Hai installato Runway, quindi perché non dare uno sguardo al vostro nuovo sito
|
||||
Fatti aiutare dalla nostra community, consulta la documentazione o guarda alcuni video gratuiti su come costruire un semplice sito web, come usare i pacchetti e una guida rapida alla terminologia Umbraco]]></key>
|
||||
<key alias="theEndHeader"><![CDATA[Umbraco %0% è installato e pronto per l'uso]]></key>
|
||||
<key alias="theEndInstallFailed"><![CDATA[Per terminare l'installazione, dovrai modificare manualmente il file <strong>/web.config</strong> e aggiornare la chiave AppSetting <strong>UmbracoConfigurationStatus</strong> impostando il valore <strong>'%0%'</strong>.]]></key>
|
||||
<key alias="theEndInstallSuccess">
|
||||
<![CDATA[Puoi <strong>iniziare immediatamente</strong> cliccando sul bottone "Avvia Umbraco". <br />Se sei <strong>nuovo a Umbraco</strong>, si possono trovare un sacco di risorse sulle nostre pagine Getting Started.]]></key>
|
||||
<key alias="theEndOpenUmbraco">
|
||||
<![CDATA[<h3>Avvia Umbraco</h3>
|
||||
<key alias="theEndInstallSuccess"><![CDATA[Puoi <strong>iniziare immediatamente</strong> cliccando sul bottone "Avvia Umbraco". <br />Se sei <strong>nuovo a Umbraco</strong>, si possono trovare un sacco di risorse sulle nostre pagine Getting Started.]]></key>
|
||||
<key alias="theEndOpenUmbraco"><![CDATA[<h3>Avvia Umbraco</h3>
|
||||
Per gestire il tuo sito web, è sufficiente aprire il back office di Umbraco e iniziare ad aggiungere i contenuti, aggiornando i modelli e i fogli di stile o aggiungere nuove funzionalità]]></key>
|
||||
<key alias="Unavailable">Connessione al database non riuscita.</key>
|
||||
<key alias="Version3">Umbraco Versione 3</key>
|
||||
@@ -465,7 +455,6 @@ Per gestire il tuo sito web, è sufficiente aprire il back office di Umbraco e i
|
||||
</area>
|
||||
<area alias="login">
|
||||
<key alias="bottomText"><![CDATA[<p style="text-align:right;">© 2001 - %0% <br /><a href="http://umbraco.com" style="text-decoration: none" target="_blank">umbraco.com</a></p> ]]></key>
|
||||
<key alias="topText">Benvenuti in Umbraco, digita il tuo username e la tua password nelle caselle seguenti:</key>
|
||||
</area>
|
||||
<area alias="main">
|
||||
<key alias="dashboard">Dashboard</key>
|
||||
@@ -500,8 +489,7 @@ Per gestire il tuo sito web, è sufficiente aprire il back office di Umbraco e i
|
||||
|
||||
Grazie da Umbraco
|
||||
]]></key>
|
||||
<key alias="mailBodyHtml">
|
||||
<![CDATA[<p>Salve %0%</p>
|
||||
<key alias="mailBodyHtml"><![CDATA[<p>Salve %0%</p>
|
||||
|
||||
<p>Questa è un'email automatica per informare che l'azione <strong>'%1%'</strong>
|
||||
è stata eseguita sulla pagina <a href="http://%4%/actions/preview.aspx?id=%5%"><strong>'%2%'</strong></a>
|
||||
@@ -693,14 +681,10 @@ Per gestire il tuo sito web, è sufficiente aprire il back office di Umbraco e i
|
||||
<key alias="fileSavedHeader"><![CDATA[File salvato]]></key>
|
||||
<key alias="fileSavedText"><![CDATA[File salvato con successo]]></key>
|
||||
<key alias="languageSaved"><![CDATA[Lingua salvata]]></key>
|
||||
<key alias="partialViewSavedHeader">Partial view salvata</key>
|
||||
<key alias="partialViewSavedText">Partial view salvata senza errori!</key>
|
||||
<key alias="partialViewErrorHeader">Partial view non salvata</key>
|
||||
<key alias="partialViewSavedHeader">Partial view salvata</key>
|
||||
<key alias="partialViewSavedText">Partial view salvata senza errori!</key>
|
||||
<key alias="partialViewErrorHeader">Partial view non salvata</key>
|
||||
<key alias="partialViewErrorText">Errore durante il salvataggio del file.</key>
|
||||
<key alias="pythonErrorHeader"><![CDATA[Script Python non salvato]]></key>
|
||||
<key alias="pythonErrorText"><![CDATA[A causa di un errore lo script Python non può essere salvato]]></key>
|
||||
<key alias="pythonSavedHeader"><![CDATA[Script Python salvato]]></key>
|
||||
<key alias="pythonSavedText"><![CDATA[Non ci sono errori nello script Python]]></key>
|
||||
<key alias="templateErrorHeader"><![CDATA[Template non salvato]]></key>
|
||||
<key alias="templateErrorText"><![CDATA[Per favore controlla di non avere due templates con lo stesso alias]]></key>
|
||||
<key alias="templateSavedHeader"><![CDATA[Template salvato]]></key>
|
||||
@@ -726,27 +710,20 @@ Per gestire il tuo sito web, è sufficiente aprire il back office di Umbraco e i
|
||||
<key alias="template">Template</key>
|
||||
</area>
|
||||
<area alias="grid">
|
||||
<key alias="rte">Rich Text Editor</key>
|
||||
<key alias="media">Image</key>
|
||||
<key alias="macro">Macro</key>
|
||||
<key alias="embed">Embed</key>
|
||||
<key alias="headline">Headline</key>
|
||||
<key alias="quote">Quote</key>
|
||||
<key alias="insertControl">Seleziona il tipo di contenuto</key>
|
||||
<key alias="chooseLayout">Seleziona un layout</key>
|
||||
<key alias="addRows">Aggiungi una riga</key>
|
||||
<key alias="addElement">Aggiungi contenuto</key>
|
||||
<key alias="dropElement">Elimina contenuto</key>
|
||||
<key alias="settingsApplied">Impostazioni applicati</key>
|
||||
|
||||
<key alias="contentNotAllowed">Questo contenuto non è consentito qui</key>
|
||||
<key alias="contentAllowed">Questo contenuto è consentito qui</key>
|
||||
|
||||
<key alias="clickToEmbed">Clicca per incorporare</key>
|
||||
<key alias="clickToInsertImage">Clicca per inserire l'immagine</key>
|
||||
<key alias="placeholderImageCaption">Didascalia dell'immagine...</key>
|
||||
<key alias="placeholderWriteHere">Scrivi qui...</key>
|
||||
|
||||
<key alias="gridLayouts">I Grid Layout</key>
|
||||
<key alias="gridLayoutsDetail">I layout sono l'area globale di lavoro per il grid editor, di solito ti serve solo uno o due layout differenti</key>
|
||||
<key alias="addGridLayout">Aggiungi un Grid Layout</key>
|
||||
@@ -755,18 +732,12 @@ Per gestire il tuo sito web, è sufficiente aprire il back office di Umbraco e i
|
||||
<key alias="rowConfigurationsDetail">Le righe sono le colonne predefinite disposte orizzontalmente</key>
|
||||
<key alias="addRowConfiguration">Aggiungi configurazione della riga</key>
|
||||
<key alias="addRowConfigurationDetail">Sistema la riga impostando la larghezza della colonna ed aggiungendo ulteriori colonne</key>
|
||||
|
||||
<key alias="columns">Colonne</key>
|
||||
<key alias="columnsDetails">Totale combinazioni delle colonne nel grid layout</key>
|
||||
|
||||
<key alias="settings">Impostazioni</key>
|
||||
<key alias="settingsDetails">Configura le impostazioni che possono essere cambiate dai editori</key>
|
||||
|
||||
<key alias="styles">Stili</key>
|
||||
<key alias="stylesDetails">Configura i stili che possono essere cambiati dai editori</key>
|
||||
|
||||
<key alias="settingDialogDetails">Le impostazioni verranno salvate soltanto se è valido il json inserito</key>
|
||||
|
||||
<key alias="allowAllEditors">Permetti tutti i editor</key>
|
||||
<key alias="allowAllRowConfigurations">Permetti tutte le configurazioni della riga</key>
|
||||
</area>
|
||||
@@ -800,15 +771,7 @@ Per gestire il tuo sito web, è sufficiente aprire il back office di Umbraco e i
|
||||
<key alias="withTime"><![CDATA[Si, aggiungi l'ora. Separatore: ]]></key>
|
||||
</area>
|
||||
<area alias="translation">
|
||||
<key alias="assignedTasks">Task assegnati a te</key>
|
||||
<key alias="assignedTasksHelp"><![CDATA[ La lista in basso mostra le traduzioni <strong>assegnate a te</strong>. Per vedere i dettagli, commenti inclusi, clicca su "Dettagli" o sul nome della pagina.
|
||||
Puoi anche scaricare la pagina direttamente in formato XML cliccando sul link "Scarica Xml". <br/>
|
||||
Per chiudere una traduzione, vai sulla vista Dettagli e clicca sul pulsante "Chiudi".
|
||||
]]></key>
|
||||
<key alias="closeTask">chiudi task</key>
|
||||
<key alias="details">Dettagli</key>
|
||||
<key alias="downloadAllAsXml">Scarica tutte le traduzioni in formato xml</key>
|
||||
<key alias="downloadTaskAsXml">Scarica xml</key>
|
||||
<key alias="DownloadXmlDTD">Scarica xml DTD</key>
|
||||
<key alias="fields">Campi</key>
|
||||
<key alias="includeSubpages">Includi le sottopagine</key>
|
||||
@@ -827,17 +790,9 @@ Per gestire il tuo sito web, è sufficiente aprire il back office di Umbraco e i
|
||||
|
||||
Grazie da Umbraco
|
||||
]]></key>
|
||||
<key alias="mailSubject">[%0%] Traduzione per %1%</key>
|
||||
<key alias="noTranslators"><![CDATA[Non è stato trovato nessun utente con ruolo di traduttore. Crealo prima di inviare il contenuto per la traduzione]]></key>
|
||||
<key alias="ownedTasks"><![CDATA[Task creato da te]]></key>
|
||||
<key alias="ownedTasksHelp"><![CDATA[La lista sotto contiene le pagine <strong>create da te</strong>. Per vedere i dettagli, inclusi i commenti,
|
||||
clicca su "Dettagli" o sul nome della pagina. Puoi anche scaricare la pagina direttamente in formato XML cliccando sul link "Scarica Xml".
|
||||
Per chiudere una traduzione, vai sulla vista Dettagli e clicca sul pulsante "Chiudi".
|
||||
]]></key>
|
||||
<key alias="pageHasBeenSendToTranslation"><![CDATA[La pagina '%0%' è stata inviata per la traduzione]]></key>
|
||||
<key alias="sendToTranslate"><![CDATA[Invia la pagina per la traduzione]]></key>
|
||||
<key alias="taskAssignedBy"><![CDATA[Assegnato da]]></key>
|
||||
<key alias="taskOpened"><![CDATA[Task Aperto]]></key>
|
||||
<key alias="totalWords"><![CDATA[Totale parole]]></key>
|
||||
<key alias="translateTo"><![CDATA[Si traduce in]]></key>
|
||||
<key alias="translationDone"><![CDATA[Traduzione completata.]]></key>
|
||||
@@ -866,8 +821,7 @@ Per gestire il tuo sito web, è sufficiente aprire il back office di Umbraco e i
|
||||
<key alias="memberTypes">Tipologia Membri</key>
|
||||
<key alias="documentTypes">Tipi di documento</key>
|
||||
<key alias="packager">Pacchetti</key>
|
||||
<key alias="packages">Pacchetti</key>
|
||||
<key alias="python">Files Python</key>
|
||||
<key alias="packages">Pacchetti</key>
|
||||
<key alias="repositories">Installa dal repository</key>
|
||||
<key alias="runway">Installa Runway</key>
|
||||
<key alias="runwayModules">Moduli Runway</key>
|
||||
@@ -926,4 +880,4 @@ Per gestire il tuo sito web, è sufficiente aprire il back office di Umbraco e i
|
||||
<key alias="userTypes"><![CDATA[Tipi Utente]]></key>
|
||||
<key alias="writer">Writer</key>
|
||||
</area>
|
||||
</language>
|
||||
</language>
|
||||
@@ -63,7 +63,6 @@
|
||||
</area>
|
||||
<area alias="buttons">
|
||||
<key alias="select">選択</key>
|
||||
<key alias="selectCurrentFolder">現在のフォルダを選択</key>
|
||||
<key alias="somethingElse">その他のアクション</key>
|
||||
<key alias="bold">太字</key>
|
||||
<key alias="deindent">インデント解除</key>
|
||||
@@ -86,13 +85,12 @@
|
||||
<key alias="save">保存</key>
|
||||
<key alias="saveAndPublish">保存及び公開</key>
|
||||
<key alias="saveToPublish">保存して承認に送る</key>
|
||||
<key alias="saveListView">リスト ビューの保存</key>
|
||||
<key alias="saveListView">リスト ビューの保存</key>
|
||||
<key alias="showPage">プレビュー</key>
|
||||
<key alias="showPageDisabled">テンプレートが指定されていないのでプレビューは無効になっています</key>
|
||||
<key alias="styleChoose">スタイルの選択</key>
|
||||
<key alias="styleShow">スタイルの表示</key>
|
||||
<key alias="tableInsert">表の挿入</key>
|
||||
<key alias="generateModels">モデルを生成</key>
|
||||
</area>
|
||||
<area alias="changeDocType">
|
||||
<key alias="changeDocTypeInstruction">ドキュメントタイプを変更するには、まず有効なドキュメントタイプのリストから選択します</key>
|
||||
@@ -132,7 +130,7 @@
|
||||
<key alias="itemChanged">このページは公開後変更されています</key>
|
||||
<key alias="itemNotPublished">このページは公開されていません</key>
|
||||
<key alias="lastPublished">公開日時</key>
|
||||
<key alias="noItemsToShow">表示するアイテムはありません</key>
|
||||
<key alias="noItemsToShow">表示するアイテムはありません</key>
|
||||
<key alias="listViewNoItems" version="7.1.5">リストに表示するアイテムはありません</key>
|
||||
<key alias="mediatype">メディアタイプ</key>
|
||||
<key alias="mediaLinks">メディアの項目へのリンク</key>
|
||||
@@ -167,13 +165,10 @@
|
||||
</area>
|
||||
<area alias="media">
|
||||
<key alias="clickToUpload">クリックしてアップロードする</key>
|
||||
<key alias="dropFilesHere">ファイルをここへドロップ..</key>
|
||||
<key alias="urls">メディアへリンク</key>
|
||||
<key alias="orClickHereToUpload">またはクリックしてファイルを選択</key>
|
||||
<key alias="onlyAllowedFiles">使用可能なファイル タイプ</key>
|
||||
<key alias="maxFileSize">ファイルの最大サイズ</key>
|
||||
</area>
|
||||
<area alias="member">
|
||||
<area alias="member">
|
||||
<key alias="createNewMember">メンバーの新規作成</key>
|
||||
<key alias="allMembers">全てのメンバー</key>
|
||||
</area>
|
||||
@@ -183,7 +178,7 @@
|
||||
<key alias="updateData">型とタイトルを選んでください</key>
|
||||
<key alias="noDocumentTypes" version="7.0"><![CDATA[利用可能なドキュメントタイプがありません。以下の設定セクションでこれらを有効にする必要があります。<strong>"document types"</strong>.]]></key>
|
||||
<key alias="noMediaTypes" version="7.0"><![CDATA[利用可能なメディアタイプがありません。以下の設定セクションでこれらを有効にする必要があります。<strong>"media types"</strong>.]]></key>
|
||||
<key alias="documentTypeWithoutTemplate">テンプレートなしのドキュメント タイプ</key>
|
||||
<key alias="documentTypeWithoutTemplate">テンプレートなしのドキュメント タイプ</key>
|
||||
</area>
|
||||
<area alias="dashboard">
|
||||
<key alias="browser">ウェブサイトを参照する</key>
|
||||
@@ -202,27 +197,22 @@
|
||||
</area>
|
||||
<area alias="bulk">
|
||||
<key alias="done">Done</key>
|
||||
|
||||
<key alias="deletedItem">Deleted %0% item</key>
|
||||
<key alias="deletedItems">Deleted %0% items</key>
|
||||
<key alias="deletedItemOfItem">Deleted %0% out of %1% item</key>
|
||||
<key alias="deletedItemOfItems">Deleted %0% out of %1% items</key>
|
||||
|
||||
<key alias="publishedItem">Published %0% item</key>
|
||||
<key alias="publishedItems">Published %0% items</key>
|
||||
<key alias="publishedItemOfItem">Published %0% out of %1% item</key>
|
||||
<key alias="publishedItemOfItems">Published %0% out of %1% items</key>
|
||||
|
||||
<key alias="unpublishedItem">Unpublished %0% item</key>
|
||||
<key alias="unpublishedItems">Unpublished %0% items</key>
|
||||
<key alias="unpublishedItemOfItem">Unpublished %0% out of %1% item</key>
|
||||
<key alias="unpublishedItemOfItems">Unpublished %0% out of %1% items</key>
|
||||
|
||||
<key alias="movedItem">Moved %0% item</key>
|
||||
<key alias="movedItems">Moved %0% items</key>
|
||||
<key alias="movedItemOfItem">Moved %0% out of %1% item</key>
|
||||
<key alias="movedItemOfItems">Moved %0% out of %1% items</key>
|
||||
|
||||
<key alias="copiedItem">Copied %0% item</key>
|
||||
<key alias="copiedItems">Copied %0% items</key>
|
||||
<key alias="copiedItemOfItem">Copied %0% out of %1% item</key>
|
||||
@@ -275,7 +265,6 @@
|
||||
<key alias="thumbnailimageclickfororiginal">クリックすると画像がフルサイズで表示されます</key>
|
||||
<key alias="treepicker">項目の選択</key>
|
||||
<key alias="viewCacheItem">キャッシュされている項目の表示</key>
|
||||
<key alias="createFolder">フォルダーの作成...</key>
|
||||
<key alias="relateToOriginalLabel">オリジナルに関連付ける</key>
|
||||
<key alias="theFriendliestCommunity">フレンドリーなコミュニティ</key>
|
||||
<key alias="linkToPage">ページへリンク</key>
|
||||
@@ -310,27 +299,20 @@
|
||||
<key alias="password">パスワードを入力...</key>
|
||||
<key alias="nameentity">%0%と命名します...</key>
|
||||
<key alias="entername">ここに名称を入力してください...</key>
|
||||
<key alias="label">ラベル...</key>
|
||||
<key alias="label">ラベル...</key>
|
||||
<key alias="enterDescription">説明を入力してください...</key>
|
||||
<key alias="search">検索する...</key>
|
||||
<key alias="filter">条件で絞り込む...</key>
|
||||
<key alias="enterTags">入力してタグを追加 (各タグの後に Enter を押してください)...</key>
|
||||
</area>
|
||||
<area alias="editcontenttype">
|
||||
<key alias="allowAtRoot" version="7.2">ルートノードとして許可する</key>
|
||||
<key alias="allowAtRootDesc" version="7.2">これを有効にするとコンテンツとメディアツリーのルートレベルに作成することができます</key>
|
||||
<key alias="allowedchildnodetypes">子ノードとして許可するタイプ</key>
|
||||
<key alias="contenttypecompositions">ドキュメント タイプ構成</key>
|
||||
<key alias="create">新規作成</key>
|
||||
<key alias="deletetab">タブの削除</key>
|
||||
<key alias="description">説明</key>
|
||||
<key alias="newtab">新しいタブ</key>
|
||||
<key alias="tab">タブ</key>
|
||||
<key alias="thumbnail">サムネイル</key>
|
||||
<key alias="hasListView">リストビューを有効にする</key>
|
||||
<key alias="hasListViewDesc" version="7.2">子ノードをツリーに表示せずにリストビューに表示します</key>
|
||||
<key alias="currentListView" version="7.2">現在のリストビュー</key>
|
||||
<key alias="currentListViewDesc" version="7.2">有効なリストビューデータタイプ</key>
|
||||
<key alias="createListView" version="7.2">カスタムリストビューを作成する</key>
|
||||
<key alias="removeListView" version="7.2">カスタムリストビューを削除する</key>
|
||||
</area>
|
||||
@@ -361,26 +343,21 @@
|
||||
<key alias="errorRegExpWithoutTab">%0% は正しい書式ではありません</key>
|
||||
</area>
|
||||
<area alias="errors">
|
||||
<key alias="receivedErrorFromServer">サーバー エラーが発生しました</key>
|
||||
<key alias="receivedErrorFromServer">サーバー エラーが発生しました</key>
|
||||
<key alias="dissallowedMediaType">指定されたファイルタイプは管理者のみに許可されます</key>
|
||||
<key alias="codemirroriewarning">注意! CodeMirrorが設定で有効化されていますが、 Internet Explorerでは不安定なので無効化してください。</key>
|
||||
<key alias="contentTypeAliasAndNameNotNull">新しいプロパティ型のエイリアスと名前の両方を設定してください!</key>
|
||||
<key alias="filePermissionsError">特定のファイルまたはフォルタの読み込み/書き込みアクセスに問題があります</key>
|
||||
<key alias="macroErrorLoadingPartialView">Partial View スクリプトの読み込みエラー (ファイル: %0%)</key>
|
||||
<key alias="macroErrorLoadingPartialView">Partial View スクリプトの読み込みエラー (ファイル: %0%)</key>
|
||||
<key alias="macroErrorLoadingUsercontrol">userControl の読み込みエラー '%0%'</key>
|
||||
<key alias="macroErrorLoadingCustomControl">customControl の読み込みエラー (アセンブリ: %0%, タイプ: '%1%')</key>
|
||||
<key alias="macroErrorLoadingMacroEngineScript">MacroEngine スクリプトの読み込みエラー (ファイル: %0%)</key>
|
||||
<key alias="missingTitle">タイトルを入力してください</key>
|
||||
<key alias="missingType">型を選択してください</key>
|
||||
<key alias="pictureResizeBiggerThanOrg">元画像より大きくしようとしていますが、本当によろしいのですか?</key>
|
||||
<key alias="pythonErrorHeader">Pythonスクリプトにエラーがあります</key>
|
||||
<key alias="pythonErrorText">1つ以上のエラーがあるのでこのPythonスクリプトは保存できませんでした</key>
|
||||
<key alias="startNodeDoesNotExists">開始ノードが削除されています。管理者に連絡してください。</key>
|
||||
<key alias="stylesMustMarkBeforeSelect">スタイルを変更する前にコンテントをマークしてください</key>
|
||||
<key alias="stylesNoStylesOnPage">有効なスタイルがありません</key>
|
||||
<key alias="tableColMergeLeft">結合したい2つのセルの左側にカーソルを置いてください</key>
|
||||
<key alias="tableSplitNotSplittable">このセルは結合されたものではないので分離する事はできません。</key>
|
||||
<key alias="missingPropertyEditorErrorMessage">このプロパティに使用されているデータタイプにエラーがあります</key>
|
||||
</area>
|
||||
<area alias="general">
|
||||
<key alias="about">Umbracoについて</key>
|
||||
@@ -388,7 +365,7 @@
|
||||
<key alias="actions">アクション選択</key>
|
||||
<key alias="add">追加</key>
|
||||
<key alias="alias">エイリアス</key>
|
||||
<key alias="all">すべて</key>
|
||||
<key alias="all">すべて</key>
|
||||
<key alias="areyousure">確かですか?</key>
|
||||
<key alias="border">枠線</key>
|
||||
<key alias="by">または</key>
|
||||
@@ -426,7 +403,7 @@
|
||||
<key alias="innerMargin">内側の余白</key>
|
||||
<key alias="insert">挿入</key>
|
||||
<key alias="install">インストール</key>
|
||||
<key alias="invalid">無効</key>
|
||||
<key alias="invalid">無効</key>
|
||||
<key alias="justify">位置揃え</key>
|
||||
<key alias="language">言語</key>
|
||||
<key alias="layout">レイアウト</key>
|
||||
@@ -437,7 +414,6 @@
|
||||
<key alias="logout">ログアウト</key>
|
||||
<key alias="macro">マクロ</key>
|
||||
<key alias="move">移動</key>
|
||||
<key alias="more">もっと</key>
|
||||
<key alias="name">名前</key>
|
||||
<key alias="new">新規</key>
|
||||
<key alias="next">次へ</key>
|
||||
@@ -485,44 +461,31 @@
|
||||
<key alias="searchResults">検索結果</key>
|
||||
<key alias="reorder">順序変更</key>
|
||||
<key alias="reorderDone">順序変更終了</key>
|
||||
<key alias="preview">プレビュー</key>
|
||||
<key alias="preview">プレビュー</key>
|
||||
<key alias="changePassword">パスワードの変更</key>
|
||||
<key alias="to">-> </key>
|
||||
<key alias="listView">リスト ビュー</key>
|
||||
<key alias="saving">保存...</key>
|
||||
<key alias="current">現在</key>
|
||||
<key alias="move">移動</key>
|
||||
<key alias="embed">埋め込み</key>
|
||||
</area>
|
||||
|
||||
<area alias="colors">
|
||||
<key alias="black">ブラック</key>
|
||||
<key alias="green">グリーン</key>
|
||||
<key alias="yellow">イエロー</key>
|
||||
<key alias="orange">オレンジ</key>
|
||||
<key alias="blue">ブルー</key>
|
||||
<key alias="red">レッド</key>
|
||||
</area>
|
||||
|
||||
<area alias="shortcuts">
|
||||
<key alias="addTab">タブの追加</key>
|
||||
<key alias="addProperty">プロパティの追加</key>
|
||||
<key alias="addEditor">エディターの追加</key>
|
||||
<key alias="addTemplate">テンプレートの追加</key>
|
||||
<key alias="addChildNode">子ノードの追加</key>
|
||||
<key alias="addChild">子の追加</key>
|
||||
|
||||
<key alias="editDataType">データ タイプの編集</key>
|
||||
|
||||
<key alias="navigateSections">セクションの移動</key>
|
||||
|
||||
<key alias="shortcut">ショートカット</key>
|
||||
<key alias="showShortcuts">ショートカットの表示</key>
|
||||
|
||||
<key alias="toggleListView">リスト ビューの切り替え</key>
|
||||
<key alias="toggleAllowAsRoot">ルートとして許可に切り替え</key>
|
||||
<key alias="addTab">タブの追加</key>
|
||||
<key alias="addProperty">プロパティの追加</key>
|
||||
<key alias="addEditor">エディターの追加</key>
|
||||
<key alias="addTemplate">テンプレートの追加</key>
|
||||
<key alias="addChildNode">子ノードの追加</key>
|
||||
<key alias="addChild">子の追加</key>
|
||||
<key alias="editDataType">データ タイプの編集</key>
|
||||
<key alias="navigateSections">セクションの移動</key>
|
||||
<key alias="shortcut">ショートカット</key>
|
||||
<key alias="showShortcuts">ショートカットの表示</key>
|
||||
<key alias="toggleListView">リスト ビューの切り替え</key>
|
||||
<key alias="toggleAllowAsRoot">ルートとして許可に切り替え</key>
|
||||
</area>
|
||||
|
||||
<area alias="graphicheadline">
|
||||
<key alias="backgroundcolor">背景色</key>
|
||||
<key alias="bold">太字</key>
|
||||
@@ -652,7 +615,6 @@ Runwayをインストールして作られた新しいウェブサイトがど
|
||||
<key alias="renewSession">作業を保存して今すぐ更新</key>
|
||||
</area>
|
||||
<area alias="login">
|
||||
<key alias="greeting0">ハッピー スーパー日曜日</key>
|
||||
<key alias="greeting1">ハッピー マニアック月曜日</key>
|
||||
<key alias="greeting2">ハッピー最高の火曜日</key>
|
||||
<key alias="greeting3">ハッピー ワンダフル水曜日</key>
|
||||
@@ -678,7 +640,7 @@ Runwayをインストールして作られた新しいウェブサイトがど
|
||||
<key alias="noNodeSelected">まだノードが選択されていません。'ok'をクリックする前に上のリストでノードを選択してください。</key>
|
||||
<key alias="notAllowedByContentType">現在のノードは、ドキュメントタイプの設定により選択されたノードの子になることはできません。</key>
|
||||
<key alias="notAllowedByPath">ノードは、自分のサブページには移動できません</key>
|
||||
<key alias="notAllowedAtRoot">現在のノードはルートにできません。</key>
|
||||
<key alias="notAllowedAtRoot">現在のノードはルートにできません。</key>
|
||||
<key alias="notValid">子ドキュメントで権限がないので、その操作はできません。</key>
|
||||
<key alias="relateToOriginal">コピーしたものを元と関係づける</key>
|
||||
</area>
|
||||
@@ -781,22 +743,19 @@ Runwayをインストールして作られた新しいウェブサイトがど
|
||||
<key alias="paSimpleHelp">単一のログインとパスワードで単純に保護したい場合に適します</key>
|
||||
</area>
|
||||
<area alias="publish">
|
||||
<key alias="contentPublishedFailedAwaitingRelease">
|
||||
<![CDATA[
|
||||
<key alias="contentPublishedFailedAwaitingRelease"><![CDATA[
|
||||
%0% ページは公開がスケジュールされているため、公開されませんでした。
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedExpired"><![CDATA[
|
||||
<key alias="contentPublishedFailedExpired"><![CDATA[
|
||||
アイテムの有効期限が切れているため %0% を公開できません。
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedInvalid"><![CDATA[
|
||||
%1% のプロパティがバリデーション定義に違反したため、%0% は公開できませんでした。
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedByEvent">
|
||||
<![CDATA[
|
||||
<key alias="contentPublishedFailedByEvent"><![CDATA[
|
||||
サードパーティのエクステンションがキャンセルされたので、%0% は公開できませんでした。
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedByParent">
|
||||
<![CDATA[
|
||||
<key alias="contentPublishedFailedByParent"><![CDATA[
|
||||
親ページが公開されていないので、%0% は公開できませんでした。
|
||||
]]></key>
|
||||
<key alias="includeUnpublished">非公開の子ページも含めます</key>
|
||||
@@ -814,12 +773,12 @@ Runwayをインストールして作られた新しいウェブサイトがど
|
||||
</area>
|
||||
<area alias="relatedlinks">
|
||||
<key alias="enterExternal">外部リンクを入力</key>
|
||||
<key alias="chooseInternal">内部リンクを選択</key>
|
||||
<key alias="caption">キャプション</key>
|
||||
<key alias="link">リンク</key>
|
||||
<key alias="newWindow">新規ウィンドウで開く</key>
|
||||
<key alias="captionPlaceholder">キャプションを入力</key>
|
||||
<key alias="externalLinkPlaceholder">リンクを入力</key>
|
||||
<key alias="chooseInternal">内部リンクを選択</key>
|
||||
<key alias="caption">キャプション</key>
|
||||
<key alias="link">リンク</key>
|
||||
<key alias="newWindow">新規ウィンドウで開く</key>
|
||||
<key alias="captionPlaceholder">キャプションを入力</key>
|
||||
<key alias="externalLinkPlaceholder">リンクを入力</key>
|
||||
</area>
|
||||
<area alias="imagecropper">
|
||||
<key alias="reset">リセット</key>
|
||||
@@ -851,12 +810,8 @@ Runwayをインストールして作られた新しいウェブサイトがど
|
||||
<key alias="users">ユーザー</key>
|
||||
<key alias="help" version="7.0">ヘルプ</key>
|
||||
<key alias="forms">フォーム</key>
|
||||
<key alias="analytics">アナリティクス</key>
|
||||
</area>
|
||||
<area alias="help">
|
||||
<key alias="goTo">該当のヘルプへ</key>
|
||||
<key alias="helpTopicsFor">ヘルプトピック:</key>
|
||||
<key alias="videoChaptersFor">ヘルプの動画:</key>
|
||||
<key alias="theBestUmbracoVideoTutorials">動画によるチュートリアル</key>
|
||||
</area>
|
||||
<area alias="settings">
|
||||
@@ -876,9 +831,7 @@ Runwayをインストールして作られた新しいウェブサイトがど
|
||||
<key alias="contentTypeUses">このコンテンツタイプの使用</key>
|
||||
<key alias="asAContentMasterType">マスターコンテンツタイプについては、マスターコンテンツタイプからのタブは表示されず、マスターコンテンツタイプでのみ編集することができます。</key>
|
||||
<key alias="noPropertiesDefinedOnTab">このタブにはプロパティが定義されていません、上部のリンクから新しいプロパティを作成してください</key>
|
||||
<key alias="masterDocumentType">マスタードキュメントタイプ</key>
|
||||
<key alias="createMatchingTemplate">テンプレートを作成する</key>
|
||||
<key alias="addIcon">アイコンの追加</key>
|
||||
<key alias="addIcon">アイコンの追加</key>
|
||||
</area>
|
||||
<area alias="sort">
|
||||
<key alias="sortOrder">Sort order</key>
|
||||
@@ -888,8 +841,8 @@ Runwayをインストールして作られた新しいウェブサイトがど
|
||||
<key alias="sortPleaseWait"><![CDATA[ 項目の並べ替えには少し時間がかかります。しばらくお待ちください。]]></key>
|
||||
</area>
|
||||
<area alias="speechBubbles">
|
||||
<key alias="validationFailedHeader">検証</key>
|
||||
<key alias="validationFailedMessage">アイテムを保存する前に検証エラーを修正してください。</key>
|
||||
<key alias="validationFailedHeader">検証</key>
|
||||
<key alias="validationFailedMessage">アイテムを保存する前に検証エラーを修正してください。</key>
|
||||
<key alias="operationFailedHeader">失敗しました</key>
|
||||
<key alias="invalidUserPermissionsText">不十分なユーザー権限により操作を完了できませんでした</key>
|
||||
<key alias="operationCancelledHeader">キャンセルされました</key>
|
||||
@@ -929,10 +882,6 @@ Runwayをインストールして作られた新しいウェブサイトがど
|
||||
<key alias="fileSavedHeader">ファイルを保存しました</key>
|
||||
<key alias="fileSavedText">エラーなくファイルを保存しました</key>
|
||||
<key alias="languageSaved">言語を保存しました</key>
|
||||
<key alias="pythonErrorHeader">Pythonスクリプトは未保存です</key>
|
||||
<key alias="pythonErrorText">Pythonスクリプトはエラーがあるので保存できません</key>
|
||||
<key alias="pythonSavedHeader">Pythonスクリプトを保存しました</key>
|
||||
<key alias="pythonSavedText">Pythonスクリプトにエラーはありません</key>
|
||||
<key alias="templateErrorHeader">テンプレートは未保存です</key>
|
||||
<key alias="templateErrorText">2つのテンプレートで同じエイリアスを使用していないか確認してください</key>
|
||||
<key alias="templateSavedHeader">テンプレートを保存しました</key>
|
||||
@@ -942,11 +891,6 @@ Runwayをインストールして作られた新しいウェブサイトがど
|
||||
<key alias="partialViewSavedText">部分ビューをエラーなしで保存しました!</key>
|
||||
<key alias="partialViewErrorHeader">部分ビューは保存されていません</key>
|
||||
<key alias="partialViewErrorText">ファイルを保存するときにエラーが発生しました。</key>
|
||||
<key alias="scriptSavedHeader">スクリプト ビューが保存されました</key>
|
||||
<key alias="scriptSavedText">スクリプト ビューが正しく保存されました</key>
|
||||
<key alias="scriptErrorHeader">スクリプト ビューが保存されていません</key>
|
||||
<key alias="scriptErrorText">ファイルの保存でエラーが発生しました。</key>
|
||||
<key alias="cssErrorText">ファイルの保存でエラーが発生しました。</key>
|
||||
</area>
|
||||
<area alias="stylesheet">
|
||||
<key alias="aliasHelp">CSSシンタックスを使用 例: h1, .redHeader, .blueTex</key>
|
||||
@@ -967,115 +911,77 @@ Runwayをインストールして作られた新しいウェブサイトがど
|
||||
<key alias="quickGuide">umbraco テンプレートタグのクイックガイド</key>
|
||||
<key alias="template">テンプレート</key>
|
||||
</area>
|
||||
|
||||
<area alias="grid">
|
||||
<key alias="rte">Rich Text Editor</key>
|
||||
<key alias="media">Image</key>
|
||||
<key alias="macro">Macro</key>
|
||||
<key alias="embed">Embed</key>
|
||||
<key alias="headline">Headline</key>
|
||||
<key alias="quote">Quote</key>
|
||||
<key alias="insertControl">挿入するアイテムを選択する</key>
|
||||
<key alias="addLayout">レイアウトを選択</key>
|
||||
<key alias="addRows">行の追加</key>
|
||||
<key alias="addElement">コンテンツの追加</key>
|
||||
<key alias="dropElement">コンテンツのドロップ</key>
|
||||
<key alias="settingsApplied">適用される設定</key>
|
||||
|
||||
<key alias="contentNotAllowed">このコンテンツはここでは許可されていません</key>
|
||||
<key alias="contentAllowed">このコンテンツはここに使用できます</key>
|
||||
|
||||
<key alias="clickToEmbed">クリックして埋め込む</key>
|
||||
<key alias="clickToInsertImage">クリックして画像を挿入する</key>
|
||||
<key alias="placeholderImageCaption">キャプション...</key>
|
||||
<key alias="placeholderWriteHere">ここに記入する...</key>
|
||||
|
||||
<key alias="gridLayouts">レイアウト</key>
|
||||
<key alias="gridLayoutsDetail">レイアウトは通常1つまたは2つの異なるレイアウトを必要とする、グリッドエディタの全体的な作業エリアです</key>
|
||||
<key alias="addGridLayout">レイアウトを追加する</key>
|
||||
<key alias="addGridLayoutDetail">追加のセクションの横幅を設定し、レイアウトを調整する</key>
|
||||
|
||||
<key alias="rowConfigurations">行の構成</key>
|
||||
<key alias="rowConfigurationsDetail">定義された構成の行が水平に配置されます</key>
|
||||
<key alias="addRowConfiguration">行の構成を追加</key>
|
||||
<key alias="addRowConfigurationDetail">追加のセルのセル幅を設定することで調整します</key>
|
||||
|
||||
<key alias="columns">列</key>
|
||||
<key alias="columnsDetails">グリッドレイアウトの列を合計した数</key>
|
||||
|
||||
<key alias="settings">設定</key>
|
||||
<key alias="settingsDetails">編集者が設定できる項目</key>
|
||||
|
||||
|
||||
<key alias="styles">スタイル</key>
|
||||
<key alias="stylesDetails">編集者が設定できるスタイル</key>
|
||||
|
||||
<key alias="settingDialogDetails">入力されたJSONが正しい場合のみ設定が保存されます</key>
|
||||
|
||||
<key alias="allowAllEditors">すべてのエディタを許可する</key>
|
||||
<key alias="allowAllRowConfigurations">すべての行の構成を許可する</key>
|
||||
<key alias="setAsDefault">デフォルトとして設定</key>
|
||||
<key alias="setAsDefault">デフォルトとして設定</key>
|
||||
<key alias="chooseExtra">追加を選択</key>
|
||||
<key alias="chooseDefault">デフォルトの選択</key>
|
||||
<key alias="areAdded">追加されました</key>
|
||||
</area>
|
||||
|
||||
<area alias="contentTypeEditor">
|
||||
|
||||
<key alias="compositions">構成</key>
|
||||
<key alias="noTabs">タブが追加されていません</key>
|
||||
<key alias="addNewTab">新しいタブの追加</key>
|
||||
<key alias="addAnotherTab">他のタブの追加</key>
|
||||
<key alias="inheritedFrom">次から継承:</key>
|
||||
<key alias="addProperty">プロパティの追加</key>
|
||||
<key alias="requiredLabel">必要なラベル</key>
|
||||
|
||||
<key alias="enableListViewHeading">リスト ビューの有効化</key>
|
||||
<key alias="enableListViewDescription">並べ替えと検索が可能な子のリストを表示するコンテンツ アイテムを設定します。子はツリーに表示されません。</key>
|
||||
|
||||
<key alias="allowedTemplatesHeading">利用可能なテンプレート</key>
|
||||
<key alias="allowedTemplatesDescription">このタイプのコンテンツで使用できるテンプレート エディターを選択してください</key>
|
||||
|
||||
<key alias="allowAsRootHeading">ルートとして許可</key>
|
||||
<key alias="allowAsRootDescription">コンテンツ ツリーのルートでこのタイプのコンテンツをエディターで作成することを許可</key>
|
||||
<key alias="allowAsRootCheckbox">はい - ルートでこのタイプのコンテンツを許可</key>
|
||||
|
||||
<key alias="childNodesHeading">許可された子ノード タイプ</key>
|
||||
<key alias="childNodesDescription">このタイプの下部コンテンツに指定タイプのコンテンツを作成することを許可</key>
|
||||
|
||||
<key alias="chooseChildNode">子ノードの選択</key>
|
||||
|
||||
<key alias="compositionsDescription">既存ドキュメント タイプのタブとプロパティを継承。新しいタブを現在のドキュメント タイプに追加、または同じ名前のタブがある場合はマージされます。</key>
|
||||
<key alias="compositionInUse">このコンテンツ タイプが構成で使用されるため、自身を構成することはできません。</key>
|
||||
<key alias="noAvailableCompositions">構成に使用できるコンテンツ タイプはありません。</key>
|
||||
|
||||
<key alias="availableEditors">使用可能なエディター</key>
|
||||
<key alias="reuse">再利用</key>
|
||||
<key alias="editorSettings">エディター設定</key>
|
||||
|
||||
<key alias="configuration">設定</key>
|
||||
|
||||
<key alias="yesDelete">削除します</key>
|
||||
|
||||
<key alias="movedUnderneath">下部に移動しました。</key>
|
||||
<key alias="folderToMove">以下のツリー構造へ移動する</key>
|
||||
<key alias="structureBelow">フォルダーを選択します</key>
|
||||
|
||||
<key alias="allDocumentTypes">すべてのドキュメント タイプ</key>
|
||||
<key alias="allDocuments">すべてのドキュメント</key>
|
||||
<key alias="allMediaItems">すべてのメディア アイテム</key>
|
||||
|
||||
<key alias="usingThisDocument">このドキュメント タイプを使用すると完全に削除されます。削除してもよろしいですか?</key>
|
||||
<key alias="usingThisMedia">このメディア タイプを使用すると完全に削除されます。削除してもよろしいですか?</key>
|
||||
<key alias="usingThisMember">このメンバー タイプを使用すると完全に削除されます。削除してもよろしいですか?</key>
|
||||
|
||||
<key alias="andAllDocuments">およびこのタイプを使用したすべてのドキュメント</key>
|
||||
<key alias="andAllMediaItems">およびこのタイプを使用したこのメディア アイテム</key>
|
||||
<key alias="andAllMembers">およびこのタイプを使用したすべてのメンバー</key>
|
||||
|
||||
<key alias="thisEditorUpdateSettings">このエディターを使用すると新しい設定で更新されます</key>
|
||||
</area>
|
||||
|
||||
<area alias="templateEditor">
|
||||
<key alias="alternativeField">代替フィールド</key>
|
||||
<key alias="alternativeText">代替テキスト</key>
|
||||
@@ -1107,15 +1013,7 @@ Runwayをインストールして作られた新しいウェブサイトがど
|
||||
<key alias="withTime">時刻も表示 区切り文字: </key>
|
||||
</area>
|
||||
<area alias="translation">
|
||||
<key alias="assignedTasks">自分に割り当てられたタスク</key>
|
||||
<key alias="assignedTasksHelp"><![CDATA[ <strong>自分に割り当てられたタスク</strong>に翻訳タスクのリストが示されます。"詳細"ないしページ名をクリックするとコメントなどの詳細を見れます。
|
||||
"XML ダウンロード"のリンクから直接XMLをダウンロードできます。<br />
|
||||
翻訳タスクを閉じる際は、詳細を表示して"閉じる"ボタンをクリックしてください。
|
||||
]]></key>
|
||||
<key alias="closeTask">タスクを閉じる</key>
|
||||
<key alias="details">翻訳の詳細</key>
|
||||
<key alias="downloadAllAsXml">全ての翻訳タスクをXMLでダウンロード</key>
|
||||
<key alias="downloadTaskAsXml">XML ダウンロード</key>
|
||||
<key alias="DownloadXmlDTD">XML DTD ダウンロード</key>
|
||||
<key alias="fields">フィールド</key>
|
||||
<key alias="includeSubpages">サブページを含める</key>
|
||||
@@ -1132,17 +1030,9 @@ Runwayをインストールして作られた新しいウェブサイトがど
|
||||
|
||||
Umbracoのロボットより
|
||||
]]></key>
|
||||
<key alias="mailSubject">[%0%] %1% の翻訳タスク</key>
|
||||
<key alias="noTranslators">翻訳者ユーザーが見つかりません。コンテントの翻訳の前に翻訳者ユーザーを作成してください。</key>
|
||||
<key alias="ownedTasks">自分で作成したタスク</key>
|
||||
<key alias="ownedTasksHelp"><![CDATA[ <strong>自分で作成したタスク</strong>にページのリストが示されます。"詳細"ないしページ名をクリックするとコメントなどの詳細を見れます。
|
||||
"XML ダウンロード"のリンクから直接XMLをダウンロードできます。<br />
|
||||
翻訳タスクを閉じる際は、詳細を表示して"閉じる"ボタンをクリックしてください。
|
||||
]]></key>
|
||||
<key alias="pageHasBeenSendToTranslation">ページ '%0%' を翻訳へ送りました</key>
|
||||
<key alias="sendToTranslate">ページ '%0%' を翻訳へ送る</key>
|
||||
<key alias="taskAssignedBy">割り当てた人</key>
|
||||
<key alias="taskOpened">開始されたタスク</key>
|
||||
<key alias="totalWords">述べ語数</key>
|
||||
<key alias="translateTo">翻訳する: </key>
|
||||
<key alias="translationDone">翻訳完了。</key>
|
||||
@@ -1170,10 +1060,9 @@ Runwayをインストールして作られた新しいウェブサイトがど
|
||||
<key alias="memberRoles">役割</key>
|
||||
<key alias="memberTypes">メンバーの種類</key>
|
||||
<key alias="documentTypes">ドキュメントタイプ</key>
|
||||
<key alias="relationTypes">関連タイプ</key>
|
||||
<key alias="relationTypes">関連タイプ</key>
|
||||
<key alias="packager">パッケージ</key>
|
||||
<key alias="packages">パッケージ</key>
|
||||
<key alias="python">Python ファイル</key>
|
||||
<key alias="repositories">リポジトリからインストール</key>
|
||||
<key alias="runway">Runwayのインストール</key>
|
||||
<key alias="runwayModules">Runwayのモジュール</key>
|
||||
@@ -1181,7 +1070,6 @@ Runwayをインストールして作られた新しいウェブサイトがど
|
||||
<key alias="scripts">スクリプト</key>
|
||||
<key alias="stylesheets">スタイルシート</key>
|
||||
<key alias="templates">テンプレート</key>
|
||||
<key alias="analytics">アナリティクス</key>
|
||||
<key alias="userPermissions">ユーザーの権限</key>
|
||||
<key alias="userTypes">ユーザータイプ</key>
|
||||
<key alias="users">ユーザー</key>
|
||||
@@ -1233,8 +1121,7 @@ Runwayをインストールして作られた新しいウェブサイトがど
|
||||
<key alias="usertype">ユーザーの種類</key>
|
||||
<key alias="userTypes">ユーザーの種類</key>
|
||||
<key alias="writer">投稿者</key>
|
||||
<key alias="translator">翻訳者</key>
|
||||
<key alias="change">変更</key>
|
||||
<key alias="change">変更</key>
|
||||
<key alias="yourProfile" version="7.0">あなたのプロフィール</key>
|
||||
<key alias="yourHistory" version="7.0">あなたの最新の履歴</key>
|
||||
<key alias="sessionExpires" version="7.0">セッションの期限</key>
|
||||
@@ -1247,4 +1134,4 @@ Runwayをインストールして作られた新しいウェブサイトがど
|
||||
<key alias="enterCustomValidation">... またはカスタム検証を入力</key>
|
||||
<key alias="fieldIsMandatory">必須フィールドです</key>
|
||||
</area>
|
||||
</language>
|
||||
</language>
|
||||
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<language alias="ko" intName="Korean" localName="한국어" lcid="18" culture="ko-KR">
|
||||
<creator>
|
||||
<name>The Umbraco community</name>
|
||||
@@ -131,27 +131,22 @@
|
||||
</area>
|
||||
<area alias="bulk">
|
||||
<key alias="done">Done</key>
|
||||
|
||||
<key alias="deletedItem">Deleted %0% item</key>
|
||||
<key alias="deletedItems">Deleted %0% items</key>
|
||||
<key alias="deletedItemOfItem">Deleted %0% out of %1% item</key>
|
||||
<key alias="deletedItemOfItems">Deleted %0% out of %1% items</key>
|
||||
|
||||
<key alias="publishedItem">Published %0% item</key>
|
||||
<key alias="publishedItems">Published %0% items</key>
|
||||
<key alias="publishedItemOfItem">Published %0% out of %1% item</key>
|
||||
<key alias="publishedItemOfItems">Published %0% out of %1% items</key>
|
||||
|
||||
<key alias="unpublishedItem">Unpublished %0% item</key>
|
||||
<key alias="unpublishedItems">Unpublished %0% items</key>
|
||||
<key alias="unpublishedItemOfItem">Unpublished %0% out of %1% item</key>
|
||||
<key alias="unpublishedItemOfItems">Unpublished %0% out of %1% items</key>
|
||||
|
||||
<key alias="movedItem">Moved %0% item</key>
|
||||
<key alias="movedItems">Moved %0% items</key>
|
||||
<key alias="movedItemOfItem">Moved %0% out of %1% item</key>
|
||||
<key alias="movedItemOfItems">Moved %0% out of %1% items</key>
|
||||
|
||||
<key alias="copiedItem">Copied %0% item</key>
|
||||
<key alias="copiedItems">Copied %0% items</key>
|
||||
<key alias="copiedItemOfItem">Copied %0% out of %1% item</key>
|
||||
@@ -252,8 +247,6 @@
|
||||
<key alias="missingTitle">제목을 넣어주세요</key>
|
||||
<key alias="missingType">유형을 선택해주세요</key>
|
||||
<key alias="pictureResizeBiggerThanOrg">원본크기보다 큰사이즈의 이미지를 만들려고 합니다. 계속하시겠습니까?</key>
|
||||
<key alias="pythonErrorHeader">Python 스크립트 에러</key>
|
||||
<key alias="pythonErrorText">에러를 포함하고 있어 Python 스크립트가 저장되지 않았습니다.</key>
|
||||
<key alias="startNodeDoesNotExists">시작노드가 삭제되었습니다. 관리자에게 문의하세요</key>
|
||||
<key alias="stylesMustMarkBeforeSelect">스타일을 변경하시기 전에 컨텐츠를 체크하세요</key>
|
||||
<key alias="stylesNoStylesOnPage">사용할 수 있는 스타일이 없습니다.</key>
|
||||
@@ -339,7 +332,8 @@
|
||||
<key alias="showPageOnSend">전송된 페이지보기</key>
|
||||
<key alias="size">사이즈</key>
|
||||
<key alias="sort">정렬</key>
|
||||
<key alias="submit">Submit</key> <!-- TODO: Translate this -->
|
||||
<key alias="submit">Submit</key>
|
||||
<!-- TODO: Translate this -->
|
||||
<key alias="type">타입</key>
|
||||
<key alias="typeToSearch">검색유형...</key>
|
||||
<key alias="up">위로</key>
|
||||
@@ -473,7 +467,6 @@
|
||||
</area>
|
||||
<area alias="login">
|
||||
<key alias="bottomText"><![CDATA[<p style="text-align:right;">© 2001 - %0% <br /><a href="http://umbraco.com" style="text-decoration: none" target="_blank">umbraco.com</a></p> ]]></key>
|
||||
<key alias="topText">Umbraco 에 오신것을 환영합니다. 사용자명과 비밀번호를 입력하십시오:</key>
|
||||
</area>
|
||||
<area alias="main">
|
||||
<key alias="dashboard">대시보드</key>
|
||||
@@ -692,10 +685,6 @@
|
||||
<key alias="fileSavedHeader">파일 저장</key>
|
||||
<key alias="fileSavedText">파일이 에러없이 저장</key>
|
||||
<key alias="languageSaved">언어 저장됨</key>
|
||||
<key alias="pythonErrorHeader">Python 스크립트가 저장되지 않았습니다.</key>
|
||||
<key alias="pythonErrorText">Python 스크립트가 에러때문에 저장되지 않았습니다.</key>
|
||||
<key alias="pythonSavedHeader">Python 스크립트 저장</key>
|
||||
<key alias="pythonSavedText">Python 스크립트 에러없음</key>
|
||||
<key alias="templateErrorHeader">템플릿이 저장되지 않음</key>
|
||||
<key alias="templateErrorText">2 템플릿에 동일한 별칭이 적용되지 않았는지 확인하시기 바랍니다.</key>
|
||||
<key alias="templateSavedHeader">템플릿 저장</key>
|
||||
@@ -721,27 +710,20 @@
|
||||
<key alias="template">템플릿</key>
|
||||
</area>
|
||||
<area alias="grid">
|
||||
<key alias="rte">Rich Text Editor</key>
|
||||
<key alias="media">Image</key>
|
||||
<key alias="macro">Macro</key>
|
||||
<key alias="embed">Embed</key>
|
||||
<key alias="headline">Headline</key>
|
||||
<key alias="quote">Quote</key>
|
||||
<key alias="insertControl">Choose type of content</key>
|
||||
<key alias="chooseLayout">Choose a layout</key>
|
||||
<key alias="addRows">Add a row</key>
|
||||
<key alias="addElement">Add content</key>
|
||||
<key alias="dropElement">Drop content</key>
|
||||
<key alias="settingsApplied">Settings applied</key>
|
||||
|
||||
<key alias="contentNotAllowed">This content is not allowed here</key>
|
||||
<key alias="contentAllowed">This content is allowed here</key>
|
||||
|
||||
<key alias="clickToEmbed">Click to embed</key>
|
||||
<key alias="clickToInsertImage">Click to insert image</key>
|
||||
<key alias="placeholderImageCaption">Image caption...</key>
|
||||
<key alias="placeholderWriteHere">Write here...</key>
|
||||
|
||||
<key alias="gridLayouts">Grid Layouts</key>
|
||||
<key alias="gridLayoutsDetail">Layouts are the overall work area for the grid editor, usually you only need one or two different layouts</key>
|
||||
<key alias="addGridLayout">Add Grid Layout</key>
|
||||
@@ -750,18 +732,12 @@
|
||||
<key alias="rowConfigurationsDetail">Rows are predefined cells arranged horizontally</key>
|
||||
<key alias="addRowConfiguration">Add row configuration</key>
|
||||
<key alias="addRowConfigurationDetail">Adjust the row by setting cell widths and adding additional cells</key>
|
||||
|
||||
<key alias="columns">Columns</key>
|
||||
<key alias="columnsDetails">Total combined number of columns in the grid layout</key>
|
||||
|
||||
<key alias="settings">Settings</key>
|
||||
<key alias="settingsDetails">Configure what settings editors can change</key>
|
||||
|
||||
<key alias="styles">Styles</key>
|
||||
<key alias="stylesDetails">Configure what styling editors can change</key>
|
||||
|
||||
<key alias="settingDialogDetails">Settings will only save if the entered json configuration is valid</key>
|
||||
|
||||
<key alias="allowAllEditors">Allow all editors</key>
|
||||
<key alias="allowAllRowConfigurations">Allow all row configurations</key>
|
||||
</area>
|
||||
@@ -793,16 +769,7 @@
|
||||
<key alias="withTime">예, 시간를 :로 구분하여</key>
|
||||
</area>
|
||||
<area alias="translation">
|
||||
<key alias="assignedTasks">할당된 작업</key>
|
||||
<key alias="assignedTasksHelp"><![CDATA[ 아래 리스트는 <strong>당신에게 할당된</strong> 번역작업들을 볼 수 있습니다.
|
||||
상세내역을 보시려면 "상세" 나 페이지 이름을 클릭하세요.
|
||||
"Xml 다운로드" 링크를 클릭하시면 Xml로 페이지를 다운로드 할 수 있습니다.<br/>
|
||||
번역작업을 닫으시려면, 상세보기로 가셔서 "닫기" 버튼을 클릭하세요.
|
||||
]]></key>
|
||||
<key alias="closeTask">작업 닫기</key>
|
||||
<key alias="details">번역 세부항목</key>
|
||||
<key alias="downloadAllAsXml">모든 번역작업을 XML로 다운로드</key>
|
||||
<key alias="downloadTaskAsXml">XML 다운로드</key>
|
||||
<key alias="DownloadXmlDTD">다운로드 xml DTD</key>
|
||||
<key alias="fields">필드</key>
|
||||
<key alias="includeSubpages">서브페이지 포함</key>
|
||||
@@ -819,18 +786,9 @@
|
||||
|
||||
좋은 하루 되세요!
|
||||
]]></key>
|
||||
<key alias="mailSubject">Translation task for %1%을 위한 [%0%] 번역작업</key>
|
||||
<key alias="noTranslators">번역자를 찾을 수 없습니다. 컨텐츠를 번역하기위해 발송하시기 전에 번역자를 생성하세요.</key>
|
||||
<key alias="ownedTasks">생성한 작업</key>
|
||||
<key alias="ownedTasksHelp"><![CDATA[ 리스트 아래에서 <strong>생성한 작업</strong> 페이지를 볼 수 있습니다.
|
||||
상세내역을 보시려면 "상세" 나 페이지 이름을 클릭하세요.
|
||||
"Xml 다운로드" 링크를 클릭하시면 Xml로 페이지를 다운로드 할 수 있습니다.<br/>
|
||||
번역작업을 닫으시려면, 상세보기로 가셔서 "닫기" 버튼을 클릭하세요.
|
||||
]]></key>
|
||||
<key alias="pageHasBeenSendToTranslation">'%0%' 페이지가 번역을 위해 전송되었습니다.</key>
|
||||
<key alias="sendToTranslate">번역을 위해 '%0%' 페이지 전송하기Send the page '%0%' to translation</key>
|
||||
<key alias="taskAssignedBy">할당자</key>
|
||||
<key alias="taskOpened">작업 열기</key>
|
||||
<key alias="totalWords">총 단어 수</key>
|
||||
<key alias="translateTo">번역</key>
|
||||
<key alias="translationDone">번역 완료</key>
|
||||
@@ -857,10 +815,8 @@
|
||||
<key alias="memberGroups">구성원 그룹</key>
|
||||
<key alias="memberRoles">역할</key>
|
||||
<key alias="memberTypes">구성원 유형</key>
|
||||
<key alias="docuemntTypes">문서 타입</key>
|
||||
<key alias="packager">패키지</key>
|
||||
<key alias="packages">패키지</key>
|
||||
<key alias="python">Python 파일</key>
|
||||
<key alias="repositories">저장소에 설치</key>
|
||||
<key alias="runway">Runway 설치</key>
|
||||
<key alias="runwayModules">Runway 모듈</key>
|
||||
@@ -915,4 +871,4 @@
|
||||
<key alias="userTypes">사용자 타입</key>
|
||||
<key alias="writer">작성자</key>
|
||||
</area>
|
||||
</language>
|
||||
</language>
|
||||
@@ -61,7 +61,6 @@
|
||||
</area>
|
||||
<area alias="buttons">
|
||||
<key alias="select">Velg</key>
|
||||
<key alias="selectCurrentFolder">Velg gjeldende mappe</key>
|
||||
<key alias="somethingElse">Gjør noe annet</key>
|
||||
<key alias="bold">Fet</key>
|
||||
<key alias="deindent">Reduser innrykk</key>
|
||||
@@ -163,7 +162,6 @@
|
||||
</area>
|
||||
<area alias="media">
|
||||
<key alias="clickToUpload">Klikk for å laste opp</key>
|
||||
<key alias="dropFilesHere">Slipp filene her...</key>
|
||||
</area>
|
||||
<area alias="member">
|
||||
<key alias="createNewMember">Opprett et nytt medlem</key>
|
||||
@@ -193,27 +191,22 @@
|
||||
</area>
|
||||
<area alias="bulk">
|
||||
<key alias="done">Done</key>
|
||||
|
||||
<key alias="deletedItem">Deleted %0% item</key>
|
||||
<key alias="deletedItems">Deleted %0% items</key>
|
||||
<key alias="deletedItemOfItem">Deleted %0% out of %1% item</key>
|
||||
<key alias="deletedItemOfItems">Deleted %0% out of %1% items</key>
|
||||
|
||||
<key alias="publishedItem">Published %0% item</key>
|
||||
<key alias="publishedItems">Published %0% items</key>
|
||||
<key alias="publishedItemOfItem">Published %0% out of %1% item</key>
|
||||
<key alias="publishedItemOfItems">Published %0% out of %1% items</key>
|
||||
|
||||
<key alias="unpublishedItem">Unpublished %0% item</key>
|
||||
<key alias="unpublishedItems">Unpublished %0% items</key>
|
||||
<key alias="unpublishedItemOfItem">Unpublished %0% out of %1% item</key>
|
||||
<key alias="unpublishedItemOfItems">Unpublished %0% out of %1% items</key>
|
||||
|
||||
<key alias="movedItem">Moved %0% item</key>
|
||||
<key alias="movedItems">Moved %0% items</key>
|
||||
<key alias="movedItemOfItem">Moved %0% out of %1% item</key>
|
||||
<key alias="movedItemOfItems">Moved %0% out of %1% items</key>
|
||||
|
||||
<key alias="copiedItem">Copied %0% item</key>
|
||||
<key alias="copiedItems">Copied %0% items</key>
|
||||
<key alias="copiedItemOfItem">Copied %0% out of %1% item</key>
|
||||
@@ -279,20 +272,13 @@
|
||||
<key alias="enterTags">Skriv inn nøkkelord (trykk på Enter etter hvert nøkkelord)...</key>
|
||||
</area>
|
||||
<area alias="editcontenttype">
|
||||
<key alias="allowAtRoot" version="7.2">Tillat på rotnivå</key>
|
||||
<key alias="allowAtRootDesc" version="7.2">Kun dokumenttyper med denne innstillingen aktivert kan opprettes på rotnivå under Innhold og Mediearkiv</key>
|
||||
<key alias="allowedchildnodetypes">Tillatte underordnede noder</key>
|
||||
<key alias="contenttypecompositions">Sammensetting av dokumenttyper</key>
|
||||
<key alias="create">Opprett</key>
|
||||
<key alias="deletetab">Slett arkfane</key>
|
||||
<key alias="description">Beskrivelse</key>
|
||||
<key alias="newtab">Ny arkfane</key>
|
||||
<key alias="tab">Arkfane</key>
|
||||
<key alias="thumbnail">Miniatyrbilde</key>
|
||||
<key alias="hasListView">Aktiver listevisning</key>
|
||||
<key alias="hasListViewDesc" version="7.2">Viser undersider i en søkbar liste, undersider vises ikke i innholdstreet</key>
|
||||
<key alias="currentListView" version="7.2">Gjeldende listevisning</key>
|
||||
<key alias="currentListViewDesc" version="7.2">Den aktive listevisningsdatatypen</key>
|
||||
<key alias="createListView" version="7.2">Opprett brukerdefinert listevisning</key>
|
||||
<key alias="removeListView" version="7.2">Fjern brukerdefinert listevisning</key>
|
||||
</area>
|
||||
@@ -330,14 +316,11 @@
|
||||
<key alias="missingTitle">Tittel mangler</key>
|
||||
<key alias="missingType">Type mangler</key>
|
||||
<key alias="pictureResizeBiggerThanOrg">Du er i ferd med å gjøre bildet større enn originalen. Det vil forringe kvaliteten på bildet, ønsker du å fortsette?</key>
|
||||
<key alias="pythonErrorHeader">Feil i python-skriptet</key>
|
||||
<key alias="pythonErrorText">Python-skriptet ble ikke lagret fordi det inneholder en eller flere feil</key>
|
||||
<key alias="startNodeDoesNotExists">Startnode er slettet. Kontakt din administrator</key>
|
||||
<key alias="stylesMustMarkBeforeSelect">Du må markere innhold før du kan endre stil</key>
|
||||
<key alias="stylesNoStylesOnPage">Det er ingen aktive stiler eller formateringer på denne siden</key>
|
||||
<key alias="tableColMergeLeft">Sett markøren til venstre i de 2 cellene du ønsker å slå sammen</key>
|
||||
<key alias="tableSplitNotSplittable">Du kan ikke dele en celle som allerede er delt.</key>
|
||||
<key alias="missingPropertyEditorErrorMessage">Det er et problem dem datatypen som brukes til denne egenskapen. Kontroller innstillingene og prøv igjen.</key>
|
||||
</area>
|
||||
<area alias="general">
|
||||
<key alias="about">Om</key>
|
||||
@@ -392,7 +375,6 @@
|
||||
<key alias="logout">Logg ut</key>
|
||||
<key alias="macro">Makro</key>
|
||||
<key alias="move">Flytt</key>
|
||||
<key alias="more">Mer</key>
|
||||
<key alias="name">Navn</key>
|
||||
<key alias="new">Ny</key>
|
||||
<key alias="next">Neste</key>
|
||||
@@ -529,7 +511,6 @@
|
||||
<key alias="renewSession">Forny innlogging for å lagre</key>
|
||||
</area>
|
||||
<area alias="login">
|
||||
<key alias="greeting0">Da er det søndag!</key>
|
||||
<key alias="greeting1">Smil, det er mandag!</key>
|
||||
<key alias="greeting2">Hurra, det er tirsdag!</key>
|
||||
<key alias="greeting3">For en herlig onsdag!</key>
|
||||
@@ -710,12 +691,8 @@ Vennlig hilsen Umbraco roboten
|
||||
<key alias="users">Brukere</key>
|
||||
<key alias="help" version="7.0">Hjelp</key>
|
||||
<key alias="forms">Skjemaer</key>
|
||||
<key alias="analytics">Analytics</key>
|
||||
</area>
|
||||
<area alias="help">
|
||||
<key alias="goTo">gå til</key>
|
||||
<key alias="helpTopicsFor">Hjelpeemner for</key>
|
||||
<key alias="videoChaptersFor">Videokapitler for</key>
|
||||
<key alias="theBestUmbracoVideoTutorials">De beste Umbraco opplæringsvideoer</key>
|
||||
</area>
|
||||
<area alias="settings">
|
||||
@@ -735,8 +712,6 @@ Vennlig hilsen Umbraco roboten
|
||||
<key alias="contentTypeUses">Denne dokumenttypen bruker</key>
|
||||
<key alias="asAContentMasterType">som hoveddokumenttype. Arkfaner fra hoveddokumenttyper vises ikke og kan kun endres på hoveddokumenttypen selv.</key>
|
||||
<key alias="noPropertiesDefinedOnTab">Ingen egenskaper definert i denne arkfanen. Klikk på "legg til ny egenskap" lenken i toppen for å opprette en ny egenskap.</key>
|
||||
<key alias="masterDocumentType">Hovedinnholdstype</key>
|
||||
<key alias="createMatchingTemplate">Opprett tilhørende mal</key>
|
||||
</area>
|
||||
<area alias="sort">
|
||||
<key alias="sortOrder">Sort order</key>
|
||||
@@ -785,10 +760,6 @@ Vennlig hilsen Umbraco roboten
|
||||
<key alias="fileSavedHeader">Filen ble lagret</key>
|
||||
<key alias="fileSavedText">Filen ble lagret uten feil</key>
|
||||
<key alias="languageSaved">Språk lagret</key>
|
||||
<key alias="pythonErrorHeader">Python-skriptet ble ikke lagret</key>
|
||||
<key alias="pythonErrorText">Python-skriptet kunne ikke lagres fordi det inneholder en eller flere feil</key>
|
||||
<key alias="pythonSavedHeader">Python-skriptet er lagret!</key>
|
||||
<key alias="pythonSavedText">Ingen feil i python-skriptet!</key>
|
||||
<key alias="templateErrorHeader">Malen ble ikke lagret</key>
|
||||
<key alias="templateErrorText">Vennligst forviss deg om at du ikke har to maler med samme alias</key>
|
||||
<key alias="templateSavedHeader">Malen ble lagret</key>
|
||||
@@ -798,11 +769,6 @@ Vennlig hilsen Umbraco roboten
|
||||
<key alias="partialViewSavedText">Delmal lagret uten feil</key>
|
||||
<key alias="partialViewErrorHeader">Delmal ble ikke lagret!</key>
|
||||
<key alias="partialViewErrorText">En feil oppsto ved lagring av delmal</key>
|
||||
<key alias="scriptSavedHeader">Script visning lagret</key>
|
||||
<key alias="scriptSavedText">Script visning lagret uten feil!</key>
|
||||
<key alias="scriptErrorHeader">Script visning ikke lagret</key>
|
||||
<key alias="scriptErrorText">En feil oppsto under lagring av filen.</key>
|
||||
<key alias="cssErrorText">En feil oppsto under lagring av filen.</key>
|
||||
</area>
|
||||
<area alias="stylesheet">
|
||||
<key alias="aliasHelp">Bruk CSS syntaks f.eks: h1, .redHeader, .blueText</key>
|
||||
@@ -824,27 +790,20 @@ Vennlig hilsen Umbraco roboten
|
||||
<key alias="template">Mal</key>
|
||||
</area>
|
||||
<area alias="grid">
|
||||
<key alias="rte">Rich Text Editor</key>
|
||||
<key alias="media">Image</key>
|
||||
<key alias="macro">Macro</key>
|
||||
<key alias="embed">Embed</key>
|
||||
<key alias="headline">Headline</key>
|
||||
<key alias="quote">Quote</key>
|
||||
<key alias="insertControl">Sett inn element</key>
|
||||
<key alias="chooseLayout">Velg layout</key>
|
||||
<key alias="addRows">Legg til rad</key>
|
||||
<key alias="addElement">Legg til innhold</key>
|
||||
<key alias="dropElement">Slipp innhold</key>
|
||||
<key alias="settingsApplied">Raden har tilpasset design</key>
|
||||
|
||||
<key alias="contentNotAllowed">Innholdstypen er ikke tillatt her</key>
|
||||
<key alias="contentAllowed">Innholdstypen er tillatt her</key>
|
||||
|
||||
<key alias="clickToEmbed">Klikk for å bygge inn</key>
|
||||
<key alias="clickToInsertImage">Klikk for å sette inn et bilde</key>
|
||||
<key alias="placeholderImageCaption">Bildetekst...</key>
|
||||
<key alias="placeholderWriteHere">Skriv her...</key>
|
||||
|
||||
<key alias="gridLayouts">Rutenettoppsett</key>
|
||||
<key alias="gridLayoutsDetail">Et oppsett er det overordnede arbeidsområdet til ditt rutenett - du vil typisk kun behøve ett eller to</key>
|
||||
<key alias="addGridLayout">Legg til rutenettoppsett</key>
|
||||
@@ -853,18 +812,12 @@ Vennlig hilsen Umbraco roboten
|
||||
<key alias="rowConfigurationsDetail">Rader er forhåndsdefinerte celler arrangert vannrett</key>
|
||||
<key alias="addRowConfiguration">Legg til radkonfigurasjon</key>
|
||||
<key alias="addRowConfigurationDetail">Juster raden ved å sette cellebredder og legge til flere celler</key>
|
||||
|
||||
<key alias="columns">Kolonner</key>
|
||||
<key alias="columnsDetails">Totalt antall kolonner i rutenettet</key>
|
||||
|
||||
<key alias="settings">Innstillinger</key>
|
||||
<key alias="settingsDetails">Konfigurer hvilke innstillinger brukeren kan endre</key>
|
||||
|
||||
<key alias="styles">Stiler</key>
|
||||
<key alias="stylesDetails">Konfigurer hvilke stiler redaktørene kan endre</key>
|
||||
|
||||
<key alias="settingDialogDetails">Innstillingene lagres kun når konfigurasjonen er gyldig</key>
|
||||
|
||||
<key alias="allowAllEditors">Tillatt alle editorer</key>
|
||||
<key alias="allowAllRowConfigurations">Tillat alle radkonfigurasjoner</key>
|
||||
<key alias="setAsDefault">Bruk som standard</key>
|
||||
@@ -901,12 +854,7 @@ Vennlig hilsen Umbraco roboten
|
||||
<key alias="withTime">Ja, med klokkeslett. Dato/tid separator: </key>
|
||||
</area>
|
||||
<area alias="translation">
|
||||
<key alias="assignedTasks">Oppgaver satt til deg</key>
|
||||
<key alias="assignedTasksHelp"><![CDATA[Listen nedenfor viser oversettelsesoppgaver <strong>som du er tildelt</strong>. For å se en detaljert visning inkludert kommentarer, klikk på "Detaljer" eller navnet på siden. Du kan også laste ned siden som XML direkte ved å klikke på linken "Last ned XML". <br/> For å lukke en oversettelsesoppgave, vennligst gå til detaljvisningen og klikk på "Lukk" knappen.]]></key>
|
||||
<key alias="closeTask">Lukk oppgave</key>
|
||||
<key alias="details">Oversettelses detaljer</key>
|
||||
<key alias="downloadAllAsXml">Last ned all oversettelsesoppgaver som XML</key>
|
||||
<key alias="downloadTaskAsXml">Last ned XML</key>
|
||||
<key alias="DownloadXmlDTD">Last ned XML DTD</key>
|
||||
<key alias="fields">Felt</key>
|
||||
<key alias="includeSubpages">Inkluder undersider</key>
|
||||
@@ -922,14 +870,9 @@ Vennlig hilsen Umbraco roboten
|
||||
|
||||
Vennlig hilsen Umbraco Robot.
|
||||
]]></key>
|
||||
<key alias="mailSubject">[%0%] Oversettingsoppgave for %1%</key>
|
||||
<key alias="noTranslators">Ingen oversettelses-bruker funnet. Vennligst opprett en oversettelses-bruker før du begynner å sende innhold til oversetting</key>
|
||||
<key alias="ownedTasks">Oppgaver opprettet av deg</key>
|
||||
<key alias="ownedTasksHelp"><![CDATA[Listen under viser sider <strong>opprettet av deg</strong>. For å se en detaljert visning inkludert kommentarer, klikk på "Detaljer" eller navnet på siden. Du kan også laste ned siden som XML direkte ved å klikke på linken "Last ned XML". For å lukke en oversettelsesoppgave, vennligst gå til detaljvisningen og klikk på "Lukk" knappen.]]></key>
|
||||
<key alias="pageHasBeenSendToTranslation">Siden '%0%' har blitt sendt til oversetting</key>
|
||||
<key alias="sendToTranslate">Send til oversetting</key>
|
||||
<key alias="taskAssignedBy">Tildelt av</key>
|
||||
<key alias="taskOpened">Oppgave åpnet</key>
|
||||
<key alias="totalWords">Antall ord</key>
|
||||
<key alias="translateTo">Oversett til</key>
|
||||
<key alias="translationDone">Oversetting fullført.</key>
|
||||
@@ -959,7 +902,6 @@ Vennlig hilsen Umbraco roboten
|
||||
<key alias="nodeTypes">Dokumenttyper</key>
|
||||
<key alias="packager">Pakker</key>
|
||||
<key alias="packages">Pakker</key>
|
||||
<key alias="python">Python Filer</key>
|
||||
<key alias="repositories">Installer fra pakkeregister</key>
|
||||
<key alias="runway">Installer Runway</key>
|
||||
<key alias="runwayModules">Runway moduler</key>
|
||||
@@ -967,10 +909,12 @@ Vennlig hilsen Umbraco roboten
|
||||
<key alias="scripts">Skript</key>
|
||||
<key alias="stylesheets">Stiler</key>
|
||||
<key alias="templates">Maler</key>
|
||||
<key alias="analytics">Analytics</key>
|
||||
<key alias="userPermissions">Brukertillatelser</key>
|
||||
<key alias="userTypes">Brukertyper typer</key>
|
||||
<key alias="users">Brukere</key>
|
||||
<key alias="settingsGroup"></key>
|
||||
<key alias="templatingGroup"></key>
|
||||
<key alias="thirdPartyGroup"></key>
|
||||
</area>
|
||||
<area alias="update">
|
||||
<key alias="updateAvailable">Ny oppdatering er klar</key>
|
||||
@@ -1014,10 +958,9 @@ Vennlig hilsen Umbraco roboten
|
||||
<key alias="username">Navn</key>
|
||||
<key alias="userPermissions">Brukertillatelser</key>
|
||||
<key alias="writer">Forfatter</key>
|
||||
<key alias="translator">Oversetter</key>
|
||||
<key alias="change">Endre</key>
|
||||
<key alias="yourProfile" version="7.0">Din profil</key>
|
||||
<key alias="yourHistory" version="7.0">Din historikk</key>
|
||||
<key alias="sessionExpires" version="7.0">Sesjonen utløper om</key>
|
||||
</area>
|
||||
</language>
|
||||
</language>
|
||||
@@ -68,9 +68,8 @@
|
||||
<key alias="atViewingFor">Tonen voor</key>
|
||||
</area>
|
||||
<area alias="buttons">
|
||||
<key alias="clearSelection">Selectie ongedaan maken</key>
|
||||
<key alias="clearSelection">Selectie ongedaan maken</key>
|
||||
<key alias="select">Selecteren</key>
|
||||
<key alias="selectCurrentFolder">Selecteer huidige map</key>
|
||||
<key alias="somethingElse">Doe iets anders</key>
|
||||
<key alias="bold">Vet</key>
|
||||
<key alias="deindent">Paragraaf uitspringen</key>
|
||||
@@ -93,13 +92,12 @@
|
||||
<key alias="save">Opslaan</key>
|
||||
<key alias="saveAndPublish">Opslaan en publiceren</key>
|
||||
<key alias="saveToPublish">Opslaan en verzenden voor goedkeuring</key>
|
||||
<key alias="saveListView">Sla list view op</key>
|
||||
<key alias="saveListView">Sla list view op</key>
|
||||
<key alias="showPage">voorbeeld bekijken</key>
|
||||
<key alias="showPageDisabled">Voorbeeld bekijken is uitgeschakeld omdat er geen template is geselecteerd</key>
|
||||
<key alias="styleChoose">Stijl kiezen</key>
|
||||
<key alias="styleShow">Stijlen tonen</key>
|
||||
<key alias="tableInsert">Tabel invoegen</key>
|
||||
<key alias="generateModels">Genereer models</key>
|
||||
<key alias="saveAndGenerateModels">Opslaan en models genereren</key>
|
||||
</area>
|
||||
<area alias="changeDocType">
|
||||
@@ -140,7 +138,7 @@
|
||||
<key alias="itemChanged">Dit item is gewijzigd na publicatie</key>
|
||||
<key alias="itemNotPublished">Dit item is niet gepubliceerd</key>
|
||||
<key alias="lastPublished">Laatst gepubliceerd op</key>
|
||||
<key alias="noItemsToShow">Er zijn geen items om weer te geven</key>
|
||||
<key alias="noItemsToShow">Er zijn geen items om weer te geven</key>
|
||||
<key alias="listViewNoItems" version="7.1.5">Er zijn geen items om weer te geven.</key>
|
||||
<key alias="mediatype">Mediatype</key>
|
||||
<key alias="mediaLinks">Link naar media item(s)</key>
|
||||
@@ -152,7 +150,7 @@
|
||||
<key alias="otherElements">Eigenschappen</key>
|
||||
<key alias="parentNotPublished">Dit document is gepubliceerd maar niet zichtbaar omdat de bovenliggende node '%0%' niet gepubliceerd is</key>
|
||||
<key alias="parentNotPublishedAnomaly">Dit document is gepubliceerd, maar het is niet in de cache (interne serverfout)</key>
|
||||
<key alias="getUrlException">Kan de Url niet ophalen</key>
|
||||
<key alias="getUrlException">Kan de Url niet ophalen</key>
|
||||
<key alias="routeError">Dit document is gepubliceerd, maar de Url conflicteert met %0%</key>
|
||||
<key alias="publish">Publiceren</key>
|
||||
<key alias="publishStatus">Publicatiestatus</key>
|
||||
@@ -171,10 +169,10 @@
|
||||
<key alias="uploadClear">Bestand(en) verwijderen</key>
|
||||
<key alias="urls">Link naar het document</key>
|
||||
<key alias="memberof">Lid van groep(en)</key>
|
||||
<key alias="notmemberof">Geen lid van groep(en)</key>
|
||||
<key alias="notmemberof">Geen lid van groep(en)</key>
|
||||
<key alias="childItems" version="7.0">Subitems</key>
|
||||
<key alias="target" version="7.0">Doel</key>
|
||||
<key alias="scheduledPublishServerTime">Dit betekend de volgende tijd op de server:</key>
|
||||
<key alias="scheduledPublishServerTime">Dit betekend de volgende tijd op de server:</key>
|
||||
<key alias="scheduledPublishDocumentation"><![CDATA[<a href="https://our.umbraco.com/documentation/Getting-Started/Data/Scheduled-Publishing/#timezones" target="_blank">Wat houd dit in?</a>]]></key>
|
||||
<key alias="nestedContentDeleteItem">Ben je er zeker van dat je dit item wilt verwijderen?</key>
|
||||
<key alias="nestedContentEditorNotSupported">Eigenschap %0% gebruikt editor %1% welke niet wordt ondersteund door Nested Content.</key>
|
||||
@@ -186,10 +184,7 @@
|
||||
</area>
|
||||
<area alias="media">
|
||||
<key alias="clickToUpload">Klik om te uploaden</key>
|
||||
<key alias="dropFilesHere">Plaats je bestanden hier...</key>
|
||||
<key alias="urls">Link naar media</key>
|
||||
<key alias="orClickHereToUpload">Of klik hier om bestanden te kiezen</key>
|
||||
<key alias="onlyAllowedFiles">De toegestane bestandtypen zijn</key>
|
||||
<key alias="disallowedFileType">Dit bestand heeft niet het juiste file-type. Dit bestand kan niet geupload worden.</key>
|
||||
<key alias="maxFileSize">Max file size is</key>
|
||||
</area>
|
||||
@@ -197,17 +192,13 @@
|
||||
<key alias="createNewMember">Maak nieuwe member aan</key>
|
||||
<key alias="allMembers">Alle Members</key>
|
||||
</area>
|
||||
<area alias="member">
|
||||
<key alias="createNewMember">Nieuw lid aanmaken</key>
|
||||
<key alias="allMembers">Alle Leden</key>
|
||||
</area>
|
||||
<area alias="create">
|
||||
<key alias="chooseNode">Waar wil je de nieuwe %0% aanmaken?</key>
|
||||
<key alias="createUnder">Aanmaken onder</key>
|
||||
<key alias="updateData">Kies een type en een titel</key>
|
||||
<key alias="noDocumentTypes" version="7.0"><![CDATA[Er zijn geen toegestane documenttypes beschikbaar. Je moet deze inschakelen in de Instellingen sectie onder <strong>"Documenttypes"</ strong>.]]></key>
|
||||
<key alias="noMediaTypes" version="7.0"><![CDATA[Er zijn geen toegestande mediatypes beschikbaar. Je moet deze in schakelen in de Instellingen sectie onder <strong>"Mediatypes"</strong>.]]></key>
|
||||
<key alias="documentTypeWithoutTemplate">Document Type zonder template</key>
|
||||
<key alias="documentTypeWithoutTemplate">Document Type zonder template</key>
|
||||
<key alias="newFolder">Nieuwe folder</key>
|
||||
<key alias="newDataType">Nieuw data type</key>
|
||||
</area>
|
||||
@@ -229,27 +220,22 @@
|
||||
</area>
|
||||
<area alias="bulk">
|
||||
<key alias="done">Done</key>
|
||||
|
||||
<key alias="deletedItem">%0% item verwijderd</key>
|
||||
<key alias="deletedItems">%0% items verwijderd</key>
|
||||
<key alias="deletedItemOfItem">Item %0% van de %1% verwijderd</key>
|
||||
<key alias="deletedItemOfItems">Items %0% van de %1% verwijderd</key>
|
||||
|
||||
<key alias="publishedItem">%0% item gepubliceerd</key>
|
||||
<key alias="publishedItems">%0% items gepubliceerd</key>
|
||||
<key alias="publishedItemOfItem">Item %0% van de %1% gepubliceerd</key>
|
||||
<key alias="publishedItemOfItems">Items %0% van de %1% gepubliceerd</key>
|
||||
|
||||
<key alias="unpublishedItem">%0% item gedepubliceerd</key>
|
||||
<key alias="unpublishedItems">%0% items gedepubliceerd</key>
|
||||
<key alias="unpublishedItemOfItem">Item %0% van de %1% gedepubliceerd</key>
|
||||
<key alias="unpublishedItemOfItems">Items %0% van de %1% gedepubliceerd</key>
|
||||
|
||||
<key alias="movedItem">%0% item verplaatst</key>
|
||||
<key alias="movedItems">%0% items verplaatst</key>
|
||||
<key alias="movedItemOfItem">item %0% van de %1% verplaatst</key>
|
||||
<key alias="movedItemOfItems">items %0% van de %1% verplaatst</key>
|
||||
|
||||
<key alias="copiedItem">%0% item gekopieerd</key>
|
||||
<key alias="copiedItems">%0% items gekopieerd</key>
|
||||
<key alias="copiedItemOfItem">item %0% van de %1% gekopieerd</key>
|
||||
@@ -304,7 +290,6 @@
|
||||
<key alias="thumbnailimageclickfororiginal">Klik op de afbeelding voor volledige grootte</key>
|
||||
<key alias="treepicker">Kies een item</key>
|
||||
<key alias="viewCacheItem">Toon cache item</key>
|
||||
<key alias="createFolder">Maak folder aan...</key>
|
||||
<key alias="relateToOriginalLabel">Relateer aan origineel</key>
|
||||
<key alias="includeDescendants">Descendants meenemen</key>
|
||||
<key alias="theFriendliestCommunity">De vriendelijkste community</key>
|
||||
@@ -334,43 +319,32 @@
|
||||
Wijzig de verschillende taalversies voor het woordenboek item '%0%'. Je kunt extra talen toevoegen bij 'talen' in het menu links
|
||||
]]></key>
|
||||
<key alias="displayName">Cultuurnaam</key>
|
||||
<key alias="changeKey">Verander de key van het dictionary item.</key>
|
||||
<key alias="changeKeyError">
|
||||
<![CDATA[
|
||||
<key alias="changeKeyError"><![CDATA[
|
||||
De key '%0%' bestaat al.
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
</area>
|
||||
<area alias="placeholders">
|
||||
<key alias="username">Typ jouw gebruikersnaam</key>
|
||||
<key alias="password">Typ jouw wachtwoord</key>
|
||||
<key alias="confirmPassword">Bevestig jouw wachtwoord</key>
|
||||
<key alias="confirmPassword">Bevestig jouw wachtwoord</key>
|
||||
<key alias="nameentity">Benoem de %0%...</key>
|
||||
<key alias="entername">Typ een naam...</key>
|
||||
<key alias="label">Label...</key>
|
||||
<key alias="enterDescription">Voer een omschrijving in...</key>
|
||||
<key alias="label">Label...</key>
|
||||
<key alias="enterDescription">Voer een omschrijving in...</key>
|
||||
<key alias="search">Typ om te zoeken...</key>
|
||||
<key alias="filter">Typ om te filteren...</key>
|
||||
<key alias="enterTags">Typ om tags toe te voegen (druk op enter na elke tag)...</key>
|
||||
<key alias="email">Voer jouw email in</key>
|
||||
<key alias="email">Voer jouw email in</key>
|
||||
<key alias="usernameHint">Jouw gebruikersnaam is meestal jouw email</key>
|
||||
</area>
|
||||
|
||||
<area alias="editcontenttype">
|
||||
<key alias="allowAtRoot" version="7.2">Toestaan op root-niveau</key>
|
||||
<key alias="allowAtRootDesc" version="7.2">Wanneer aangevinkt dan mag dit document type aangemaakt worden op het root-niveau van content of media trees.</key>
|
||||
<key alias="allowedchildnodetypes">Toegelaten subnodetypes</key>
|
||||
<key alias="contenttypecompositions">Document Type Composities</key>
|
||||
<key alias="create">Nieuw</key>
|
||||
<key alias="deletetab">Tab verwijderen</key>
|
||||
<key alias="description">Omschrijving</key>
|
||||
<key alias="newtab">Nieuwe tab</key>
|
||||
<key alias="tab">Tab</key>
|
||||
<key alias="thumbnail">Miniatuur</key>
|
||||
<key alias="hasListView">Lijstweergave inschakelen</key>
|
||||
<key alias="hasListViewDesc" version="7.2">Stelt het content item in zodat een sorteer- en zoekbare lijstweergave van onderliggende nodes wordt getoond. De onderliggende nodes worden niet in de tree getoond</key>
|
||||
<key alias="currentListView" version="7.2">Huidige lijstweergave</key>
|
||||
<key alias="currentListViewDesc" version="7.2">De actieve data type in lijstweergave</key>
|
||||
<key alias="createListView" version="7.2">Maak een aangepaste lijstweergave</key>
|
||||
<key alias="removeListView" version="7.2">Verwijder aangepaste lijstweergave</key>
|
||||
</area>
|
||||
@@ -406,21 +380,16 @@
|
||||
<key alias="codemirroriewarning">OPMERKING! Ondanks dat CodeMiror is ingeschakeld, is het uitgeschakeld in Internet Explorer omdat het niet stabiel genoeg is.</key>
|
||||
<key alias="contentTypeAliasAndNameNotNull">Zowel de alias als de naam van het nieuwe eigenschappen type moeten worden ingevuld!</key>
|
||||
<key alias="filePermissionsError">Er is een probleem met de lees/schrijf rechten op een bestand of map</key>
|
||||
<key alias="macroErrorLoadingPartialView">Error bij het laden van Partial View script (file: %0%)</key>
|
||||
<key alias="macroErrorLoadingPartialView">Error bij het laden van Partial View script (file: %0%)</key>
|
||||
<key alias="macroErrorLoadingUsercontrol">Error bij het laden van userControl '%0%'</key>
|
||||
<key alias="macroErrorLoadingCustomControl">Error bij het laden van customControl (Assembly: %0%, Type: '%1%')</key>
|
||||
<key alias="macroErrorLoadingMacroEngineScript">Error bij het laden van MacroEngine script (file: %0%)</key>
|
||||
<key alias="missingTitle">Vul een titel in</key>
|
||||
<key alias="missingType">Selecteer een type</key>
|
||||
<key alias="pictureResizeBiggerThanOrg">U wilt een afbeelding groter maken dan de originele afmetingen. Weet je zeker dat je wilt doorgaan?</key>
|
||||
<key alias="pythonErrorHeader">Fout in python script</key>
|
||||
<key alias="pythonErrorText">Het python script is niet opgeslagen omdat het fouten bevat</key>
|
||||
<key alias="startNodeDoesNotExists">Start node is verwijderd, neem contact op met uw systeembeheerder</key>
|
||||
<key alias="stylesMustMarkBeforeSelect">Markeer de inhoud voordat u de stijl aanpast</key>
|
||||
<key alias="stylesNoStylesOnPage">Geen actieve stijlen beschikbaar</key>
|
||||
<key alias="tableColMergeLeft">Plaats de cursor links van de twee cellen die je wilt samenvoegen</key>
|
||||
<key alias="tableSplitNotSplittable">Je kunt een cel die is samengevoegd niet delen</key>
|
||||
<key alias="missingPropertyEditorErrorMessage">Er is een configuratiefout bij het gegevenstype dat wordt gebruikt voor deze eigenschap. Controleer het gegevenstype</key>
|
||||
</area>
|
||||
<area alias="general">
|
||||
<key alias="about">Over</key>
|
||||
@@ -480,7 +449,6 @@
|
||||
<key alias="macro">Macro</key>
|
||||
<key alias="mandatory">Verplicht</key>
|
||||
<key alias="move">Verplaats</key>
|
||||
<key alias="more">meer</key>
|
||||
<key alias="name">Naam</key>
|
||||
<key alias="new">Nieuw</key>
|
||||
<key alias="next">Volgende</key>
|
||||
@@ -541,28 +509,19 @@
|
||||
<key alias="selected">geselecteerd</key>
|
||||
</area>
|
||||
<area alias="colors">
|
||||
<key alias="black">Zwart</key>
|
||||
<key alias="green">Groen</key>
|
||||
<key alias="yellow">Geel</key>
|
||||
<key alias="orange">Oranje</key>
|
||||
<key alias="blue">Blauw</key>
|
||||
<key alias="red">Rood</key>
|
||||
</area>
|
||||
<area alias="shortcuts">
|
||||
<area alias="shortcuts">
|
||||
<key alias="addTab">Tab toevoegen</key>
|
||||
<key alias="addProperty">Property toevoegen</key>
|
||||
<key alias="addEditor">Editor toevoegen</key>
|
||||
<key alias="addTemplate">Template toevoegen</key>
|
||||
<key alias="addChildNode">Child node toevoegen</key>
|
||||
<key alias="addChild">Child toevoegen</key>
|
||||
|
||||
<key alias="editDataType">Data type bewerken</key>
|
||||
|
||||
<key alias="navigateSections">Secties navigeren</key>
|
||||
|
||||
<key alias="shortcut">Shortcuts</key>
|
||||
<key alias="showShortcuts">Toon shortcuts</key>
|
||||
|
||||
<key alias="toggleListView">Toggle lijstweergave</key>
|
||||
<key alias="toggleAllowAsRoot">Toggle toestaan op root-niveau</key>
|
||||
</area>
|
||||
@@ -641,57 +600,6 @@ Echter, Runway biedt een gemakkelijke basis om je snel op weg te helpen. Als je
|
||||
<key alias="watch">Bekijken</key>
|
||||
<key alias="welcomeIntro"><![CDATA[Deze wizard helpt u met het configureren van <strong>Umbraco %0%</strong> voor een nieuwe installatie of een upgrade van versie 3.0. <br /><br /> Druk op <strong>"volgende"</strong> om de wizard te starten.]]></key>
|
||||
</area>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<area alias="language">
|
||||
<key alias="cultureCode">Cultuurcode</key>
|
||||
<key alias="displayName">Cultuurnaam</key>
|
||||
@@ -701,18 +609,17 @@ Echter, Runway biedt een gemakkelijke basis om je snel op weg te helpen. Als je
|
||||
<key alias="renewSession">Vernieuw je sessie om je wijzigingen te behouden</key>
|
||||
</area>
|
||||
<area alias="login">
|
||||
<key alias="greeting0">Goede zondag</key>
|
||||
<key alias="greeting1">Fijne maandag</key>
|
||||
<key alias="greeting2">Fijne dinsdag</key>
|
||||
<key alias="greeting3">Fijne woensdag</key>
|
||||
<key alias="greeting4">Fijne donderdag</key>
|
||||
<key alias="greeting5">Fijne vrijdag</key>
|
||||
<key alias="greeting6">Fijne zaterdag</key>
|
||||
<key alias="greeting6">Fijne zaterdag</key>
|
||||
<key alias="instruction">log hieronder in</key>
|
||||
<key alias="signInWith">Inloggen met</key>
|
||||
<key alias="signInWith">Inloggen met</key>
|
||||
<key alias="timeout">Sessie is verlopen</key>
|
||||
<key alias="bottomText"><![CDATA[<p style="text-align:right;">© 2001 - %0% <br /><a href="http://umbraco.com" style="text-decoration: none" target="_blank">umbraco.com</a></p>]]></key>
|
||||
<key alias="forgottenPassword">Wachtwoord vergeten?</key>
|
||||
<key alias="forgottenPassword">Wachtwoord vergeten?</key>
|
||||
<key alias="forgottenPasswordInstruction">Er zal een email worden gestuurd naar het emailadres van jouw account. Hierin staat een link om je wachtwoord te resetten</key>
|
||||
<key alias="requestPasswordResetConfirmation">Een email met daarin de wachtwoord reset uitleg zal worden gestuurd als het emailadres in onze database voorkomt.</key>
|
||||
<key alias="returnToLogin">Terug naar loginformulier</key>
|
||||
@@ -720,9 +627,7 @@ Echter, Runway biedt een gemakkelijke basis om je snel op weg te helpen. Als je
|
||||
<key alias="setPasswordConfirmation">Je wachtwoord is aangepast</key>
|
||||
<key alias="resetCodeExpired">De link die je hebt aangeklikt is niet (meer) geldig.</key>
|
||||
<key alias="resetPasswordEmailCopySubject">Umbraco: Wachtwoord Reset</key>
|
||||
<key alias="resetPasswordEmailCopyFormat">
|
||||
<![CDATA[<p>De gebruikersnaam om in te loggen bij jouw Umbraco omgeving is: <strong>%0%</strong></p><p>Klik <a href="%1%"><strong>hier</strong></a> om je wachtwoord te resetten of knip/plak deze URL in je browser:</p><p><em>%1%</em></p>]]>
|
||||
</key>
|
||||
<key alias="resetPasswordEmailCopyFormat"><![CDATA[<p>De gebruikersnaam om in te loggen bij jouw Umbraco omgeving is: <strong>%0%</strong></p><p>Klik <a href="%1%"><strong>hier</strong></a> om je wachtwoord te resetten of knip/plak deze URL in je browser:</p><p><em>%1%</em></p>]]></key>
|
||||
</area>
|
||||
<area alias="main">
|
||||
<key alias="dashboard">Dashboard</key>
|
||||
@@ -820,7 +725,7 @@ Echter, Runway biedt een gemakkelijke basis om je snel op weg te helpen. Als je
|
||||
<key alias="packageVersion">Package versie</key>
|
||||
<key alias="packageVersionHistory">Package versiehistorie</key>
|
||||
<key alias="viewPackageWebsite">Bekijk de package website</key>
|
||||
<key alias="packageAlreadyInstalled">Package reeds geinstalleerd</key>
|
||||
<key alias="packageAlreadyInstalled">Package reeds geinstalleerd</key>
|
||||
<key alias="targetVersionMismatch">Deze package kan niet worden geinstalleerd omdat minimaal Umbraco versie %0% benodigd is.</key>
|
||||
<key alias="installStateUninstalling">Aan het deinstalleren...</key>
|
||||
<key alias="installStateDownloading">Aan het downloaden...</key>
|
||||
@@ -855,12 +760,10 @@ Echter, Runway biedt een gemakkelijke basis om je snel op weg te helpen. Als je
|
||||
<key alias="paSimpleHelp">Als je eenvoudige beveiliging wilt gebruiken met behulp van een enkele gebruikersnaam en wachtwoord</key>
|
||||
</area>
|
||||
<area alias="publish">
|
||||
<key alias="contentPublishedFailedAwaitingRelease">
|
||||
<![CDATA[
|
||||
<key alias="contentPublishedFailedAwaitingRelease"><![CDATA[
|
||||
%0% kan niet worden gepubliceerd omdat het item is gepland voor release.
|
||||
]]>
|
||||
</key>
|
||||
<key alias="contentPublishedFailedExpired"><![CDATA[
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedExpired"><![CDATA[
|
||||
%0% kon niet gepubliceerd worden omdat het item niet meer geldig is.
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedInvalid"><![CDATA[
|
||||
@@ -869,7 +772,7 @@ Echter, Runway biedt een gemakkelijke basis om je snel op weg te helpen. Als je
|
||||
<key alias="contentPublishedFailedByEvent"><![CDATA[
|
||||
%0% kon niet worden gepubliceerd doordat een 3rd party extensie het heeft geannuleerd.
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedByParent"><![CDATA[
|
||||
<key alias="contentPublishedFailedByParent"><![CDATA[
|
||||
%0% kon niet gepubliceerd worden, omdat de parent pagina niet gepubliceerd is.
|
||||
]]></key>
|
||||
<key alias="includeUnpublished">Inclusief ongepubliceerde subitems</key>
|
||||
@@ -887,9 +790,9 @@ Echter, Runway biedt een gemakkelijke basis om je snel op weg te helpen. Als je
|
||||
</area>
|
||||
<area alias="relatedlinks">
|
||||
<key alias="enterExternal">Externe link toevoegen</key>
|
||||
<key alias="chooseInternal">Interne link toevoegen</key>
|
||||
<key alias="caption">Bijschrift</key>
|
||||
<key alias="link">Link</key>
|
||||
<key alias="chooseInternal">Interne link toevoegen</key>
|
||||
<key alias="caption">Bijschrift</key>
|
||||
<key alias="link">Link</key>
|
||||
<key alias="newWindow">In een nieuw venster openen</key>
|
||||
<key alias="captionPlaceholder">Voer het bijschrijft in</key>
|
||||
<key alias="externalLinkPlaceholder">Voer de link in</key>
|
||||
@@ -921,15 +824,11 @@ Echter, Runway biedt een gemakkelijke basis om je snel op weg te helpen. Als je
|
||||
<key alias="settings">Instellingen</key>
|
||||
<key alias="statistics">Statistieken</key>
|
||||
<key alias="translation">Vertaling</key>
|
||||
<key alias="users">Gebruikers</key>
|
||||
<key alias="users">Gebruikers</key>
|
||||
<key alias="help" version="7.0">Help</key>
|
||||
<key alias="forms">Formulieren</key>
|
||||
<key alias="analytics">Analytics</key>
|
||||
</area>
|
||||
<area alias="help">
|
||||
<key alias="goTo">ga naar</key>
|
||||
<key alias="helpTopicsFor">Help onderwerpen voor</key>
|
||||
<key alias="videoChaptersFor">Video's voor</key>
|
||||
<key alias="theBestUmbracoVideoTutorials">De beste Umbraco video tutorials</key>
|
||||
</area>
|
||||
<area alias="settings">
|
||||
@@ -949,9 +848,7 @@ Echter, Runway biedt een gemakkelijke basis om je snel op weg te helpen. Als je
|
||||
<key alias="contentTypeUses">Dit inhoudstype gebruikt</key>
|
||||
<key alias="asAContentMasterType">als basis inhoudstype. Tabs van basis inhoudstypes worden niet getoond en kunnen alleen worden aangepast op het basis inhoudstype zelf</key>
|
||||
<key alias="noPropertiesDefinedOnTab">Geen eigenschappen gedefinieerd op dit tabblad. Klik op de link "voeg een nieuwe eigenschap" aan de bovenkant om een nieuwe eigenschap te creëren.</key>
|
||||
<key alias="masterDocumentType">Master Document Type</key>
|
||||
<key alias="createMatchingTemplate">Maak een bijbehorend template</key>
|
||||
<key alias="addIcon">Icon toevoegen</key>
|
||||
<key alias="addIcon">Icon toevoegen</key>
|
||||
</area>
|
||||
<area alias="sort">
|
||||
<key alias="sortOrder">Sort order</key>
|
||||
@@ -961,12 +858,12 @@ Echter, Runway biedt een gemakkelijke basis om je snel op weg te helpen. Als je
|
||||
<key alias="sortPleaseWait"><![CDATA[Een ogenblik geduld. Paginas worden gesorteerd, dit kan even duren.]]></key>
|
||||
</area>
|
||||
<area alias="speechBubbles">
|
||||
<key alias="validationFailedHeader">Validatie</key>
|
||||
<key alias="validationFailedMessage">Validatiefouten moeten worden opgelost voor dit item kan worden opgeslagen</key>
|
||||
<key alias="operationFailedHeader">Mislukt</key>
|
||||
<key alias="invalidUserPermissionsText">Wegens onvoldoende rechten kon deze handeling kon niet worden uitegevoerd </key>
|
||||
<key alias="operationCancelledHeader">Geannuleerd</key>
|
||||
<key alias="operationCancelledText">Uitvoering is g eannuleerd door de plugin van een 3e partij</key>
|
||||
<key alias="validationFailedHeader">Validatie</key>
|
||||
<key alias="validationFailedMessage">Validatiefouten moeten worden opgelost voor dit item kan worden opgeslagen</key>
|
||||
<key alias="operationFailedHeader">Mislukt</key>
|
||||
<key alias="invalidUserPermissionsText">Wegens onvoldoende rechten kon deze handeling kon niet worden uitegevoerd </key>
|
||||
<key alias="operationCancelledHeader">Geannuleerd</key>
|
||||
<key alias="operationCancelledText">Uitvoering is g eannuleerd door de plugin van een 3e partij</key>
|
||||
<key alias="contentPublishedFailedByEvent">Publicatie werd geannuleerd doordeeen plugin van een 3e partij</key>
|
||||
<key alias="contentTypeDublicatePropertyType">Eigenschappen type bestaat al</key>
|
||||
<key alias="contentTypePropertyTypeCreated">Eigenschappen type aangemaakt</key>
|
||||
@@ -1002,12 +899,8 @@ Echter, Runway biedt een gemakkelijke basis om je snel op weg te helpen. Als je
|
||||
<key alias="fileSavedHeader">Bestand opgeslagen</key>
|
||||
<key alias="fileSavedText">Bestand opgeslagen zonder fouten</key>
|
||||
<key alias="languageSaved">Taal opgeslagen</key>
|
||||
<key alias="mediaTypeSavedHeader">Media Type opgeslagen</key>
|
||||
<key alias="mediaTypeSavedHeader">Media Type opgeslagen</key>
|
||||
<key alias="memberTypeSavedHeader">Member Type opgeslagen</key>
|
||||
<key alias="pythonErrorHeader">Python script niet opgeslagen</key>
|
||||
<key alias="pythonErrorText">Python script kon niet worden opgeslagen door een fout</key>
|
||||
<key alias="pythonSavedHeader">Python script opeslagen!</key>
|
||||
<key alias="pythonSavedText">Geen fouten in python script!</key>
|
||||
<key alias="templateErrorHeader">Template niet opgeslagen</key>
|
||||
<key alias="templateErrorText">Controleer dat je geen 2 tamplates met dezelfde naam hebt</key>
|
||||
<key alias="templateSavedHeader">Template opgeslagen</key>
|
||||
@@ -1017,28 +910,15 @@ Echter, Runway biedt een gemakkelijke basis om je snel op weg te helpen. Als je
|
||||
<key alias="partialViewSavedText">Partial view opgeslagen zonder fouten!</key>
|
||||
<key alias="partialViewErrorHeader">Partial view niet opgeslagen</key>
|
||||
<key alias="partialViewErrorText">Er is een fout opgetreden bij het opslaan van het bestand.</key>
|
||||
<key alias="scriptSavedHeader">Script view opgeslagen</key>
|
||||
<key alias="scriptSavedText">Script view opgeslagen zonder fouten!</key>
|
||||
<key alias="scriptErrorHeader">Script view niet opgeslagen</key>
|
||||
<key alias="scriptErrorText">Er is een fout opgetreden bij het opslaan van dit bestand.</key>
|
||||
<key alias="cssErrorText">Er is een fout opgetreden bij het opslaan van dit bestand.</key>
|
||||
<key alias="deleteUserGroupsSuccess">%0% gebruikersgroepen verwijderd</key>
|
||||
<key alias="deleteUserGroupSuccess">%0% is verwijderd</key>
|
||||
<key alias="enableUsersSuccess">%0% gebruikers geactiveerd</key>
|
||||
<key alias="enableUsersError">Er heeft zich een fout voorgedaan tijdens het activeren van de gebruikers</key>
|
||||
<key alias="disableUsersSuccess">%0% users gedeactiveerd</key>
|
||||
<key alias="disableUsersError">Er heeft zich een fout voorgedaan tijdens het deactiveren van de gebruikers</key>
|
||||
<key alias="enableUserSuccess">%0% is nu geactiveerd</key>
|
||||
<key alias="enableUserError">Er heeft zich een fout voorgedaan tijdens het activeren van de gebruiker</key>
|
||||
<key alias="disableUserSuccess">%0% is nu gedeactiveerd</key>
|
||||
<key alias="disableUserError">Er heeft zich een fout voorgedaan tijdens het deactiveren van de gebruiker</key>
|
||||
<key alias="setUserGroupOnUsersSuccess">Gebruikers groepen zijn ingesteld</key>
|
||||
<key alias="deleteUserGroupsSuccess">%0% gebruikersgroepen verwijderd</key>
|
||||
<key alias="deleteUserGroupSuccess">%0% is verwijderd</key>
|
||||
<key alias="unlockUsersSuccess">%0% gebruikers gedeblokkeerd</key>
|
||||
<key alias="unlockUsersError">Er heeft zich een fout voorgedaan tijdens het deblokkeren van de gebruikers</key>
|
||||
<key alias="unlockUserSuccess">%0% is nu gedeblokkeerd</key>
|
||||
<key alias="unlockUserError">Er heeft zich een fout voorgedaan tijdens het deblokkeren van de gebruikers</key>
|
||||
<key alias="memberExportedSuccess">Lid is geexporteerd naar een bestand</key>
|
||||
<key alias="memberExportedError">Er heeft zich een fout voorgedaan tijdens het exporteren van het lid</key>
|
||||
<key alias="deleteUserSuccess">Gebruiker %0% is verwijderd</key>
|
||||
@@ -1065,22 +945,16 @@ Echter, Runway biedt een gemakkelijke basis om je snel op weg te helpen. Als je
|
||||
<key alias="template">Sjabloon</key>
|
||||
</area>
|
||||
<area alias="grid">
|
||||
<key alias="rte">Rich Text Editor</key>
|
||||
<key alias="media">Image</key>
|
||||
<key alias="macro">Macro</key>
|
||||
<key alias="embed">Embed</key>
|
||||
<key alias="headline">Headline</key>
|
||||
<key alias="quote">Quote</key>
|
||||
<key alias="insertControl">Item toevoegen</key>
|
||||
<key alias="chooseLayout">Kies de indeling</key>
|
||||
<key alias="addRows">Kies een indeling voor deze pagina om content toe te kunnen voegen</key>
|
||||
<key alias="addElement"><![CDATA[<i class="icon icon-add blue"></i> Plaats een (extra) content blok]]></key>
|
||||
<key alias="dropElement">Drop content</key>
|
||||
<key alias="settingsApplied">Instellingen toegepast</key>
|
||||
|
||||
<key alias="contentNotAllowed">Deze content is hier niet toegestaan</key>
|
||||
<key alias="contentAllowed">Deze content is hier toegestaan</key>
|
||||
|
||||
<key alias="clickToEmbed">Klik om een item te embedden</key>
|
||||
<key alias="clickToInsertImage">Klik om een afbeelding in te voegen</key>
|
||||
<key alias="placeholderImageCaption">Afbeelding ondertitel...</key>
|
||||
@@ -1089,106 +963,77 @@ Echter, Runway biedt een gemakkelijke basis om je snel op weg te helpen. Als je
|
||||
<key alias="gridLayoutsDetail">Lay-outs zijn het globale werkgebied voor de grid editor. Je hebt meestal maar één of twee verschillende lay-outs nodig</key>
|
||||
<key alias="addGridLayout">Een grid layout toevoegen</key>
|
||||
<key alias="addGridLayoutDetail">De lay-out aanpassen door de kolombreedte aan te passen en extra kolommen toe te voegen</key>
|
||||
|
||||
<key alias="rowConfigurations">Rijconfiguratie</key>
|
||||
<key alias="rowConfigurationsDetail">Rijen zijn voorgedefinieerde cellen die horizontaal zijn gerangschikt</key>
|
||||
<key alias="addRowConfiguration">Een rijconfiguratie toevoegen</key>
|
||||
<key alias="addRowConfigurationDetail">De rijconfiguratie aanpassen door de breedte van de cel in te stellen en extra cellen toe te voegen</key>
|
||||
|
||||
<key alias="columns">Kolommen</key>
|
||||
<key alias="columnsDetails">Het totaal aantal gecombineerde kolommen in de grid layout</key>
|
||||
|
||||
<key alias="settings">Instellingen</key>
|
||||
<key alias="settingsDetails">Configureren welke instellingen de editors kunnen aanpassen</key>
|
||||
|
||||
|
||||
<key alias="styles">Styles</key>
|
||||
<key alias="stylesDetails">Configureren welke stijlen de editors kunnen aanpassen</key>
|
||||
|
||||
<key alias="settingDialogDetails">De instellingen worden enkel bewaard indien de ingevoerde Json geldig is</key>
|
||||
|
||||
<key alias="allowAllEditors">Alle editors toelaten</key>
|
||||
<key alias="allowAllRowConfigurations">Alle rijconfiguraties toelaten</key>
|
||||
<key alias="maxItems">Maximale artikelen</key>
|
||||
<key alias="maxItemsDescription">Laat dit leeg of is ingesteld op -1 voor onbeperkt</key>
|
||||
<key alias="setAsDefault">Instellen als standaard</key>
|
||||
<key alias="setAsDefault">Instellen als standaard</key>
|
||||
<key alias="chooseExtra">Kies extra</key>
|
||||
<key alias="chooseDefault">Kies standaard</key>
|
||||
<key alias="areAdded">zijn toegevoegd</key>
|
||||
</area>
|
||||
|
||||
<area alias="contentTypeEditor">
|
||||
</area>
|
||||
<area alias="contentTypeEditor">
|
||||
<key alias="compositions">Composities</key>
|
||||
<key alias="noTabs">Er zijn nog geen tabs toegevoegd</key>
|
||||
<key alias="addNewTab">Voeg een nieuwe tab toe</key>
|
||||
<key alias="addAnotherTab">Voeg nog een tab toe</key>
|
||||
<key alias="inheritedFrom">Inherited van</key>
|
||||
<key alias="addProperty">Voeg property toe</key>
|
||||
<key alias="requiredLabel">Verplicht label</key>
|
||||
|
||||
<key alias="enableListViewHeading">Zet list view aan</key>
|
||||
<key alias="enableListViewDescription">Laat de child nodes van het content item zien als een sorteer- en doorzoekbare lijstweergave zien. Deze child nodes worden dan niet in de boomstructuur getoond.</key>
|
||||
|
||||
<key alias="allowedTemplatesHeading">Toegestane Templates</key>
|
||||
<key alias="allowedTemplatesDescription">Kies welke templates toegestaan zijn om door de editors op dit content-type gebruikt te worden</key>
|
||||
<key alias="allowAsRootHeading">Sta toe op root-niveau</key>
|
||||
<key alias="allowAsRootDescription">Sta editors toe om content van dit type aan te maken op root-niveau</key>
|
||||
<key alias="allowAsRootCheckbox">Ja - sta content van dit type toe op root-niveau</key>
|
||||
|
||||
<key alias="childNodesHeading">Toegestane child node types</key>
|
||||
<key alias="childNodesDescription">Sta contetn van een bepaalde type toe om onder dit type aangemaakt te kunnen worden</key>
|
||||
|
||||
<key alias="chooseChildNode">Kies child node</key>
|
||||
<key alias="compositionsDescription">Overerfde tabs en properties van een bestaand document-type. Nieuwe tabs worden toegevoegd aan het huidige document-type of samengevoegd als een tab met de identieke naam al bestaat.</key>
|
||||
<key alias="compositionInUse">Dit content-type wordt gebruikt in een compositie en kan daarom niet zelf een compositie worden.</key>
|
||||
<key alias="noAvailableCompositions">Er zijn geen content-typen beschikbaar om als compositie te gebruiken.</key>
|
||||
|
||||
<key alias="availableEditors">Beschikbare editors</key>
|
||||
<key alias="reuse">Herbruik</key>
|
||||
<key alias="editorSettings">Editor instellingen</key>
|
||||
|
||||
<key alias="configuration">Configuratie</key>
|
||||
|
||||
<key alias="yesDelete">Ja, verwijder</key>
|
||||
|
||||
<key alias="movedUnderneath">is naar onder geplaatst</key>
|
||||
<key alias="copiedUnderneath">is naar onder gecopierd</key>
|
||||
<key alias="folderToMove">Selecteer de map om te verplaatsen</key>
|
||||
<key alias="folderToCopy">Selecteer de map om te kopieren</key>
|
||||
<key alias="structureBelow">naar de boomstructuur onder</key>
|
||||
|
||||
<key alias="allDocumentTypes">Alle Document types</key>
|
||||
<key alias="allDocuments">Alle documenten</key>
|
||||
<key alias="allMediaItems">Alle media items</key>
|
||||
|
||||
<key alias="usingThisDocument">die gebruik maken van dit document type zullen permanent verwijderd worden. Bevestig aub dat je deze ook wilt verwijderen.</key>
|
||||
<key alias="usingThisMedia">die gebruik maken van dit media type zullen permanent verwijderd worden. Bevestig aub dat je deze ook wilt verwijderen.</key>
|
||||
<key alias="usingThisMember">die gebruik maken van dit member type zullen permanent verwijderd worden. Bevestig aub dat je deze ook wilt verwijderen.</key>
|
||||
|
||||
<key alias="andAllDocuments">en alle documenten van dit type</key>
|
||||
<key alias="andAllMediaItems">en alle media items van dit type</key>
|
||||
<key alias="andAllMembers">en alle leden van dit type</key>
|
||||
|
||||
<key alias="thisEditorUpdateSettings">die gebruik maken van deze editor zullen geupdate worden met deze nieuwe instellingen</key>
|
||||
|
||||
<key alias="memberCanEdit">Lid kan bewerken</key>
|
||||
<key alias="memberCanEditDescription">Toestaan dat deze eigenschap kan worden gewijzigd door het lid op zijn profiel pagina.</key>
|
||||
<key alias="isSensitiveData">Omvat gevoelige gegevens</key>
|
||||
<key alias="isSensitiveDataDescription">Verberg deze eigenschap voor de content editor die geen toegang heeft tot het bekijken van gevoelige informatie.</key>
|
||||
<key alias="showOnMemberProfile">Toon in het profiel van leden</key>
|
||||
<key alias="showOnMemberProfileDescription">Toelaten dat deze eigenschap wordt getoond op de profiel pagina van het lid.</key>
|
||||
|
||||
<key alias="tabHasNoSortOrder">tab heeft geen sorteervolgorde</key>
|
||||
</area>
|
||||
|
||||
<area alias="modelsBuilder">
|
||||
<key alias="buildingModels">Models aan het gereneren</key>
|
||||
<key alias="waitingMessage">dit kan enige tijd duren, geduld aub</key>
|
||||
<key alias="modelsGenerated">Models gegenereerd</key>
|
||||
<key alias="modelsGeneratedError">Models konden niet gegenereerd worden</key>
|
||||
<key alias="modelsExceptionInUlog">Models generatie is mislukt, kijk in de Umbraco log voor details</key>
|
||||
<key alias="buildingModels">Models aan het gereneren</key>
|
||||
<key alias="waitingMessage">dit kan enige tijd duren, geduld aub</key>
|
||||
<key alias="modelsGenerated">Models gegenereerd</key>
|
||||
<key alias="modelsGeneratedError">Models konden niet gegenereerd worden</key>
|
||||
<key alias="modelsExceptionInUlog">Models generatie is mislukt, kijk in de Umbraco log voor details</key>
|
||||
</area>
|
||||
|
||||
<area alias="templateEditor">
|
||||
<key alias="alternativeField">Alternatief veld</key>
|
||||
<key alias="alternativeText">Alternatieve tekst</key>
|
||||
@@ -1218,15 +1063,7 @@ Echter, Runway biedt een gemakkelijke basis om je snel op weg te helpen. Als je
|
||||
<key alias="withTime">Ja, met tijd. Scheidingsteken: </key>
|
||||
</area>
|
||||
<area alias="translation">
|
||||
<key alias="assignedTasks">Taken aan jou toegewezen</key>
|
||||
<key alias="assignedTasksHelp"><![CDATA[Onderstaande lijst toont vertalingstaken aan jou toegewezen. Om een meer gedetailleerd overzicht te zien, met comments, klik op "Details" of de naam van de pagina.
|
||||
Je kan ook de pagina direct downloaden als XML door te klikken op "Download Xml".
|
||||
Om een vertalingstaak te sluiten, ga aub naar het detailoverzicht en klik op de "Sluit" knop.
|
||||
]]></key>
|
||||
<key alias="closeTask">Sluit taak</key>
|
||||
<key alias="details">Details van vertaling</key>
|
||||
<key alias="downloadAllAsXml">Download alle vertalingstaken als xml</key>
|
||||
<key alias="downloadTaskAsXml">Download xml</key>
|
||||
<key alias="DownloadXmlDTD">Download xml DTD</key>
|
||||
<key alias="fields">Velden</key>
|
||||
<key alias="includeSubpages">Inclusief onderliggende pagina's</key>
|
||||
@@ -1245,18 +1082,9 @@ Om een vertalingstaak te sluiten, ga aub naar het detailoverzicht en klik op de
|
||||
|
||||
De Umbraco Robot
|
||||
]]></key>
|
||||
<key alias="mailSubject">[%0%] Vertaalopdracht voor %1%</key>
|
||||
<key alias="noTranslators">Geen vertaal-gebruikers gevonden. Maak eerst een vertaal-gebruiker aan voordat je pagina's voor vertaling verstuurd</key>
|
||||
<key alias="ownedTasks">Taken aangemaakt door jou</key>
|
||||
<key alias="ownedTasksHelp"><![CDATA[De lijst hieronder toont pagina's <strong>die je aanmaakte</strong>.
|
||||
Om een detailweergave met opmerkingen te zien, klik op "Detail" of op de paginanaam.
|
||||
Je kan ook de pagina in XML-formaat downloaden door op de "Download XML"-link te klikken.
|
||||
Om een vertalingstaak te sluiten, klik je op de "Sluiten"-knop in detailweergave.]]></key>
|
||||
<key alias="pageHasBeenSendToTranslation">De pagina '%0%' is verstuurd voor vertaling</key>
|
||||
<key alias="noLanguageSelected">Kies de taal waarin deze contetn vertaald moet worden</key>
|
||||
<key alias="sendToTranslate">Stuur voor vertaling</key>
|
||||
<key alias="taskAssignedBy">Toegewezen door</key>
|
||||
<key alias="taskOpened">Taak geopend</key>
|
||||
<key alias="totalWords">Totaal aantal woorden</key>
|
||||
<key alias="translateTo">Vertaal naar</key>
|
||||
<key alias="translationDone">Vertaling voltooid.</key>
|
||||
@@ -1284,10 +1112,9 @@ Om een vertalingstaak te sluiten, ga aub naar het detailoverzicht en klik op de
|
||||
<key alias="memberRoles">Rollen</key>
|
||||
<key alias="memberTypes">Ledentypes</key>
|
||||
<key alias="documentTypes">Documenttypen</key>
|
||||
<key alias="relationTypes">RelatieTypen</key>
|
||||
<key alias="relationTypes">RelatieTypen</key>
|
||||
<key alias="packager">Packages</key>
|
||||
<key alias="packages">Packages</key>
|
||||
<key alias="python">Python-bestanden</key>
|
||||
<key alias="repositories">Installeer uit repository</key>
|
||||
<key alias="runway">Installeer Runway</key>
|
||||
<key alias="runwayModules">Runway modules</key>
|
||||
@@ -1295,7 +1122,6 @@ Om een vertalingstaak te sluiten, ga aub naar het detailoverzicht en klik op de
|
||||
<key alias="scripts">Scripts</key>
|
||||
<key alias="stylesheets">Stylesheets</key>
|
||||
<key alias="templates">Sjablonen</key>
|
||||
<key alias="analytics">Analytics</key>
|
||||
<key alias="settingsGroup"></key>
|
||||
<key alias="templatingGroup"></key>
|
||||
<key alias="thirdPartyGroup"></key>
|
||||
@@ -1335,18 +1161,18 @@ Om een vertalingstaak te sluiten, ga aub naar het detailoverzicht en klik op de
|
||||
<key alias="inviteUserHelp">Nodig gebruikers uit om hen toegang te geven to Umbraco. Een uitnodiging wordt via e-mail verstuurd met instructies hoe de gebruiker kan inloggen.</key>
|
||||
<key alias="language">Taal</key>
|
||||
<key alias="languageHelp">Stel de taal in die gebruiker zal zien in menu's en dialoog vensters</key>
|
||||
<key alias="lastLockoutDate">Laatst geblokkeerd datu,</key>
|
||||
<key alias="lastLogin">Laatste keer ingelogd</key>
|
||||
<key alias="lastPasswordChangeDate">Laatste keer paswoord gewijzigd</key>
|
||||
<key alias="lastLockoutDate">Laatst geblokkeerd datu,</key>
|
||||
<key alias="lastLogin">Laatste keer ingelogd</key>
|
||||
<key alias="lastPasswordChangeDate">Laatste keer paswoord gewijzigd</key>
|
||||
<key alias="loginname">Loginnaam</key>
|
||||
<key alias="mediastartnode">Startnode in Mediabibliotheek</key>
|
||||
<key alias="mediastartnodehelp">Beperk de mediabibliotheek tot een specifieke startnode</key>
|
||||
<key alias="mediastartnodes">Startnodes in Mediabibliotheek</key>
|
||||
<key alias="mediastartnodeshelp">Beperk de mediabibliotheek tot een specifieke startnodes</key>
|
||||
<key alias="mediastartnodehelp">Beperk de mediabibliotheek tot een specifieke startnode</key>
|
||||
<key alias="mediastartnodes">Startnodes in Mediabibliotheek</key>
|
||||
<key alias="mediastartnodeshelp">Beperk de mediabibliotheek tot een specifieke startnodes</key>
|
||||
<key alias="modules">Secties</key>
|
||||
<key alias="noConsole">Blokkeer Umbraco toegang</key>
|
||||
<key alias="noLogin">heeft nog niet ingelogd</key>
|
||||
<key alias="oldPassword">Oude wachtwoord</key>
|
||||
<key alias="noLogin">heeft nog niet ingelogd</key>
|
||||
<key alias="oldPassword">Oude wachtwoord</key>
|
||||
<key alias="password">Wachtwoord</key>
|
||||
<key alias="resetPassword">Reset wachtwoord</key>
|
||||
<key alias="passwordChanged">Je wachtwoord is veranderd!</key>
|
||||
@@ -1360,56 +1186,42 @@ Om een vertalingstaak te sluiten, ga aub naar het detailoverzicht en klik op de
|
||||
<key alias="permissionReplaceChildren">Vervang rechten op de subitems</key>
|
||||
<key alias="permissionSelectedPages">U bent momenteel rechten aan het aanpassen voor volgende pagina's:</key>
|
||||
<key alias="permissionSelectPages">Selecteer pagina's om hun rechten aan te passen</key>
|
||||
<key alias="removePhoto">Verwijder je foto</key>
|
||||
<key alias="permissionsDefault">Standaard rechten</key>
|
||||
<key alias="permissionsGranular">Specifieke rechten</key>
|
||||
<key alias="permissionsGranularHelp">Geef rechten op specifieke nodes</key>
|
||||
<key alias="profile">Profiel</key>
|
||||
<key alias="searchAllChildren">Doorzoek alle subitems</key>
|
||||
<key alias="sectionsHelp">Geef de gebruiker toegang tot secties</key>
|
||||
<key alias="selectUserGroups">Selecteer een gebruikersgroep</key>
|
||||
<key alias="noStartNode">Geen startnode geselecteerd</key>
|
||||
<key alias="noStartNodes">Geen startnodes geselecteerd</key>
|
||||
<key alias="stateActive">Actief</key>
|
||||
<key alias="stateAll">Alles</key>
|
||||
<key alias="stateDisabled">Gedeactiveerd</key>
|
||||
<key alias="stateLockedOut">Geblokkeerd</key>
|
||||
<key alias="stateInvited">Uitgenodigd</key>
|
||||
<key alias="startnode">Startnode in Content</key>
|
||||
<key alias="startnodehelp">Beperk de content toegan een specifieke start node</key>
|
||||
<key alias="startnodes">Startnodes in Content</key>
|
||||
<key alias="startnodeshelp">Beperk de content toegan een specifieke start nodes</key>
|
||||
<key alias="sortNameAscending">Naam (A-Z)</key>
|
||||
<key alias="sortNameDescending">Naam (Z-A)</key>
|
||||
<key alias="sortCreateDateDescending">Nieuwste</key>
|
||||
<key alias="sortCreateDateAscending">Oudste</key>
|
||||
<key alias="sortLastLoginDateDescending">Laatste inlog</key>
|
||||
<key alias="updateDate">Laatste keer bijgewerkt</key>
|
||||
<key alias="userCreated">is aangemaakt</key>
|
||||
<key alias="userCreatedSuccessHelp">De gebruiker is aangemaakt. Om in te loggen in Umbraco gebruik je onderstaand wachtwoord.</key>
|
||||
<key alias="userManagement">Gebruikers beheren</key>
|
||||
<key alias="removePhoto">Verwijder je foto</key>
|
||||
<key alias="permissionsDefault">Standaard rechten</key>
|
||||
<key alias="permissionsGranular">Specifieke rechten</key>
|
||||
<key alias="permissionsGranularHelp">Geef rechten op specifieke nodes</key>
|
||||
<key alias="profile">Profiel</key>
|
||||
<key alias="searchAllChildren">Doorzoek alle subitems</key>
|
||||
<key alias="sectionsHelp">Geef de gebruiker toegang tot secties</key>
|
||||
<key alias="selectUserGroups">Selecteer een gebruikersgroep</key>
|
||||
<key alias="noStartNode">Geen startnode geselecteerd</key>
|
||||
<key alias="noStartNodes">Geen startnodes geselecteerd</key>
|
||||
<key alias="startnode">Startnode in Content</key>
|
||||
<key alias="startnodehelp">Beperk de content toegan een specifieke start node</key>
|
||||
<key alias="startnodes">Startnodes in Content</key>
|
||||
<key alias="startnodeshelp">Beperk de content toegan een specifieke start nodes</key>
|
||||
<key alias="updateDate">Laatste keer bijgewerkt</key>
|
||||
<key alias="userCreated">is aangemaakt</key>
|
||||
<key alias="userCreatedSuccessHelp">De gebruiker is aangemaakt. Om in te loggen in Umbraco gebruik je onderstaand wachtwoord.</key>
|
||||
<key alias="userManagement">Gebruikers beheren</key>
|
||||
<key alias="username">Gebruikersnaam</key>
|
||||
<key alias="userPermissions">Gebruikersrechten</key>
|
||||
<key alias="userGroupPermissions">Gebruikersgroep rechten</key>
|
||||
<key alias="usergroup">Gebruikersgroep</key>
|
||||
<key alias="userGroups">Gebruikersgroepen</key>
|
||||
<key alias="userInvited">is uitgenodigd</key>
|
||||
<key alias="userInvitedSuccessHelp">Een uitnodiging is gestuurd naar de nieuwe gebruiker met informatie over hoe in te loggen in Umbraco</key>
|
||||
<key alias="userinviteWelcomeMessage">Hallo en welk in Umbraco! Binnen ongeveer 1 minuut kan je aan de slag. Je moet enkel je wachtwoord instellen en een foto toevoegen.</key>
|
||||
<key alias="userinviteAvatarMessage">Wijzig je foto zodat andere gebruikers je makkelijk kunnen herkennen.</key>
|
||||
<key alias="usergroup">Gebruikersgroep</key>
|
||||
<key alias="userInvited">is uitgenodigd</key>
|
||||
<key alias="userInvitedSuccessHelp">Een uitnodiging is gestuurd naar de nieuwe gebruiker met informatie over hoe in te loggen in Umbraco</key>
|
||||
<key alias="userinviteWelcomeMessage">Hallo en welk in Umbraco! Binnen ongeveer 1 minuut kan je aan de slag. Je moet enkel je wachtwoord instellen en een foto toevoegen.</key>
|
||||
<key alias="userinviteAvatarMessage">Wijzig je foto zodat andere gebruikers je makkelijk kunnen herkennen.</key>
|
||||
<key alias="writer">Auteur</key>
|
||||
<key alias="translator">Vertaler</key>
|
||||
<key alias="change">Wijzig</key>
|
||||
<key alias="yourProfile" version="7.0">Je profiel</key>
|
||||
<key alias="yourHistory" version="7.0">Je recente historie</key>
|
||||
<key alias="sessionExpires" version="7.0">Sessie verloopt over</key>
|
||||
<key alias="inviteUser">Gebruiker uitnodigen</key>
|
||||
<key alias="createUser">Gebruiker aanmaken</key>
|
||||
<key alias="sendInvite">Uitnodiging versturen</key>
|
||||
<key alias="backToUsers">Terug naar gebruikers</key>
|
||||
<key alias="inviteEmailCopySubject">Umbraco: Uitnodiging</key>
|
||||
<key alias="inviteEmailCopyFormat">
|
||||
<![CDATA[
|
||||
<key alias="inviteUser">Gebruiker uitnodigen</key>
|
||||
<key alias="createUser">Gebruiker aanmaken</key>
|
||||
<key alias="sendInvite">Uitnodiging versturen</key>
|
||||
<key alias="backToUsers">Terug naar gebruikers</key>
|
||||
<key alias="inviteEmailCopySubject">Umbraco: Uitnodiging</key>
|
||||
<key alias="inviteEmailCopyFormat"><![CDATA[
|
||||
<html>
|
||||
<head>
|
||||
<meta name='viewport' content='width=device-width'>
|
||||
@@ -1499,14 +1311,13 @@ Om een vertalingstaak te sluiten, ga aub naar het detailoverzicht en klik op de
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>]]>
|
||||
</key>
|
||||
<key alias="invite">Uitnodigen</key>
|
||||
<key alias="defaultInvitationMessage">Uitnodiging opnieuw aan het versturen...</key>
|
||||
<key alias="deleteUser">Verwijder gebruiker</key>
|
||||
<key alias="deleteUserConfirmation">Ben je zeker dat je deze gebruiker wil verwijderen?</key>
|
||||
</html>]]></key>
|
||||
<key alias="invite">Uitnodigen</key>
|
||||
<key alias="defaultInvitationMessage">Uitnodiging opnieuw aan het versturen...</key>
|
||||
<key alias="deleteUser">Verwijder gebruiker</key>
|
||||
<key alias="deleteUserConfirmation">Ben je zeker dat je deze gebruiker wil verwijderen?</key>
|
||||
</area>
|
||||
<area alias="validation">
|
||||
<area alias="validation">
|
||||
<key alias="validation">Validatie</key>
|
||||
<key alias="validateAsEmail">Valideer als email</key>
|
||||
<key alias="validateAsNumber">Valideer als nummer</key>
|
||||
@@ -1525,7 +1336,6 @@ Om een vertalingstaak te sluiten, ga aub naar het detailoverzicht en klik op de
|
||||
<key alias="rectifySuccessMessage">Waarde was '%1%' voor XPath '%2%' in configuratie bestand '%3%'.</key>
|
||||
<key alias="checkErrorMessageDifferentExpectedValue">De verwachtte waarde voor '%2%' is '%1%' in configuratie bestand '%3%', maar is '%0%'.</key>
|
||||
<key alias="checkErrorMessageUnexpectedValue">Onverwachte waarde '%0%' gevonden voor '%2%' in configuratie bestand '%3%'.</key>
|
||||
|
||||
<!-- The following keys get these tokens passed in:
|
||||
0: Current value
|
||||
1: Recommended value
|
||||
@@ -1533,11 +1343,9 @@ Om een vertalingstaak te sluiten, ga aub naar het detailoverzicht en klik op de
|
||||
<key alias="customErrorsCheckSuccessMessage">Custom foutmeldingen zijn ingesteld op '%0%'.</key>
|
||||
<key alias="customErrorsCheckErrorMessage">Custom foutmeldingen zijn momenteel '%0%'. Wij raden aan deze aan te passen naar '%1%' voor livegang.</key>
|
||||
<key alias="customErrorsCheckRectifySuccessMessage">Custom foutmeldingen aangepast naar '%0%'.</key>
|
||||
|
||||
<key alias="macroErrorModeCheckSuccessMessage">Macro foutmeldingen zijn ingesteld op'%0%'.</key>
|
||||
<key alias="macroErrorModeCheckErrorMessage">Macro foutmeldingen zijn ingesteld op '%0%'. Dit zal er voor zorgen dat bepaalde, of alle, pagina's van de website niet geladen kunnen worden als er errors in een Macro zitten. Corrigeren zal deze waarde aanpassen naar '%1%'.</key>
|
||||
<key alias="macroErrorModeCheckRectifySuccessMessage">Macro foutmeldingen zijn aangepast naar '%0%'.</key>
|
||||
|
||||
<!-- The following keys get these tokens passed in:
|
||||
0: Current value
|
||||
1: Recommended value
|
||||
@@ -1546,16 +1354,13 @@ Om een vertalingstaak te sluiten, ga aub naar het detailoverzicht en klik op de
|
||||
<key alias="trySkipIisCustomErrorsCheckSuccessMessage">Try Skip IIS Custom foutmeldingen is ingesteld op '%0%'. IIS versie '%1%' wordt gebruikt.</key>
|
||||
<key alias="trySkipIisCustomErrorsCheckErrorMessage">Try Skip IIS Custom foutmeldingen is ingesteld op '%0%'. Het wordt voor de gebruikte IIS versie (%2%) aangeraden deze in te stellen op '%1%'.</key>
|
||||
<key alias="trySkipIisCustomErrorsCheckRectifySuccessMessage">Try Skip IIS Custom foutmeldingen ingesteld op '%0%'.</key>
|
||||
|
||||
<!-- The following keys get predefined tokens passed in that are not all the same, like above -->
|
||||
<key alias="configurationServiceFileNotFound">Het volgende bestand bestaat niet: '%0%'.</key>
|
||||
<key alias="configurationServiceNodeNotFound"><![CDATA[<strong>'%0%'</strong> kon niet gevonden worden in configuratie bestand <strong>'%1%'</strong>.]]></key>
|
||||
<key alias="configurationServiceError">Er is een fout opgetreden. Bekijk de log file voor de volledige fout: %0%.</key>
|
||||
|
||||
<key alias="xmlDataIntegrityCheckMembers">Members - Totaal XML: %0%, Totaal: %1%, Total incorrect: %2%</key>
|
||||
<key alias="xmlDataIntegrityCheckMedia">Media - Totaal XML: %0%, Totaal: %1%, Total incorrect: %2%</key>
|
||||
<key alias="xmlDataIntegrityCheckContent">Content - Totaal XML: %0%, Totaal gepubliceerd: %1%, Total incorrect: %2%</key>
|
||||
|
||||
<key alias="httpsCheckValidCertificate">Het cerficaat van de website is ongeldig.</key>
|
||||
<key alias="httpsCheckInvalidCertificate">Cerficaat validatie foutmelding: '%0%'</key>
|
||||
<key alias="healthCheckInvalidUrl">Fout bij pingen van URL %0% - '%1%'</key>
|
||||
@@ -1563,61 +1368,51 @@ Om een vertalingstaak te sluiten, ga aub naar het detailoverzicht en klik op de
|
||||
<key alias="httpsCheckConfigurationRectifyNotPossible">De appSetting 'umbracoUseSSL' in web.config staat op 'false'. Indien HTTPS gebruikt wordt moet deze op 'true' staan.</key>
|
||||
<key alias="httpsCheckConfigurationCheckResult">De appSetting 'umbracoUseSSL' in web.config is ingesteld op '%0%'. Cookies zijn %1% ingesteld als secure.</key>
|
||||
<key alias="httpsCheckEnableHttpsError">De 'umbracoUseSSL' waarde in web.config kon niet aangepast worden. Foutmelding: %0%</key>
|
||||
|
||||
<!-- The following keys don't get tokens passed in -->
|
||||
<key alias="httpsCheckEnableHttpsButton">HTTPS inschakelen</key>
|
||||
<key alias="httpsCheckEnableHttpsDescription">Zet in de appSettings van de web.config de umbracoSSL instelling op 'true'.</key>
|
||||
<key alias="httpsCheckEnableHttpsSuccess">De appSetting 'umbracoUseSSL' is nu ingesteld op 'true', cookies zullen als 'secure' worden aangemerkt.</key>
|
||||
|
||||
<key alias="rectifyButton">Herstellen</key>
|
||||
<key alias="cannotRectifyShouldNotEqual">Kan een controle met vergelijkingstype 'ShouldNotEqual' niet herstellen.</key>
|
||||
<key alias="cannotRectifyShouldEqualWithValue">Kan een controle met vergelijkingstype 'ShouldNotEqual' en gedefinieerde waarde niet herstellen.</key>
|
||||
<key alias="valueToRectifyNotProvided">Waarde om te herstellen niet gedefinieerd.</key>
|
||||
|
||||
<key alias="compilationDebugCheckSuccessMessage">Debug compiliate mode staat uit.</key>
|
||||
<key alias="compilationDebugCheckErrorMessage">Debug compiliate mode staat momenteel aan. Wij raden aan deze instelling uit te zetten voor livegang.</key>
|
||||
<key alias="compilationDebugCheckRectifySuccessMessage">Debug compiliate mode uitgezet.</key>
|
||||
|
||||
<key alias="traceModeCheckSuccessMessage">Trace mode staat uit.</key>
|
||||
<key alias="traceModeCheckErrorMessage">Trace mode staat momenteel aan. Wij raden aan deze instelling uit te zetten voor livegang.</key>
|
||||
<key alias="traceModeCheckRectifySuccessMessage">Trace mode uitgezet.</key>
|
||||
|
||||
<key alias="folderPermissionsCheckMessage">Alle mappen hebben de juiste permissie-instellingen!.</key>
|
||||
<!-- The following keys get these tokens passed in:
|
||||
0: Comma delimitted list of failed folder paths
|
||||
-->
|
||||
<key alias="requiredFolderPermissionFailed"><![CDATA[De volgende bestanden moeten wijzig-rechten krijgen om Umbraco goed te laten werken: <strong>%0%</strong>.]]></key>
|
||||
<key alias="optionalFolderPermissionFailed"><![CDATA[Aangeraden wordt de volgende bestanden wijzig-rechten te geven om Umbraco goed te laten werken: <strong>%0%</strong>. Als deze niet in gebruik zijn voor deze omgeving hoeft er geen actie te worden ondernomen.]]></key>
|
||||
|
||||
<key alias="filePermissionsCheckMessage">All files have the correct permissions set.</key>
|
||||
<!-- The following keys get these tokens passed in:
|
||||
0: Comma delimitted list of failed folder paths
|
||||
-->
|
||||
<key alias="requiredFilePermissionFailed"><![CDATA[De volgende bestanden moeten schrijf-rechten krijgen om Umbraco goed te laten werken: <strong>%0%</strong>.]]></key>
|
||||
<key alias="optionalFilePermissionFailed"><![CDATA[Aangeraden wordt de volgende bestanden schrijf-rechten te geven om Umbraco goed te laten werken: <strong>%0%</strong>. Als deze niet in gebruik zijn voor deze omgeving hoeft er geen actie te worden ondernomen.]]></key>
|
||||
|
||||
<key alias="clickJackingCheckHeaderFound"><![CDATA[De <strong>X-Frame-Options</strong> header of meta-tag om IFRAMEing door andere websites te voorkomen is aanwezig!]]></key>
|
||||
<key alias="clickJackingCheckHeaderNotFound"><![CDATA[De <strong>X-Frame-Options</strong> header of meta-tag om IFRAMEing door andere websites te voorkomen is NIET aanwezig.]]></key>
|
||||
<key alias="setHeaderInConfig">Voorkom IFRAMEing via web.config</key>
|
||||
<key alias="clickJackingSetHeaderInConfigDescription">Voegt de instelling toe aan de httpProtocol/customHeaders section in web.config om IFRAMEing door andere websites te voorkomen.</key>
|
||||
<key alias="clickJackingSetHeaderInConfigSuccess">De instelling om IFRAMEing door andere websites te voorkomen is toegevoegd aan de web.config!</key>
|
||||
<key alias="setHeaderInConfigError">Web.config kon niet aangepast worden door error: %0%</key>
|
||||
|
||||
<!-- The following key get these tokens passed in:
|
||||
0: Comma delimitted list of headers found
|
||||
-->
|
||||
<key alias="excessiveHeadersFound"><![CDATA[De volgende header welke informatie tonen over de gebruikte website technologie zijn aangetroffen: <strong>%0%</strong>.]]></key>
|
||||
<key alias="excessiveHeadersNotFound">Er zijn geen headeres gevonden welke informatie over de gebruikte website technologie prijsgeven!</key>
|
||||
|
||||
<key alias="smtpMailSettingsNotFound">In de Web.config werd system.net/mailsettings niet gevonden</key>
|
||||
<key alias="smtpMailSettingsHostNotConfigured">In de Web.config sectie system.net/mailsettings is de host niet geconfigureerd.</key>
|
||||
<key alias="smtpMailSettingsConnectionSuccess">SMTP instellingen zijn correct ingesteld en werken zoals verwacht.</key>
|
||||
<key alias="smtpMailSettingsConnectionFail">De SMTP server geconfigureerd met host '%0%' en poort '%1%' kon niet gevonden worden. Controleer of de SMTP instellingen in Web.config file system.net/mailsettings correct zijn.</key>
|
||||
|
||||
<key alias="notificationEmailsCheckSuccessMessage"><![CDATA[Notificatie email is verzonden naar <strong>%0%</strong>.]]></key>
|
||||
<key alias="notificationEmailsCheckErrorMessage"><![CDATA[Notificatie email staat nog steeds op de default waarde van <strong>%0%</strong>.]]></key>
|
||||
</area>
|
||||
<area alias="redirectUrls">
|
||||
<area alias="redirectUrls">
|
||||
<key alias="disableUrlTracker">URL tracker uitzetten</key>
|
||||
<key alias="enableUrlTracker">URL tracker aanzetten</key>
|
||||
<key alias="originalUrl">Originele URL</key>
|
||||
@@ -1634,11 +1429,11 @@ Om een vertalingstaak te sluiten, ga aub naar het detailoverzicht en klik op de
|
||||
<key alias="enabledConfirm">URL tracker staat nu aan.</key>
|
||||
<key alias="enableError">Fout bij het aanzetten van de URL tracker. Meer informatie kan gevonden worden in de log file.</key>
|
||||
</area>
|
||||
<area alias="recycleBin">
|
||||
<key alias="contentTrashed">Content verwijderd met id : {0} gerelateerd aan aan bovenliggend item met Id: {1}</key>
|
||||
<key alias="mediaTrashed">Media verwijderd met id: {0} gerelateerd aan aan bovenliggend item met Id: {1}</key>
|
||||
<key alias="itemCannotBeRestored">Kan dit item niet automatisch herstellen</key>
|
||||
<key alias="noRestoreRelation">Er is geen 'herstel' relatie gevonden voor dit item. Gebruik de "Verplaats" optie om het manueel terug te zetten</key>
|
||||
<key alias="restoreUnderRecycled">Het item dat u wil herstellen onder ('%0%') zit in de prullenbak. Gebruik de "Verplaats" optie om het manueel terug te zetten</key>
|
||||
</area>
|
||||
<area alias="recycleBin">
|
||||
<key alias="contentTrashed">Content verwijderd met id : {0} gerelateerd aan aan bovenliggend item met Id: {1}</key>
|
||||
<key alias="mediaTrashed">Media verwijderd met id: {0} gerelateerd aan aan bovenliggend item met Id: {1}</key>
|
||||
<key alias="itemCannotBeRestored">Kan dit item niet automatisch herstellen</key>
|
||||
<key alias="noRestoreRelation">Er is geen 'herstel' relatie gevonden voor dit item. Gebruik de "Verplaats" optie om het manueel terug te zetten</key>
|
||||
<key alias="restoreUnderRecycled">Het item dat u wil herstellen onder ('%0%') zit in de prullenbak. Gebruik de "Verplaats" optie om het manueel terug te zetten</key>
|
||||
</area>
|
||||
</language>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<language alias="pl" intName="Polish" localName="polski" lcid="21" culture="pl-PL">
|
||||
<creator>
|
||||
<name>The Umbraco community</name>
|
||||
@@ -51,8 +51,8 @@
|
||||
<key alias="administration">Administracja</key>
|
||||
<key alias="structure">Struktura</key>
|
||||
<key alias="other">Inne</key>
|
||||
</area>
|
||||
<area alias="actionDescriptions">
|
||||
</area>
|
||||
<area alias="actionDescriptions">
|
||||
<key alias="assignDomain">Zezwól na dostęp do przydzielenia języka i hostów</key>
|
||||
<key alias="auditTrail">Zezwól na dostęp do wglądu w historię logów węzła</key>
|
||||
<key alias="browse">Zezwól na dostęp do widoku węzła</key>
|
||||
@@ -71,7 +71,7 @@
|
||||
<key alias="translate">Zezwól na dostęp do tłumaczenia węzła</key>
|
||||
<key alias="update">Zezwól na dostęp do zapisania węzła</key>
|
||||
<key alias="createblueprint">Zezwól na dostęp do utworzenia Szablonu Zawartości</key>
|
||||
</area>
|
||||
</area>
|
||||
<area alias="assignDomain">
|
||||
<key alias="permissionDenied">Brak odpowiednich uprawnień</key>
|
||||
<key alias="addNew">Dodaj nową domenę</key>
|
||||
@@ -86,17 +86,13 @@
|
||||
<key alias="domainExists">Domena '%0%' jest aktualnie przypisana</key>
|
||||
<key alias="domainUpdated">Domena '%0%' została zaktualizowana</key>
|
||||
<key alias="orEdit">Edytuj Aktualne Domeny</key>
|
||||
<key alias="domainHelp">
|
||||
<![CDATA[Poprawne domeny to: "example.com", "www.example.com", "example.com:8080" lub
|
||||
<key alias="domainHelp"><![CDATA[Poprawne domeny to: "example.com", "www.example.com", "example.com:8080" lub
|
||||
"https://www.example.com/". Wspierane są jednopoziomowe ścieżki domen, np. "example.com/en" jednakże powinno się ich unikać.
|
||||
Preferowane jest użycie powyższych ustawień języka.]]>
|
||||
</key>
|
||||
Preferowane jest użycie powyższych ustawień języka.]]></key>
|
||||
<key alias="inherit">Odziedziczona</key>
|
||||
<key alias="setLanguage">Język</key>
|
||||
<key alias="setLanguageHelp">
|
||||
<![CDATA[Wybierz język dla węzła,<br /> lub wybierz dziedziczenie języka z węzła rodzica. Zostanie to zastosowane<br />
|
||||
także do obecnego węzła, o ile poniższa domena również do niego należy.]]>
|
||||
</key>
|
||||
<key alias="setLanguageHelp"><![CDATA[Wybierz język dla węzła,<br /> lub wybierz dziedziczenie języka z węzła rodzica. Zostanie to zastosowane<br />
|
||||
także do obecnego węzła, o ile poniższa domena również do niego należy.]]></key>
|
||||
<key alias="setDomains">Domeny</key>
|
||||
</area>
|
||||
<area alias="auditTrails">
|
||||
@@ -105,7 +101,6 @@
|
||||
<area alias="buttons">
|
||||
<key alias="clearSelection">Wyczyść sekcję</key>
|
||||
<key alias="select">Wybierz</key>
|
||||
<key alias="selectCurrentFolder">Wybierz bieżący folder</key>
|
||||
<key alias="somethingElse">Zrób coś innego</key>
|
||||
<key alias="bold">Pogrubienie</key>
|
||||
<key alias="deindent">Zmniejsz wcięcie</key>
|
||||
@@ -134,7 +129,6 @@
|
||||
<key alias="styleChoose">Wybierz styl</key>
|
||||
<key alias="styleShow">Pokaż style</key>
|
||||
<key alias="tableInsert">Wstaw tabelę</key>
|
||||
<key alias="generateModels">Wygeneruj modele</key>
|
||||
<key alias="saveAndGenerateModels">Zapisz i wygeneruj modele</key>
|
||||
<key alias="undo">Cofnij</key>
|
||||
<key alias="redo">Powtórz</key>
|
||||
@@ -218,24 +212,21 @@
|
||||
<key alias="nestedContentDeleteItem">Czy na pewno chcesz usunąć ten element?</key>
|
||||
<key alias="nestedContentEditorNotSupported">Właściwość %0% używa edytora %1%, który nie jest wspierany przez Nested Content.</key>
|
||||
<key alias="addTextBox">Dodaj kolejne pole tekstowe</key>
|
||||
<key alias="removeTextBox">Usuń te pole tekstowe</key>
|
||||
<key alias="removeTextBox">Usuń te pole tekstowe</key>
|
||||
<key alias="contentRoot">Korzeń zawartości</key>
|
||||
</area>
|
||||
<area alias="blueprints">
|
||||
<key alias="createBlueprintFrom">Stwórz nowy Szablon Zawartości z '%0%'</key>
|
||||
<key alias="blankBlueprint">Pusty</key>
|
||||
<key alias="selectBlueprint">Wybierz Szablon Zawartości</key>
|
||||
<key alias="createdBlueprintHeading">Szablon Zawartości został stworzony</key>
|
||||
<key alias="createdBlueprintMessage">Szablon Zawartości został stworzony z '%0%'</key>
|
||||
<key alias="duplicateBlueprintMessage">Szablon Zawartości o tej samej nazwie już istnieje</key>
|
||||
<key alias="blueprintDescription">Szablon Zawartości to predefiniowana zawartość, którą edytor może wybrać, aby użyć jej jako podstawę do stworzenia nowej zawartości</key>
|
||||
</area>
|
||||
<key alias="createBlueprintFrom">Stwórz nowy Szablon Zawartości z '%0%'</key>
|
||||
<key alias="blankBlueprint">Pusty</key>
|
||||
<key alias="selectBlueprint">Wybierz Szablon Zawartości</key>
|
||||
<key alias="createdBlueprintHeading">Szablon Zawartości został stworzony</key>
|
||||
<key alias="createdBlueprintMessage">Szablon Zawartości został stworzony z '%0%'</key>
|
||||
<key alias="duplicateBlueprintMessage">Szablon Zawartości o tej samej nazwie już istnieje</key>
|
||||
<key alias="blueprintDescription">Szablon Zawartości to predefiniowana zawartość, którą edytor może wybrać, aby użyć jej jako podstawę do stworzenia nowej zawartości</key>
|
||||
</area>
|
||||
<area alias="media">
|
||||
<key alias="clickToUpload">Kliknij, aby załadować plik</key>
|
||||
<key alias="dropFilesHere">Przerzuć swoje pliki tutaj...</key>
|
||||
<key alias="urls">Link do mediów</key>
|
||||
<key alias="orClickHereToUpload">lub kliknij tutaj, aby wybrać pliki</key>
|
||||
<key alias="onlyAllowedFiles">Jedyne dozwolone typy plików to</key>
|
||||
<key alias="disallowedFileType">Nie można załadować pliku, typ pliku nie jest akceptowany</key>
|
||||
<key alias="maxFileSize">Maksymalny rozmiar pliku to</key>
|
||||
<key alias="mediaRoot">Korzeń mediów</key>
|
||||
@@ -258,7 +249,6 @@
|
||||
<key alias="newEmptyPartialView">Nowy pusty Częściowy Widok</key>
|
||||
<key alias="newPartialViewMacro">Nowy Częściowy Widok makro</key>
|
||||
<key alias="newPartialViewFromSnippet">Nowy Częściowy Widok ze snippeta</key>
|
||||
<key alias="newEmptyPartialViewMacro">Nowy pusty Częściowy Widok makro</key>
|
||||
<key alias="newPartialViewMacroFromSnippet">Nowy Częściowy Widok makro ze snippeta</key>
|
||||
<key alias="newPartialViewMacroNoMacro">Nowy Częściowy Widok makro (bez makro)</key>
|
||||
</area>
|
||||
@@ -279,27 +269,22 @@
|
||||
</area>
|
||||
<area alias="bulk">
|
||||
<key alias="done">Wykonane</key>
|
||||
|
||||
<key alias="deletedItem">Usunięto %0% element</key>
|
||||
<key alias="deletedItems">Usunięto %0% elementy(ów)</key>
|
||||
<key alias="deletedItemOfItem">Usunięto %0% z %1% elementu</key>
|
||||
<key alias="deletedItemOfItems">Usunięto %0% z %1% elementów</key>
|
||||
|
||||
<key alias="publishedItem">Opublikowano %0% element</key>
|
||||
<key alias="publishedItems">Opublikowano %0% elementy(ów)</key>
|
||||
<key alias="publishedItemOfItem">Opublikowano %0% z %1% elementu</key>
|
||||
<key alias="publishedItemOfItems">Opublikowano %0% z %1% elementów</key>
|
||||
|
||||
<key alias="unpublishedItem">Cofnięto publikację %0% elementu</key>
|
||||
<key alias="unpublishedItems">Cofnięto publikację %0% elementy(ów)</key>
|
||||
<key alias="unpublishedItemOfItem">Cofnięto publikację %0% z %1% elementu</key>
|
||||
<key alias="unpublishedItemOfItems">Cofnięto publikację %0% z %1% elementów</key>
|
||||
|
||||
<key alias="movedItem">Przeniesiono %0% element</key>
|
||||
<key alias="movedItems">Przeniesiono %0% elementy(ów)</key>
|
||||
<key alias="movedItemOfItem">Przeniesiono %0% z %1% elementu</key>
|
||||
<key alias="movedItemOfItems">Przeniesiono %0% z %1% elementów</key>
|
||||
|
||||
<key alias="copiedItem">Skopiowano %0% element</key>
|
||||
<key alias="copiedItems">Skopiowano %0% elementy(ów)</key>
|
||||
<key alias="copiedItemOfItem">Skopiowano %0% z %1% elementu</key>
|
||||
@@ -350,25 +335,19 @@
|
||||
<key alias="siterepublishHelp">Cache strony zostanie odświeżone. Cała zawartość opublikowana będzie aktualna, lecz nieopublikowana zawartość pozostanie niewidoczna</key>
|
||||
<key alias="tableColumns">Liczba kolumn</key>
|
||||
<key alias="tableRows">Liczba wierszy</key>
|
||||
<key alias="templateContentAreaHelp">
|
||||
<![CDATA[<strong>Ustaw zastępczy ID</strong> Ustawiając ID na tym elemencie możesz później łączyć treść z podrzędnych szablonów,
|
||||
ustawiając dowiązanie do tego ID na elemencie <code><asp:treści /></code>]]>
|
||||
</key>
|
||||
<key alias="templateContentPlaceHolderHelp">
|
||||
<![CDATA[<strong>Wybierz zastępczy ID</strong> z poniższej listy. Możesz wybierać tylko
|
||||
spośród ID na szablonie nadrzędnym tego formularza.]]>
|
||||
</key>
|
||||
<key alias="templateContentAreaHelp"><![CDATA[<strong>Ustaw zastępczy ID</strong> Ustawiając ID na tym elemencie możesz później łączyć treść z podrzędnych szablonów,
|
||||
ustawiając dowiązanie do tego ID na elemencie <code><asp:treści /></code>]]></key>
|
||||
<key alias="templateContentPlaceHolderHelp"><![CDATA[<strong>Wybierz zastępczy ID</strong> z poniższej listy. Możesz wybierać tylko
|
||||
spośród ID na szablonie nadrzędnym tego formularza.]]></key>
|
||||
<key alias="thumbnailimageclickfororiginal">Kliknij na obrazie, aby zobaczyć go w pełnym rozmiarze</key>
|
||||
<key alias="treepicker">Wybierz element</key>
|
||||
<key alias="viewCacheItem">Podgląd elementów Cache</key>
|
||||
<key alias="createFolder">Utwórz folder...</key>
|
||||
<key alias="relateToOriginalLabel">Odnieś się do oryginału</key>
|
||||
<key alias="includeDescendants">Zawrzyj potomków</key>
|
||||
<key alias="theFriendliestCommunity">Najbardziej przyjacielska społeczność</key>
|
||||
<key alias="linkToPage">Link do strony</key>
|
||||
<key alias="openInNewWindow">Otwórz zlinkowany dokument w nowym oknie lub zakładce</key>
|
||||
<key alias="linkToMedia">Link do mediów</key>
|
||||
<key alias="linkToFile">Link do plików</key>
|
||||
<key alias="selectContentStartNode">Wybierz węzeł początkowy zawartości</key>
|
||||
<key alias="selectMedia">Wybierz media</key>
|
||||
<key alias="selectIcon">Wybierz ikonę</key>
|
||||
@@ -396,18 +375,13 @@
|
||||
<key alias="selectSnippet">Wybierz snippet</key>
|
||||
</area>
|
||||
<area alias="dictionaryItem">
|
||||
<key alias="description">
|
||||
<![CDATA[
|
||||
<key alias="description"><![CDATA[
|
||||
Edytuj różne wersje językowe dla elementu słownika '<em>%0%</em>' poniżej.<br/>
|
||||
Możesz dodać dodatkowe języki w menu "Języki" po lewej stronie.]]>
|
||||
</key>
|
||||
Możesz dodać dodatkowe języki w menu "Języki" po lewej stronie.]]></key>
|
||||
<key alias="displayName">Nazwa języka</key>
|
||||
<key alias="changeKey">Edytuj klucz elementu słownika.</key>
|
||||
<key alias="changeKeyError">
|
||||
<![CDATA[
|
||||
<key alias="changeKeyError"><![CDATA[
|
||||
Klucz '%0%' już istnieje.
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
</area>
|
||||
<area alias="placeholders">
|
||||
<key alias="username">Wpisz nazwę użytkownika</key>
|
||||
@@ -427,20 +401,13 @@
|
||||
<key alias="usernameHint">Twoja nazwa użytkownika to przeważnie Twój adres e-mail</key>
|
||||
</area>
|
||||
<area alias="editcontenttype">
|
||||
<key alias="allowAtRoot" version="7.2">Zezwól w korzeniu</key>
|
||||
<key alias="allowAtRootDesc" version="7.2">Tylko Typ Zawartości, który jest zaznaczony może być stworzony na pozomie korzenia drzew Zawartości i Mediów</key>
|
||||
<key alias="allowedchildnodetypes">Dozwolone węzły pochodne</key>
|
||||
<key alias="contenttypecompositions">Kompozycje Typu Dokumentu</key>
|
||||
<key alias="create">Stwórz</key>
|
||||
<key alias="deletetab">Usuń zakładkę</key>
|
||||
<key alias="description">Opis</key>
|
||||
<key alias="newtab">Nowa zakładka</key>
|
||||
<key alias="tab">Zakładka</key>
|
||||
<key alias="thumbnail">Miniatura</key>
|
||||
<key alias="hasListView">Włącz widok listy</key>
|
||||
<key alias="hasListViewDesc" version="7.2">Konfiguruje element treści, aby pokazywał możliwą do sortowania i szukania listę jego dzieci, dzieci nie będą wyświetlone w drzewie</key>
|
||||
<key alias="currentListView" version="7.2">Bieżący widok listy</key>
|
||||
<key alias="currentListViewDesc" version="7.2">Typ danych aktywnego widoku listy</key>
|
||||
<key alias="createListView" version="7.2">Stwórz niestandardowy widok listy</key>
|
||||
<key alias="removeListView" version="7.2">Usuń niestandardowy widok listy</key>
|
||||
</area>
|
||||
@@ -485,19 +452,14 @@
|
||||
<key alias="filePermissionsError">Wystąpił problem podczas zapisu/odczytu wymaganego pliku lub folderu</key>
|
||||
<key alias="macroErrorLoadingPartialView">Wystąpił błąd podczas ładowania skryptu Częściowego Widoku (plik: %0%)</key>
|
||||
<key alias="macroErrorLoadingUsercontrol">Wystąpił błąd podczas ładowania userControl '%0%'</key>
|
||||
<key alias="macroErrorLoadingCustomControl">Wystąpił błąd podczas ładowania customControl (Assembly: %0%, Typ: '%1%')</key>
|
||||
<key alias="macroErrorLoadingMacroEngineScript">Wystąpił błąd podczas ładowania skryptu MacroEngine (plik: %0%)</key>
|
||||
<key alias="missingTitle">Proszę podać tytuł</key>
|
||||
<key alias="missingType">Proszę wybrać typ</key>
|
||||
<key alias="pictureResizeBiggerThanOrg">Chcesz utworzyć obraz większy niż rozmiar oryginalny. Czy na pewno chcesz kontynuować?</key>
|
||||
<key alias="pythonErrorHeader">Błąd w skrypcie Python</key>
|
||||
<key alias="pythonErrorText">Skrypt Python nie został zapisany, ponieważ zawiera błędy</key>
|
||||
<key alias="startNodeDoesNotExists">Węzeł początkowy usunięto, proszę skontaktować się z administratorem</key>
|
||||
<key alias="stylesMustMarkBeforeSelect">Proszę zaznaczyć zawartość przed zmianą stylu</key>
|
||||
<key alias="stylesNoStylesOnPage">Brak dostępnych aktywnych stylów</key>
|
||||
<key alias="tableColMergeLeft">Proszę ustaw kursor po lewej stronie dwóch komórek, które chcesz połączyć</key>
|
||||
<key alias="tableSplitNotSplittable">Nie możesz podzielić komórki, która nie była wcześniej połączona.</key>
|
||||
<key alias="missingPropertyEditorErrorMessage">Wystąpił błąd konfiguracji związany z typem danych użytych we właściwościach, proszę sprawdź typ danych</key>
|
||||
</area>
|
||||
<area alias="general">
|
||||
<key alias="about">O...</key>
|
||||
@@ -560,7 +522,6 @@
|
||||
<key alias="macro">Makro</key>
|
||||
<key alias="mandatory">Obowiązkowy</key>
|
||||
<key alias="move">Przenieś</key>
|
||||
<key alias="more">Więcej</key>
|
||||
<key alias="name">Nazwa</key>
|
||||
<key alias="new">Nowy</key>
|
||||
<key alias="next">Dalej</key>
|
||||
@@ -621,45 +582,31 @@
|
||||
<key alias="embed">Osadzony</key>
|
||||
<key alias="selected">wybrany</key>
|
||||
</area>
|
||||
|
||||
<area alias="colors">
|
||||
<key alias="black">Czarny</key>
|
||||
<key alias="green">Zielony</key>
|
||||
<key alias="yellow">Żółty</key>
|
||||
<key alias="orange">Pomarańczowy</key>
|
||||
<key alias="blue">Niebieski</key>
|
||||
<key alias="red">Czerwony</key>
|
||||
</area>
|
||||
|
||||
<area alias="shortcuts">
|
||||
<key alias="addTab">Dodaj zakładkę</key>
|
||||
<key alias="addProperty">Dodaj właściwość</key>
|
||||
<key alias="addEditor">Dodaj edytora</key>
|
||||
<key alias="addTemplate">Dodaj szablon</key>
|
||||
<key alias="addChildNode">Dodaj węzeł dziecka</key>
|
||||
<key alias="addChild">Dodaj dziecko</key>
|
||||
|
||||
<key alias="editDataType">Edytuj typ danych</key>
|
||||
|
||||
<key alias="navigateSections">Nawiguj sekcje</key>
|
||||
|
||||
<key alias="shortcut">Skróty</key>
|
||||
<key alias="showShortcuts">Pokaż skróty</key>
|
||||
|
||||
<key alias="toggleListView">Przełącz widok listy</key>
|
||||
<key alias="toggleAllowAsRoot">Przełącznik możliwy jako korzeń</key>
|
||||
|
||||
<key alias="commentLine">Komentuj/Odkomentuj linie</key>
|
||||
<key alias="removeLine">Usuń linię</key>
|
||||
<key alias="copyLineUp">Kopiuj linie do góry</key>
|
||||
<key alias="copyLineDown">Kopiuj linie w dół</key>
|
||||
<key alias="moveLineUp">Przenieś linie w górę</key>
|
||||
<key alias="moveLineDown">Przenieś linie w dół</key>
|
||||
|
||||
<key alias="generalHeader">Ogólne</key>
|
||||
<key alias="editorHeader">Edytor</key>
|
||||
<key alias="addTab">Dodaj zakładkę</key>
|
||||
<key alias="addProperty">Dodaj właściwość</key>
|
||||
<key alias="addEditor">Dodaj edytora</key>
|
||||
<key alias="addTemplate">Dodaj szablon</key>
|
||||
<key alias="addChildNode">Dodaj węzeł dziecka</key>
|
||||
<key alias="addChild">Dodaj dziecko</key>
|
||||
<key alias="editDataType">Edytuj typ danych</key>
|
||||
<key alias="navigateSections">Nawiguj sekcje</key>
|
||||
<key alias="shortcut">Skróty</key>
|
||||
<key alias="showShortcuts">Pokaż skróty</key>
|
||||
<key alias="toggleListView">Przełącz widok listy</key>
|
||||
<key alias="toggleAllowAsRoot">Przełącznik możliwy jako korzeń</key>
|
||||
<key alias="commentLine">Komentuj/Odkomentuj linie</key>
|
||||
<key alias="removeLine">Usuń linię</key>
|
||||
<key alias="copyLineUp">Kopiuj linie do góry</key>
|
||||
<key alias="copyLineDown">Kopiuj linie w dół</key>
|
||||
<key alias="moveLineUp">Przenieś linie w górę</key>
|
||||
<key alias="moveLineDown">Przenieś linie w dół</key>
|
||||
<key alias="generalHeader">Ogólne</key>
|
||||
<key alias="editorHeader">Edytor</key>
|
||||
</area>
|
||||
|
||||
<area alias="graphicheadline">
|
||||
<key alias="backgroundcolor">Kolor tła</key>
|
||||
<key alias="bold">Pogrubienie</key>
|
||||
@@ -667,7 +614,6 @@
|
||||
<key alias="font">Font</key>
|
||||
<key alias="text">Tekst</key>
|
||||
</area>
|
||||
|
||||
<area alias="headers">
|
||||
<key alias="page">Strona</key>
|
||||
</area>
|
||||
@@ -790,7 +736,6 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
<key alias="renewSession">Wznów sesję teraz, aby zapisać swoją pracę</key>
|
||||
</area>
|
||||
<area alias="login">
|
||||
<key alias="greeting0">Szczęśliwej super niedzieli</key>
|
||||
<key alias="greeting1">Szczęśliwego maniakalnego poniedziałku </key>
|
||||
<key alias="greeting2">Szczęśliwego świetnego wtorku</key>
|
||||
<key alias="greeting3">Szczęśliwej niesamowitej środy</key>
|
||||
@@ -809,9 +754,7 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
<key alias="setPasswordConfirmation">Twoje hasło zostało zmienione</key>
|
||||
<key alias="resetCodeExpired">Link, na który kliknąłeś jest niewłaściwy lub wygasł</key>
|
||||
<key alias="resetPasswordEmailCopySubject">Umbraco: Resetowanie hasła</key>
|
||||
<key alias="resetPasswordEmailCopyFormat">
|
||||
<![CDATA[<p>Twoja nazwa użytkownika do zalogowania się w Umbraco back-office to: <strong>%0%</strong></p><p>Kliknij <a href="%1%"><strong>tutaj</strong></a>, aby zresetować Twoje hasło lub kopiuj/wklej ten URL w przeglądarce:</p><p><em>%1%</em></p>]]>
|
||||
</key>
|
||||
<key alias="resetPasswordEmailCopyFormat"><![CDATA[<p>Twoja nazwa użytkownika do zalogowania się w Umbraco back-office to: <strong>%0%</strong></p><p>Kliknij <a href="%1%"><strong>tutaj</strong></a>, aby zresetować Twoje hasło lub kopiuj/wklej ten URL w przeglądarce:</p><p><em>%1%</em></p>]]></key>
|
||||
</area>
|
||||
<area alias="main">
|
||||
<key alias="dashboard">Panel zarządzania</key>
|
||||
@@ -977,11 +920,9 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
<key alias="paSimpleHelp">Jeżeli chcesz ustawić prostą ochronę używając pojedynczej nazwy użytkownika i hasła</key>
|
||||
</area>
|
||||
<area alias="publish">
|
||||
<key alias="contentPublishedFailedAwaitingRelease">
|
||||
<![CDATA[
|
||||
<key alias="contentPublishedFailedAwaitingRelease"><![CDATA[
|
||||
%0% nie może zostać opublikowany, ponieważ element nie został zaplanowany do wydania.
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedExpired"><![CDATA[
|
||||
%0% nie może zostać opublikowany, ponieważ element wygasł.
|
||||
]]></key>
|
||||
@@ -1050,12 +991,8 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
<key alias="users">Użytkownicy</key>
|
||||
<key alias="help" version="7.0">Pomoc</key>
|
||||
<key alias="forms">Formularze</key>
|
||||
<key alias="analytics">Analizy</key>
|
||||
</area>
|
||||
<area alias="help">
|
||||
<key alias="goTo">idź do</key>
|
||||
<key alias="helpTopicsFor">Tematy pomocy dla</key>
|
||||
<key alias="videoChaptersFor">Rozdziały filmów dla</key>
|
||||
<key alias="theBestUmbracoVideoTutorials">Najlepsze filmy-samouczki Umbraco</key>
|
||||
</area>
|
||||
<area alias="settings">
|
||||
@@ -1075,8 +1012,6 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
<key alias="contentTypeUses">Ten Typ Treści używa</key>
|
||||
<key alias="asAContentMasterType">jako Główny Typ Treści. Zakładki Głównego Typu Treści nie są wyświetlone i mogą być edytowane jedynie w samym Głównym Typie Treści</key>
|
||||
<key alias="noPropertiesDefinedOnTab">Żadne właściwości nie zostały zdefiniowane dla tej zakładki. Kliknij w link "dodaj nową właściwość", który znajduje się na górze strony, aby stworzyć nową właściwość.</key>
|
||||
<key alias="masterDocumentType">Główny Typ Dokumentu</key>
|
||||
<key alias="createMatchingTemplate">Stwórz pasujący szablon</key>
|
||||
<key alias="addIcon">Dodaj ikonę</key>
|
||||
</area>
|
||||
<area alias="sort">
|
||||
@@ -1088,7 +1023,7 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
</area>
|
||||
<area alias="speechBubbles">
|
||||
<key alias="validationFailedHeader">Walidacja</key>
|
||||
<key alias="validationFailedMessage">Błędy walidacji muszą zostać naprawione zanim element będzie mógł być zapisany</key>
|
||||
<key alias="validationFailedMessage">Błędy walidacji muszą zostać naprawione zanim element będzie mógł być zapisany</key>
|
||||
<key alias="operationFailedHeader">Nie powiodło się</key>
|
||||
<key alias="invalidUserPermissionsText">Niewystarczające uprawnienia użytkownika, nie można zakończyć operacji</key>
|
||||
<key alias="operationCancelledHeader">Anulowane</key>
|
||||
@@ -1130,10 +1065,6 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
<key alias="languageSaved">Język został zapisany</key>
|
||||
<key alias="mediaTypeSavedHeader">Typ mediów został zapisany</key>
|
||||
<key alias="memberTypeSavedHeader">Typ członka został zapisany</key>
|
||||
<key alias="pythonErrorHeader">Skrypt Python nie został zapisany</key>
|
||||
<key alias="pythonErrorText">Wystąpiły błędy, skrypt Python nie może zostać zapisany</key>
|
||||
<key alias="pythonSavedHeader">Skrypt Python został zapisany</key>
|
||||
<key alias="pythonSavedText">Brak błędów w skrypcie Python</key>
|
||||
<key alias="templateErrorHeader">Szablon nie został zapisany</key>
|
||||
<key alias="templateErrorText">Proszę się upewnić że nie ma dwóch szablonów o tym samym aliasie</key>
|
||||
<key alias="templateSavedHeader">Szablon został zapisany</key>
|
||||
@@ -1143,11 +1074,6 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
<key alias="partialViewSavedText">Częściowy Widok został zapisany bez błędów!</key>
|
||||
<key alias="partialViewErrorHeader">Częściowy Widok nie został zapisany</key>
|
||||
<key alias="partialViewErrorText">Wystąpił błąd podczas zapisywania pliku.</key>
|
||||
<key alias="scriptSavedHeader">Widok skryptu został zapisany</key>
|
||||
<key alias="scriptSavedText">Widok skryptu został zapisany bez błędów!</key>
|
||||
<key alias="scriptErrorHeader">Widok skryptu nie został zapisany</key>
|
||||
<key alias="scriptErrorText">Wystąpił błąd podczas zapisywania pliku.</key>
|
||||
<key alias="cssErrorText">Wystąpił błąd podczas zapisywania pliku.</key>
|
||||
</area>
|
||||
<area alias="stylesheet">
|
||||
<key alias="aliasHelp">Używaj składni CSS np.: h1, .czerwonyNaglowek, .niebieskiTekst</key>
|
||||
@@ -1157,85 +1083,60 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
<key alias="preview">Podgląd</key>
|
||||
<key alias="styles">Style</key>
|
||||
</area>
|
||||
|
||||
<area alias="template">
|
||||
<key alias="edittemplate">Edytuj szablon</key>
|
||||
|
||||
<key alias="insertSections">Sekcje</key>
|
||||
<key alias="insertContentArea">Wstaw obszar zawartości</key>
|
||||
<key alias="insertContentAreaPlaceHolder">Wstaw miejsce dla obszaru zawartości</key>
|
||||
|
||||
<key alias="insert">Wstaw</key>
|
||||
<key alias="insertDesc">Wybierz, co chcesz wstawić do swojego szablonu</key>
|
||||
|
||||
<key alias="insertDictionaryItem">Wstaw element słownika</key>
|
||||
<key alias="insertDictionaryItemDesc">Element słownika to miejsce, gdzie można wstawić przetłumaczony tekst, co ułatwia tworzenie projektów dla wielojęzycznych stron.</key>
|
||||
|
||||
<key alias="insertMacro">Makro</key>
|
||||
<key alias="insertMacroDesc">
|
||||
Makro to konfigurowalny komponent, który sprawdzi się
|
||||
przy wielokrotnie używanych częściach Twojego projektu, kiedy potrzebujesz opcji dostarczenia parametrów,
|
||||
takich jak galerie, formularze, czy listy.
|
||||
</key>
|
||||
|
||||
<key alias="insertPageField">Wartość</key>
|
||||
<key alias="insertPageFieldDesc">Wyświetla wartość danego pola z bieżącej strony z opcjami modyfikacji wartości lub powrotu do alernatywnych wartości.</key>
|
||||
|
||||
<key alias="insertPageFieldDesc">Wyświetla wartość danego pola z bieżącej strony z opcjami modyfikacji wartości lub powrotu do alernatywnych wartości.</key>
|
||||
<key alias="insertPartialView">Częściowy Widok</key>
|
||||
<key alias="insertPartialViewDesc">
|
||||
Częściowy Widok to oddzielny szablon pliku, który może być renderowany wewnątrz innego
|
||||
szablonu, sprawdzi się w ponownym używaniu markupu lub oddzielaniu złożonych szablonów do oddzielnych plików.
|
||||
</key>
|
||||
|
||||
<key alias="mastertemplate">Główny szablon</key>
|
||||
<key alias="noMastertemplate">Brak głównego szablonu</key>
|
||||
<key alias="noMaster">Brak głównego</key>
|
||||
|
||||
<key alias="renderBody">Renderuj szablon dziecka</key>
|
||||
<key alias="renderBodyDesc">
|
||||
<![CDATA[
|
||||
<key alias="renderBodyDesc"><![CDATA[
|
||||
Renderuje zawartość szablonu dziecka, poprzez wstawienie zastępczego
|
||||
<code>@RenderBody()</code>.
|
||||
]]>
|
||||
</key>
|
||||
|
||||
|
||||
]]></key>
|
||||
<key alias="defineSection">Zdefiniuj nazwaną sekcję</key>
|
||||
<key alias="defineSectionDesc">
|
||||
<![CDATA[
|
||||
<key alias="defineSectionDesc"><![CDATA[
|
||||
Definiuje część Twojego szablonu jako nazwaną sekcję poprzez opakowanie jej w
|
||||
<code>@section { ... }</code>. Może być to renderowane w
|
||||
określonym obszarze rodzica tego szablonu, poprzez użycie <code>@RenderSection</code>.
|
||||
]]>
|
||||
</key>
|
||||
|
||||
]]></key>
|
||||
<key alias="renderSection">Renderuj nazwaną sekcję</key>
|
||||
<key alias="renderSectionDesc">
|
||||
<![CDATA[
|
||||
<key alias="renderSectionDesc"><![CDATA[
|
||||
Renderuje nazwany obszar szablonu dziecka, poprze wstawienie zastępczego <code>@RenderSection(name)</code>.
|
||||
To renderuje obszar w szablonie dziecka, który jest opakowany w odpowiednią definicję <code>@section [name]{ ... }</code>.
|
||||
]]>
|
||||
</key>
|
||||
|
||||
]]></key>
|
||||
<key alias="sectionName">Nazwa Sekcji</key>
|
||||
<key alias="sectionMandatory">Sekcja jest wymagana</key>
|
||||
<key alias="sectionMandatoryDesc">
|
||||
Jeśli wymagana, szablon dziecka musi zawierać definicję <code>@section</code>, w przeciwnym przypadku wystąpi błąd.
|
||||
</key>
|
||||
|
||||
|
||||
<key alias="queryBuilder">Konstruktor zapytań</key>
|
||||
<key alias="buildQuery">Zbuduj zapytanie</key>
|
||||
<key alias="itemsReturned">Element zwrócony, w</key>
|
||||
|
||||
<key alias="iWant">Chcę</key>
|
||||
<key alias="iWant">Chcę</key>
|
||||
<key alias="allContent">całą zawartość</key>
|
||||
<key alias="contentOfType">zawartość typu "%0%"</key>
|
||||
<key alias="contentOfType">zawartość typu "%0%"</key>
|
||||
<key alias="from">z</key>
|
||||
<key alias="websiteRoot">mojej strony</key>
|
||||
<key alias="where">gdzie</key>
|
||||
<key alias="and">i</key>
|
||||
|
||||
<key alias="is">jest</key>
|
||||
<key alias="isNot">nie jest</key>
|
||||
<key alias="before">przed</key>
|
||||
@@ -1250,42 +1151,30 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
<key alias="greaterThanEqual">większe lub równe niż</key>
|
||||
<key alias="lessThan">mniejsze niż</key>
|
||||
<key alias="lessThanEqual">mniejsze lub równe niż</key>
|
||||
|
||||
<key alias="id">ID</key>
|
||||
<key alias="name">Nazwa</key>
|
||||
<key alias="createdDate">Data Utworzenia</key>
|
||||
<key alias="lastUpdatedDate">Data Ostatniej Aktualizacji</key>
|
||||
|
||||
<key alias="orderBy">sortuj</key>
|
||||
<key alias="ascending">rosnąco</key>
|
||||
<key alias="descending">malejąco</key>
|
||||
|
||||
<key alias="descending">malejąco</key>
|
||||
<key alias="template">Szablon</key>
|
||||
|
||||
</area>
|
||||
|
||||
<area alias="grid">
|
||||
<key alias="rte">Rich Text Editor</key>
|
||||
<key alias="media">Image</key>
|
||||
<key alias="macro">Macro</key>
|
||||
<key alias="embed">Embed</key>
|
||||
<key alias="headline">Headline</key>
|
||||
<key alias="quote">Quote</key>
|
||||
<key alias="insertControl">Wybierz typ treści</key>
|
||||
<key alias="chooseLayout">Wybierz układ</key>
|
||||
<key alias="addRows">Dodaj wiersz</key>
|
||||
<key alias="addElement">Dodaj zawartość</key>
|
||||
<key alias="dropElement">Upuść zawartość</key>
|
||||
<key alias="settingsApplied">Zastosowano ustawienia</key>
|
||||
|
||||
<key alias="contentNotAllowed">Ta zawartość nie jest tu dozwolona</key>
|
||||
<key alias="contentAllowed">Ta zawartość jest tu dozwolona</key>
|
||||
|
||||
<key alias="clickToEmbed">Kliknij, żeby osadzić</key>
|
||||
<key alias="clickToInsertImage">Kliknij, żeby dodać obraz</key>
|
||||
<key alias="placeholderImageCaption">Podpis obrazu...</key>
|
||||
<key alias="placeholderWriteHere">Pisz tutaj...</key>
|
||||
|
||||
<key alias="gridLayouts">Układy Siatki</key>
|
||||
<key alias="gridLayoutsDetail">Układy to ogólne pole pracy dla edytora siatki, przeważnie będziesz potrzebować tylko jednego lub dwóch różnych układów</key>
|
||||
<key alias="addGridLayout">Dodaj Układ Siatki</key>
|
||||
@@ -1294,88 +1183,59 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
<key alias="rowConfigurationsDetail">Rzędy to predefiniowane komórki ułożone poziomo</key>
|
||||
<key alias="addRowConfiguration">Dodaj konfigurację rzędu</key>
|
||||
<key alias="addRowConfigurationDetail">Dostosuj rząd poprzez ustawienie szerokości komórki i dodanie dodatkowych komórek</key>
|
||||
|
||||
<key alias="columns">Kolumny</key>
|
||||
<key alias="columnsDetails">Całkowita liczba wszystkich kolumn w układzie siatki</key>
|
||||
|
||||
<key alias="settings">Ustawienia</key>
|
||||
<key alias="settingsDetails">Konfiguruj jakie ustawienia może zmieniać edytor</key>
|
||||
|
||||
<key alias="styles">Style</key>
|
||||
<key alias="stylesDetails">Konfiguruj jakie style może zmieniać edytor</key>
|
||||
|
||||
<key alias="settingDialogDetails">Ustawienia zostaną zapisane tylko jeśli wprowadzona konfiguracja json jest prawidłowa</key>
|
||||
|
||||
<key alias="allowAllEditors">Zezwól wszystkim edytorom</key>
|
||||
<key alias="allowAllRowConfigurations">Zezwól na konfigurację wszystkich rzędów</key>
|
||||
<key alias="setAsDefault">Ustaw jako domyślne</key>
|
||||
<key alias="chooseExtra">Wybierz dodatkowe</key>
|
||||
<key alias="chooseDefault">Wybierz domyślne</key>
|
||||
<key alias="areAdded">zostały dodane</key>
|
||||
<key alias="areAdded">zostały dodane</key>
|
||||
</area>
|
||||
|
||||
<area alias="contentTypeEditor">
|
||||
|
||||
<key alias="compositions">Kompozycje</key>
|
||||
<key alias="noTabs">Nie dodałeś żadnych zakładek</key>
|
||||
<key alias="addNewTab">Dodaj nową zakładkę</key>
|
||||
<key alias="addAnotherTab">Dodaj kolejną zakładkę</key>
|
||||
<key alias="inheritedFrom">Odziedziczone z</key>
|
||||
<key alias="addProperty">Dodaj właściwość</key>
|
||||
<key alias="requiredLabel">Wymagana etykieta</key>
|
||||
|
||||
<key alias="enableListViewHeading">Włącz widok listy</key>
|
||||
<key alias="enableListViewDescription">Konfiguruje element treści, aby pokazać sortowaną i możliwą do przeszukiwania listę jego dzieci, dzieci nie będą wyświetlone w drzewie</key>
|
||||
|
||||
<key alias="allowedTemplatesHeading">Dozwolone Szablony</key>
|
||||
<key alias="allowedTemplatesDescription">Wybierz, które szablony edytorzy będą mogli używać dla zawartości tego typu</key>
|
||||
|
||||
<key alias="allowAsRootHeading">Zezwól jako korzeń</key>
|
||||
<key alias="allowAsRootDescription">Zezwól edytorom na tworzenie zawartości tego typu w korzeniu drzewa treści</key>
|
||||
<key alias="allowAsRootCheckbox">Tak - zezwól na zawartość tego typu w korzeniu</key>
|
||||
|
||||
<key alias="childNodesHeading">Dozwolone typy węzłów dzieci</key>
|
||||
<key alias="childNodesDescription">Zezwól na tworzenie zawartości określonych typów pod zawartością tego typu</key>
|
||||
|
||||
<key alias="chooseChildNode">Wybierz węzeł dziecka</key>
|
||||
|
||||
<key alias="compositionsDescription">Odziedzicz zakładki i właściwości z istniejącego typu dokumentu. Nowe zakładki będą dodane do bieżącego typu dokumentu lub złączone jeśli zakładka z identyczną nazwą już istnieje.</key>
|
||||
<key alias="compositionInUse">Ten typ zawartości jest używany w kompozycji, przez co sam nie może być złożony.</key>
|
||||
<key alias="noAvailableCompositions">Brak możliwych typów zawartości do użycia jako kompozycja.</key>
|
||||
|
||||
<key alias="availableEditors">Dostępni edytorzy</key>
|
||||
<key alias="reuse">Użyj ponownie</key>
|
||||
<key alias="editorSettings">Ustawienia edytora</key>
|
||||
|
||||
<key alias="configuration">Konfiguracja</key>
|
||||
|
||||
<key alias="yesDelete">Tak, usuń</key>
|
||||
|
||||
<key alias="movedUnderneath">zostało przeniesione poniżej</key>
|
||||
<key alias="copiedUnderneath">zostało skopiowane poniżej</key>
|
||||
<key alias="folderToMove">Wybierz folder do przeniesienia</key>
|
||||
<key alias="folderToCopy">Wybierz folder do skopiowania</key>
|
||||
<key alias="structureBelow">do w strukturze drzewa poniżej</key>
|
||||
|
||||
<key alias="allDocumentTypes">Wszystkie typy Dokumentów</key>
|
||||
<key alias="allDocuments">Wszystkie Dokumenty</key>
|
||||
<key alias="allMediaItems">Wszystkie elementy mediów</key>
|
||||
|
||||
<key alias="usingThisDocument">używający tego typu dokumentu zostanie usunięty na stałe, proszę potwierdź czy chcesz usunąć także te.</key>
|
||||
<key alias="usingThisMedia">używający tych mediów zostanie usunięty na stałe, proszę potwierdź czy chcesz usunąć także te.</key>
|
||||
<key alias="usingThisMember">używający tego typu członka zostanie usunięty na stałe, proszę potwierdź czy chcesz usunąć także te</key>
|
||||
|
||||
<key alias="andAllDocuments">i wszystkie dokumenty, używające tego typu</key>
|
||||
<key alias="andAllMediaItems">i wszystkie media, używające tego typu</key>
|
||||
<key alias="andAllMembers">i wszyscy członkowie, używający tego typu</key>
|
||||
|
||||
<key alias="thisEditorUpdateSettings">używający tego edytora będzie zaktualizowany o nowe ustawienia</key>
|
||||
|
||||
<key alias="memberCanEdit">Członek może edytować</key>
|
||||
<key alias="showOnMemberProfile">Pokaż na profilu członka</key>
|
||||
|
||||
<key alias="compositions">Kompozycje</key>
|
||||
<key alias="noTabs">Nie dodałeś żadnych zakładek</key>
|
||||
<key alias="inheritedFrom">Odziedziczone z</key>
|
||||
<key alias="addProperty">Dodaj właściwość</key>
|
||||
<key alias="requiredLabel">Wymagana etykieta</key>
|
||||
<key alias="enableListViewHeading">Włącz widok listy</key>
|
||||
<key alias="enableListViewDescription">Konfiguruje element treści, aby pokazać sortowaną i możliwą do przeszukiwania listę jego dzieci, dzieci nie będą wyświetlone w drzewie</key>
|
||||
<key alias="allowedTemplatesHeading">Dozwolone Szablony</key>
|
||||
<key alias="allowedTemplatesDescription">Wybierz, które szablony edytorzy będą mogli używać dla zawartości tego typu</key>
|
||||
<key alias="allowAsRootHeading">Zezwól jako korzeń</key>
|
||||
<key alias="allowAsRootDescription">Zezwól edytorom na tworzenie zawartości tego typu w korzeniu drzewa treści</key>
|
||||
<key alias="childNodesHeading">Dozwolone typy węzłów dzieci</key>
|
||||
<key alias="childNodesDescription">Zezwól na tworzenie zawartości określonych typów pod zawartością tego typu</key>
|
||||
<key alias="chooseChildNode">Wybierz węzeł dziecka</key>
|
||||
<key alias="compositionsDescription">Odziedzicz zakładki i właściwości z istniejącego typu dokumentu. Nowe zakładki będą dodane do bieżącego typu dokumentu lub złączone jeśli zakładka z identyczną nazwą już istnieje.</key>
|
||||
<key alias="compositionInUse">Ten typ zawartości jest używany w kompozycji, przez co sam nie może być złożony.</key>
|
||||
<key alias="noAvailableCompositions">Brak możliwych typów zawartości do użycia jako kompozycja.</key>
|
||||
<key alias="availableEditors">Dostępni edytorzy</key>
|
||||
<key alias="reuse">Użyj ponownie</key>
|
||||
<key alias="editorSettings">Ustawienia edytora</key>
|
||||
<key alias="configuration">Konfiguracja</key>
|
||||
<key alias="yesDelete">Tak, usuń</key>
|
||||
<key alias="movedUnderneath">zostało przeniesione poniżej</key>
|
||||
<key alias="copiedUnderneath">zostało skopiowane poniżej</key>
|
||||
<key alias="folderToMove">Wybierz folder do przeniesienia</key>
|
||||
<key alias="folderToCopy">Wybierz folder do skopiowania</key>
|
||||
<key alias="structureBelow">do w strukturze drzewa poniżej</key>
|
||||
<key alias="allDocumentTypes">Wszystkie typy Dokumentów</key>
|
||||
<key alias="allDocuments">Wszystkie Dokumenty</key>
|
||||
<key alias="allMediaItems">Wszystkie elementy mediów</key>
|
||||
<key alias="usingThisDocument">używający tego typu dokumentu zostanie usunięty na stałe, proszę potwierdź czy chcesz usunąć także te.</key>
|
||||
<key alias="usingThisMedia">używający tych mediów zostanie usunięty na stałe, proszę potwierdź czy chcesz usunąć także te.</key>
|
||||
<key alias="usingThisMember">używający tego typu członka zostanie usunięty na stałe, proszę potwierdź czy chcesz usunąć także te</key>
|
||||
<key alias="andAllDocuments">i wszystkie dokumenty, używające tego typu</key>
|
||||
<key alias="andAllMediaItems">i wszystkie media, używające tego typu</key>
|
||||
<key alias="andAllMembers">i wszyscy członkowie, używający tego typu</key>
|
||||
<key alias="memberCanEdit">Członek może edytować</key>
|
||||
<key alias="showOnMemberProfile">Pokaż na profilu członka</key>
|
||||
</area>
|
||||
|
||||
<area alias="templateEditor">
|
||||
<key alias="addFallbackField">Dodaj pole zastępcze</key>
|
||||
<key alias="fallbackField">Pole zastępcze</key>
|
||||
@@ -1416,15 +1276,7 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
<key alias="withTime">Tak, z czasem. Separator:</key>
|
||||
</area>
|
||||
<area alias="translation">
|
||||
<key alias="assignedTasks">Zadania przypisane dla Ciebie</key>
|
||||
<key alias="assignedTasksHelp"><![CDATA[Lista poniżej zawiera elementy do tłumaczenia <strong>przypisane do Ciebie</strong>. Aby zobaczyć szczegółowe informacje wraz z komentarzami, kliknij na "Szczegóły" lub po prostu na nazwę strony.
|
||||
Możesz również pobrać stronę jako XML poprzez kliknięcie na link "Pobierz XML".<br/>
|
||||
Aby zamknąć zadanie tłumaczenia, proszę kliknąć "Zamknij" w podglądzie szczegółowym.
|
||||
]]></key>
|
||||
<key alias="closeTask">zamknij zadanie</key>
|
||||
<key alias="details">Szczegóły tłumaczenia</key>
|
||||
<key alias="downloadAllAsXml">Pobierz wszystkie tłumaczenia jako XML</key>
|
||||
<key alias="downloadTaskAsXml">Pobierz XML</key>
|
||||
<key alias="DownloadXmlDTD">Pobierz XML DTD</key>
|
||||
<key alias="fields">Pola</key>
|
||||
<key alias="includeSubpages">Włączając podstrony</key>
|
||||
@@ -1443,18 +1295,9 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
|
||||
Umbraco robot
|
||||
]]></key>
|
||||
<key alias="mailSubject">[%0%] Tłumaczeń dla %1%</key>
|
||||
<key alias="noTranslators">Nie znaleziono tłumaczy. Proszę utwórz tłumacza przed wysłaniem zawartości do tłumaczenia</key>
|
||||
<key alias="ownedTasks">Zadania stworzone przez Ciebie</key>
|
||||
<key alias="ownedTasksHelp"><![CDATA[Lista poniżej pokazuje strony <strong>stworzone przez Ciebie</strong>. Aby zobaczyć szczegółowe informacje wraz z komentarzami,
|
||||
kliknij na "Szczegóły" lub na nazwę strony. Możesz również pobrać stronę jako XML poprzez kliknięcie na link "Pobierz XML".
|
||||
Aby zamknąć zadanie tłumaczenia, proszę kliknąć "Zamknij" w podglądzie szczegółowym.
|
||||
]]></key>
|
||||
<key alias="pageHasBeenSendToTranslation">Strona '%0%' została wysłana do tłumaczenia</key>
|
||||
<key alias="noLanguageSelected">Proszę wybrać język, na jaki zawartość powinna zostać przetłumaczona</key>
|
||||
<key alias="sendToTranslate">Wyślij stronę '%0%' do tłumaczenia</key>
|
||||
<key alias="taskAssignedBy">Przypisane przez</key>
|
||||
<key alias="taskOpened">Zadanie otwarte</key>
|
||||
<key alias="totalWords">Liczba słów</key>
|
||||
<key alias="translateTo">Przetłumacz na</key>
|
||||
<key alias="translationDone">Tłumaczenie zakończone.</key>
|
||||
@@ -1485,7 +1328,6 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
<key alias="relationTypes">Typy relacji</key>
|
||||
<key alias="packager">Pakiety</key>
|
||||
<key alias="packages">Pakiety</key>
|
||||
<key alias="python">Pliki Python</key>
|
||||
<key alias="repositories">Zainstaluj z repozytorium</key>
|
||||
<key alias="runway">Zainstaluj Runway</key>
|
||||
<key alias="runwayModules">Moduły Runway</key>
|
||||
@@ -1493,8 +1335,7 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
<key alias="scripts">Skrypty</key>
|
||||
<key alias="stylesheets">Arkusze stylów</key>
|
||||
<key alias="templates">Szablony</key>
|
||||
<key alias="analytics">Analizy</key>
|
||||
<key alias="partialViews">Częściowe Widoki</key>
|
||||
<key alias="partialViews">Częściowe Widoki</key>
|
||||
<key alias="partialViewMacros">Pliki Makro Częściowych Widoków</key>
|
||||
<key alias="settingsGroup"></key>
|
||||
<key alias="templatingGroup"></key>
|
||||
@@ -1543,19 +1384,18 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
<key alias="username">Nazwa użytkownika</key>
|
||||
<key alias="userPermissions">Prawa dostępu użytkownika</key>
|
||||
<key alias="writer">Pisarz</key>
|
||||
<key alias="translator">Tłumacz</key>
|
||||
<key alias="change">Zmień</key>
|
||||
<key alias="yourProfile" version="7.0">Twój profil</key>
|
||||
<key alias="yourHistory" version="7.0">Twoja historia</key>
|
||||
<key alias="sessionExpires" version="7.0">Sesja wygaśnie za</key>
|
||||
</area>
|
||||
<area alias="validation">
|
||||
<key alias="validation">Walidacja</key>
|
||||
<key alias="validateAsEmail">Waliduj jako e-mail</key>
|
||||
<key alias="validateAsNumber">Waliduj jako numer</key>
|
||||
<key alias="validateAsUrl">Waliduj jako URL</key>
|
||||
<key alias="enterCustomValidation">...lub wpisz niestandardową walidację</key>
|
||||
<key alias="fieldIsMandatory">Pole jest wymagane</key>
|
||||
<key alias="validation">Walidacja</key>
|
||||
<key alias="validateAsEmail">Waliduj jako e-mail</key>
|
||||
<key alias="validateAsNumber">Waliduj jako numer</key>
|
||||
<key alias="validateAsUrl">Waliduj jako URL</key>
|
||||
<key alias="enterCustomValidation">...lub wpisz niestandardową walidację</key>
|
||||
<key alias="fieldIsMandatory">Pole jest wymagane</key>
|
||||
<key alias="validationRegExp">Wprowadź wyrażenie regularne</key>
|
||||
<key alias="minCount">Musisz dodać przynajmniej</key>
|
||||
<key alias="maxCount">Możesz mieć jedynie</key>
|
||||
@@ -1566,107 +1406,91 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
<key alias="invalidEmail">Niepoprawny e-mail</key>
|
||||
</area>
|
||||
<area alias="healthcheck">
|
||||
<!-- Następujące klucze spowodują, że tokeny zostaną przekazane:
|
||||
<!-- Następujące klucze spowodują, że tokeny zostaną przekazane:
|
||||
0: Bieżąca wartość
|
||||
1: Rekomendowana wartość
|
||||
2: XPath
|
||||
3: Ścieżka pliku konfiguracyjnego
|
||||
-->
|
||||
<key alias="checkSuccessMessage">Wartość jest ustawiona na rekomendowaną wartość: '%0%'.</key>
|
||||
<key alias="rectifySuccessMessage">Wartość została ustawiona na '%1%' dla XPath '%2%' w pliku konfiguracyjnym '%3%'.</key>
|
||||
<key alias="rectifySuccessMessage">Wartość została ustawiona na '%1%' dla XPath '%2%' w pliku konfiguracyjnym '%3%'.</key>
|
||||
<key alias="checkErrorMessageDifferentExpectedValue">Oczekiwana jest wartość '%1%' dla '%2%' w pliku konfiguracyjnym '%3%', ale znaleziono '%0%'.</key>
|
||||
<key alias="checkErrorMessageUnexpectedValue">Znaleziono nieoczekiwaną wartość '%0%' dla '%2%' w pliku konfiguracyjnym '%3%'.</key>
|
||||
|
||||
<!-- Następujące klucze spowodują, że tokeny zostaną przekazane:
|
||||
<!-- Następujące klucze spowodują, że tokeny zostaną przekazane:
|
||||
0: Bieżąca wartość
|
||||
1: Rekomendowana wartość
|
||||
-->
|
||||
<key alias="customErrorsCheckSuccessMessage">Niestandardowe błędy są ustawione na '%0%'.</key>
|
||||
<key alias="customErrorsCheckErrorMessage">Niestandardowe błędy są obecnie ustawione na '%0%'. Zaleca się ustawienie ich na '%1%' przed wypuszczeniem strony na produkcję.</key>
|
||||
<key alias="customErrorsCheckRectifySuccessMessage">Niestandardowe błędy zostały z powodzeniem ustawione na '%0%'.</key>
|
||||
|
||||
<key alias="macroErrorModeCheckSuccessMessage">MacroErrors są ustawione na '%0%'.</key>
|
||||
<key alias="macroErrorModeCheckErrorMessage">MacroErrors są ustawione na '%0%' co uniemożliwi częściowe lub całkowite załadowanie stron w Twojej witrynie jeśli wystąpią jakiekolwiek błędy w makro. Korekta ustawi wartość na '%1%'.</key>
|
||||
<key alias="macroErrorModeCheckRectifySuccessMessage">MacroErrors są teraz ustawione na '%0%'.</key>
|
||||
|
||||
<!-- Następujące klucze spowodują, że tokeny zostaną przekazane:
|
||||
<key alias="customErrorsCheckSuccessMessage">Niestandardowe błędy są ustawione na '%0%'.</key>
|
||||
<key alias="customErrorsCheckErrorMessage">Niestandardowe błędy są obecnie ustawione na '%0%'. Zaleca się ustawienie ich na '%1%' przed wypuszczeniem strony na produkcję.</key>
|
||||
<key alias="customErrorsCheckRectifySuccessMessage">Niestandardowe błędy zostały z powodzeniem ustawione na '%0%'.</key>
|
||||
<key alias="macroErrorModeCheckSuccessMessage">MacroErrors są ustawione na '%0%'.</key>
|
||||
<key alias="macroErrorModeCheckErrorMessage">MacroErrors są ustawione na '%0%' co uniemożliwi częściowe lub całkowite załadowanie stron w Twojej witrynie jeśli wystąpią jakiekolwiek błędy w makro. Korekta ustawi wartość na '%1%'.</key>
|
||||
<key alias="macroErrorModeCheckRectifySuccessMessage">MacroErrors są teraz ustawione na '%0%'.</key>
|
||||
<!-- Następujące klucze spowodują, że tokeny zostaną przekazane:
|
||||
0: Bieżąca wartość
|
||||
1: Rekomendowana wartość
|
||||
2: Wersja serwera
|
||||
-->
|
||||
<key alias="trySkipIisCustomErrorsCheckSuccessMessage">Try Skip IIS Custom Errors jest ustawione na '%0%' a Ty używasz IIS w wersji '%1%'.</key>
|
||||
<key alias="trySkipIisCustomErrorsCheckErrorMessage">Try Skip IIS Custom Errors wynosi obecnie '%0%'. Zalecane jest ustawienie go na '%1%' dla Twojego IIS w wersji (%2%).</key>
|
||||
<key alias="trySkipIisCustomErrorsCheckRectifySuccessMessage">Try Skip IIS Custom Errors ustawiono z powodzeniem na '%0%'.</key>
|
||||
|
||||
<!-- Następujące klucze przekazują predefiniowane tokeny, nie wszystkie są identyczne jak powyżej -->
|
||||
<key alias="configurationServiceFileNotFound">Plik nie istnieje: '%0%'.</key>
|
||||
<key alias="configurationServiceNodeNotFound"><![CDATA[Nie można znaleźć <strong>'%0%'</strong> w pliku konfiguracyjnym <strong>'%1%'</strong>.]]></key>
|
||||
<key alias="configurationServiceError">Wystąpił błąd, sprawdź logi, aby wyświetlić pełen opis błędu: %0%.</key>
|
||||
|
||||
<key alias="xmlDataIntegrityCheckMembers">Członkowie - Suma XML: %0%, Suma: %1%, Suma niepoprawnych: %2%</key>
|
||||
<key alias="xmlDataIntegrityCheckMedia">Media - Suma XML: %0%, Suma: %1%, Suma niepoprawnych: %2%</key>
|
||||
<key alias="xmlDataIntegrityCheckContent">Zawartość - Suma XML: %0%, Suma opublikowanych: %1%, Suma niepoprawnych: %2%</key>
|
||||
|
||||
<key alias="httpsCheckValidCertificate">Certifikat Twojej strony jest poprawny.</key>
|
||||
<key alias="httpsCheckInvalidCertificate">Błąd walidacji certyfikatu: '%0%'</key>
|
||||
<key alias="trySkipIisCustomErrorsCheckSuccessMessage">Try Skip IIS Custom Errors jest ustawione na '%0%' a Ty używasz IIS w wersji '%1%'.</key>
|
||||
<key alias="trySkipIisCustomErrorsCheckErrorMessage">Try Skip IIS Custom Errors wynosi obecnie '%0%'. Zalecane jest ustawienie go na '%1%' dla Twojego IIS w wersji (%2%).</key>
|
||||
<key alias="trySkipIisCustomErrorsCheckRectifySuccessMessage">Try Skip IIS Custom Errors ustawiono z powodzeniem na '%0%'.</key>
|
||||
<!-- Następujące klucze przekazują predefiniowane tokeny, nie wszystkie są identyczne jak powyżej -->
|
||||
<key alias="configurationServiceFileNotFound">Plik nie istnieje: '%0%'.</key>
|
||||
<key alias="configurationServiceNodeNotFound"><![CDATA[Nie można znaleźć <strong>'%0%'</strong> w pliku konfiguracyjnym <strong>'%1%'</strong>.]]></key>
|
||||
<key alias="configurationServiceError">Wystąpił błąd, sprawdź logi, aby wyświetlić pełen opis błędu: %0%.</key>
|
||||
<key alias="xmlDataIntegrityCheckMembers">Członkowie - Suma XML: %0%, Suma: %1%, Suma niepoprawnych: %2%</key>
|
||||
<key alias="xmlDataIntegrityCheckMedia">Media - Suma XML: %0%, Suma: %1%, Suma niepoprawnych: %2%</key>
|
||||
<key alias="xmlDataIntegrityCheckContent">Zawartość - Suma XML: %0%, Suma opublikowanych: %1%, Suma niepoprawnych: %2%</key>
|
||||
<key alias="httpsCheckValidCertificate">Certifikat Twojej strony jest poprawny.</key>
|
||||
<key alias="httpsCheckInvalidCertificate">Błąd walidacji certyfikatu: '%0%'</key>
|
||||
<key alias="httpsCheckExpiredCertificate">Certyfikat SSL Twojej strony wygasł.</key>
|
||||
<key alias="httpsCheckExpiringCertificate">Certyfikat SSL Twojej strony wygaśnie za %0% dni.</key>
|
||||
<key alias="healthCheckInvalidUrl">Błąd pingowania adresu URL %0% - '%1%'</key>
|
||||
<key alias="httpsCheckIsCurrentSchemeHttps">Oglądasz %0% stronę używając HTTPS.</key>
|
||||
<key alias="httpsCheckConfigurationRectifyNotPossible">appSetting 'umbracoUseSSL' został ustawiony na 'false' w Twoim pliku web.config. Po uzyskaniu dostępu do strony, używając HTTPS, powinieneś go ustawić na 'true'.</key>
|
||||
<key alias="httpsCheckConfigurationCheckResult">appSetting 'umbracoUseSSL' został ustawiony na '%0%' w Twoim pliku web.config, Twoje ciasteczka są %1% ustawione jako bezpieczne.</key>
|
||||
<key alias="httpsCheckEnableHttpsError">Nie można zaktualizaować ustawień 'umbracoUseSSL' w Twoim pliku web.config file. Błąd: %0%</key>
|
||||
|
||||
<!-- Następujące klucze nie mają przekazanych tokenów -->
|
||||
<key alias="httpsCheckEnableHttpsButton">Włącz HTTPS</key>
|
||||
<key alias="httpsCheckEnableHttpsDescription">Ustawia umbracoSSL na 'true' w appSettings pliku web.config.</key>
|
||||
<key alias="httpsCheckEnableHttpsSuccess">appSetting 'umbracoUseSSL' jest teraz ustawione na 'true' w Twoim pliku web.config, Twoje ciasteczka będą oznaczone jako bezpieczne.</key>
|
||||
|
||||
<key alias="rectifyButton">Napraw</key>
|
||||
<key alias="healthCheckInvalidUrl">Błąd pingowania adresu URL %0% - '%1%'</key>
|
||||
<key alias="httpsCheckIsCurrentSchemeHttps">Oglądasz %0% stronę używając HTTPS.</key>
|
||||
<key alias="httpsCheckConfigurationRectifyNotPossible">appSetting 'umbracoUseSSL' został ustawiony na 'false' w Twoim pliku web.config. Po uzyskaniu dostępu do strony, używając HTTPS, powinieneś go ustawić na 'true'.</key>
|
||||
<key alias="httpsCheckConfigurationCheckResult">appSetting 'umbracoUseSSL' został ustawiony na '%0%' w Twoim pliku web.config, Twoje ciasteczka są %1% ustawione jako bezpieczne.</key>
|
||||
<key alias="httpsCheckEnableHttpsError">Nie można zaktualizaować ustawień 'umbracoUseSSL' w Twoim pliku web.config file. Błąd: %0%</key>
|
||||
<!-- Następujące klucze nie mają przekazanych tokenów -->
|
||||
<key alias="httpsCheckEnableHttpsButton">Włącz HTTPS</key>
|
||||
<key alias="httpsCheckEnableHttpsDescription">Ustawia umbracoSSL na 'true' w appSettings pliku web.config.</key>
|
||||
<key alias="httpsCheckEnableHttpsSuccess">appSetting 'umbracoUseSSL' jest teraz ustawione na 'true' w Twoim pliku web.config, Twoje ciasteczka będą oznaczone jako bezpieczne.</key>
|
||||
<key alias="rectifyButton">Napraw</key>
|
||||
<key alias="cannotRectifyShouldNotEqual">Nie można naprawić sprawdzenia z wartością typu porównania 'ShouldNotEqual'.</key>
|
||||
<key alias="cannotRectifyShouldEqualWithValue">Nie można naprawić sprawdzenia z wartością typu porównania 'ShouldEqual' z wprowadzoną wartością.</key>
|
||||
<key alias="valueToRectifyNotProvided">Nie wprowadzono wartości do naprawy sprawdzenia.</key>
|
||||
|
||||
<key alias="compilationDebugCheckSuccessMessage">Tryb kompilacji debugowania jest wyłączony.</key>
|
||||
<key alias="compilationDebugCheckErrorMessage">Tryb kompilacji debugowania jest obecnie włączony. Zaleca się wyłączenie tego ustawienia przed wypuszczeniem strony na produkcję.</key>
|
||||
<key alias="compilationDebugCheckRectifySuccessMessage">Tryb komplikacji debugowania został wyłączony z powodzeniem.</key>
|
||||
|
||||
<key alias="traceModeCheckSuccessMessage">Tryb śledzenia jest wyłączony.</key>
|
||||
<key alias="traceModeCheckErrorMessage">Tryb śledzenia jest obecnie włączony. Zaleca się wyłączenie tego ustawienia przed wypuszczeniem strony na produkcję.</key>
|
||||
<key alias="traceModeCheckRectifySuccessMessage">Tryb śledzenia został wyłączony z powodzeniem</key>
|
||||
|
||||
<key alias="compilationDebugCheckSuccessMessage">Tryb kompilacji debugowania jest wyłączony.</key>
|
||||
<key alias="compilationDebugCheckErrorMessage">Tryb kompilacji debugowania jest obecnie włączony. Zaleca się wyłączenie tego ustawienia przed wypuszczeniem strony na produkcję.</key>
|
||||
<key alias="compilationDebugCheckRectifySuccessMessage">Tryb komplikacji debugowania został wyłączony z powodzeniem.</key>
|
||||
<key alias="traceModeCheckSuccessMessage">Tryb śledzenia jest wyłączony.</key>
|
||||
<key alias="traceModeCheckErrorMessage">Tryb śledzenia jest obecnie włączony. Zaleca się wyłączenie tego ustawienia przed wypuszczeniem strony na produkcję.</key>
|
||||
<key alias="traceModeCheckRectifySuccessMessage">Tryb śledzenia został wyłączony z powodzeniem</key>
|
||||
<key alias="folderPermissionsCheckMessage">Wszystkie foldery mają ustawione poprawne ustawienia.</key>
|
||||
<!-- Następujące klucze spowodują, że tokeny zostaną przekazane:
|
||||
0: Lista uszkodzonych ścieżek folderów oddzielonych przecinkami
|
||||
-->
|
||||
<key alias="requiredFolderPermissionFailed"><![CDATA[Następujące foldery muszą być skonfigurowane z uprawnieniami modyfikującymi, ale nie można uzyskać do nich dostępu: <strong>%0%</strong>.]]></key>
|
||||
<key alias="optionalFolderPermissionFailed"><![CDATA[Następujące foldery muszą być skonfigurowane z uprawnieniami modyfikującymi dla pewnych operacji Umbraco, aby funkcjonować, ale nie można uzyskać do nich dostępu: <strong>%0%</strong>. Jeśli nie będzie nic w nich pisane, żadne działania nie muszą być podejmowane.]]></key>
|
||||
|
||||
<key alias="filePermissionsCheckMessage">Wszystkie pliki mają ustawione poprawne uprawnienia.</key>
|
||||
<!-- Następujące klucze spowodują, że tokeny zostaną przekazane:
|
||||
0: Lista uszkodzonych ścieżek folderów oddzielonych przecinkami
|
||||
-->
|
||||
<key alias="requiredFilePermissionFailed"><![CDATA[Następujące pliki muszą być ustawione z uprawnieniami do zapisu, ale nie można uzyskać do nich dostępu: <strong>%0%</strong>.]]></key>
|
||||
<key alias="optionalFilePermissionFailed"><![CDATA[Następujące pliki muszą być ustawione z uprawnieniami do zapisu dla pewnych operacji Umbraco, aby funkcjonować, ale nie można uzyskać do nich dostępu: <strong>%0%</strong>. Jeśli nie będzie nic w nich pisane, żadne działania nie muszą być podejmowane.]]></key>
|
||||
|
||||
<key alias="clickJackingCheckHeaderFound"><![CDATA[Nagłówek lub meta-tag <strong>X-Frame-Options</strong> używany do kontrolowania czy strona może być IFRAME'owana przez inną został znaleziony.]]></key>
|
||||
<key alias="clickJackingCheckHeaderNotFound"><![CDATA[Nagłówek lub meta-tag <strong>X-Frame-Options</strong> używany do kontrolowania czy strona może być IFRAME'owana przez inną nie został znaleziony.]]></key>
|
||||
<key alias="setHeaderInConfig">Ustaw nagłówek w Config</key>
|
||||
<key alias="clickJackingSetHeaderInConfigDescription">Dodaje wartość do sekcji httpProtocol/customHeaders pliku web.config, aby zapobiec IFRAME'owania strony przez inne witryny.</key>
|
||||
<key alias="clickJackingSetHeaderInConfigSuccess">Ustawienie do tworzenia nagłówka, zapobiegającego IFRAME'owania strony przez inne witryny zostało dodane do Twojego pliku web.config.</key>
|
||||
<key alias="setHeaderInConfigError">Nie można zaktualizować pliku web.config. Błąd: %0%</key>
|
||||
|
||||
<!-- Następujące klucze spowodują, że tokeny zostaną przekazane:
|
||||
0: Lista znalezionych nagłówków, oddzielonych przecinkami
|
||||
-->
|
||||
<key alias="excessiveHeadersFound"><![CDATA[Znaleziono następujące nagłówki, ujawniające informacje o technologii strony: <strong>%0%</strong>.]]></key>
|
||||
<key alias="excessiveHeadersNotFound">Nie znaleziono żadnych nagłówków, ujawniających informacji o technologii strony.</key>
|
||||
|
||||
<key alias="smtpMailSettingsNotFound">Nie znaleziono system.net/mailsettings w pliku Web.config.</key>
|
||||
<key alias="smtpMailSettingsHostNotConfigured">Host nie jest skonfigurowany w sekcji system.net/mailsettings pliku Web.config.</key>
|
||||
<key alias="smtpMailSettingsConnectionSuccess">Ustawienia SMTP są skonfigurowane poprawnie i serwis działa według oczekiwań.</key>
|
||||
<key alias="smtpMailSettingsConnectionFail">Nie można połączyć się z serwerem SMTP skonfigurowanym z hostem '%0%' i portem '%1%'. Proszę sprawdzić ponownie, czy ustawienia system.net/mailsettings w pliku Web.config są poprawne.</key>
|
||||
|
||||
<key alias="notificationEmailsCheckSuccessMessage"><![CDATA[E-mail z powiadomieniem został wysłany do <strong>%0%</strong>.]]></key>
|
||||
<key alias="notificationEmailsCheckErrorMessage"><![CDATA[E-mail do powiadomień jest nadal ustawiony na domyślną wartość <strong>%0%</strong>.]]></key>
|
||||
</area>
|
||||
@@ -1690,7 +1514,7 @@ Naciśnij przycisk <strong>instaluj</strong>, aby zainstalować bazę danych Umb
|
||||
<area alias="emptyStates">
|
||||
<key alias="emptyDictionaryTree">Brak elementów słownika do wyboru</key>
|
||||
</area>
|
||||
<area alias="textbox">
|
||||
<area alias="textbox">
|
||||
<key alias="characters_left">pozostało znaków</key>
|
||||
</area>
|
||||
</language>
|
||||
</language>
|
||||
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<language alias="pt" intName="Portuguese Brazil" localName="Portuguese Brazil" lcid="" culture="pt-BR">
|
||||
<creator>
|
||||
<name>The Umbraco community</name>
|
||||
@@ -131,27 +131,22 @@
|
||||
</area>
|
||||
<area alias="bulk">
|
||||
<key alias="done">Done</key>
|
||||
|
||||
<key alias="deletedItem">Deleted %0% item</key>
|
||||
<key alias="deletedItems">Deleted %0% items</key>
|
||||
<key alias="deletedItemOfItem">Deleted %0% out of %1% item</key>
|
||||
<key alias="deletedItemOfItems">Deleted %0% out of %1% items</key>
|
||||
|
||||
<key alias="publishedItem">Published %0% item</key>
|
||||
<key alias="publishedItems">Published %0% items</key>
|
||||
<key alias="publishedItemOfItem">Published %0% out of %1% item</key>
|
||||
<key alias="publishedItemOfItems">Published %0% out of %1% items</key>
|
||||
|
||||
<key alias="unpublishedItem">Unpublished %0% item</key>
|
||||
<key alias="unpublishedItems">Unpublished %0% items</key>
|
||||
<key alias="unpublishedItemOfItem">Unpublished %0% out of %1% item</key>
|
||||
<key alias="unpublishedItemOfItems">Unpublished %0% out of %1% items</key>
|
||||
|
||||
<key alias="movedItem">Moved %0% item</key>
|
||||
<key alias="movedItems">Moved %0% items</key>
|
||||
<key alias="movedItemOfItem">Moved %0% out of %1% item</key>
|
||||
<key alias="movedItemOfItems">Moved %0% out of %1% items</key>
|
||||
|
||||
<key alias="copiedItem">Copied %0% item</key>
|
||||
<key alias="copiedItems">Copied %0% items</key>
|
||||
<key alias="copiedItemOfItem">Copied %0% out of %1% item</key>
|
||||
@@ -249,8 +244,6 @@
|
||||
<key alias="missingTitle">Favor digitar um título</key>
|
||||
<key alias="missingType">Favor escolher um tipo</key>
|
||||
<key alias="pictureResizeBiggerThanOrg">Você está prestes a tornar esta figura maior que o tamanho original. Tem certeza que deseja proceguir?</key>
|
||||
<key alias="pythonErrorHeader">Erro no script python</key>
|
||||
<key alias="pythonErrorText">O script pyton não foi salvo por que contém erro(s)</key>
|
||||
<key alias="startNodeDoesNotExists">Nó inicial removido, favor entrar em contato com seu administrador</key>
|
||||
<key alias="stylesMustMarkBeforeSelect">Favor marcar conteúdo antes de alterar o estilo</key>
|
||||
<key alias="stylesNoStylesOnPage">Nenhum estilo ativo disponível</key>
|
||||
@@ -336,7 +329,8 @@
|
||||
<key alias="showPageOnSend">Mostrar página durante envio</key>
|
||||
<key alias="size">Tamanho</key>
|
||||
<key alias="sort">Classificar</key>
|
||||
<key alias="submit">Submit</key> <!-- TODO: Translate this -->
|
||||
<key alias="submit">Submit</key>
|
||||
<!-- TODO: Translate this -->
|
||||
<key alias="type">Tipo</key>
|
||||
<key alias="typeToSearch">Digite para buscar...</key>
|
||||
<key alias="up">Acima</key>
|
||||
@@ -465,7 +459,6 @@ Pressione <strong>"próximo"</strong> para iniciar o assistente.]]></key>
|
||||
</area>
|
||||
<area alias="login">
|
||||
<key alias="bottomText"><![CDATA[<p style="text-align:right;">© 2001 - %0% <br /><a href="http://umbraco.com" style="text-decoration: none" target="_blank">umbraco.com</a></p> ]]></key>
|
||||
<key alias="topText">Bem vindo(a) à Umbraco, digite seu nome de usuário e senha nas caixas abaixo:</key>
|
||||
</area>
|
||||
<area alias="main">
|
||||
<key alias="dashboard">Painel</key>
|
||||
@@ -680,10 +673,6 @@ Você pode publicar esta página e todas suas sub-páginas ao selecionar <em>pub
|
||||
<key alias="fileSavedHeader">Arquivo salvo</key>
|
||||
<key alias="fileSavedText">Arquivo salvo sem nenhum erro</key>
|
||||
<key alias="languageSaved">Linguagem salva</key>
|
||||
<key alias="pythonErrorHeader">Script Python não salvo</key>
|
||||
<key alias="pythonErrorText">Script python não pode ser salvo devido à erro</key>
|
||||
<key alias="pythonSavedHeader">Script Python salvo</key>
|
||||
<key alias="pythonSavedText">Nenhum erro no script python</key>
|
||||
<key alias="templateErrorHeader">Modelo não salvo</key>
|
||||
<key alias="templateErrorText">Favor confirmar que não existem 2 modelos com o mesmo apelido</key>
|
||||
<key alias="templateSavedHeader">Modelo salvo</key>
|
||||
@@ -709,27 +698,20 @@ Você pode publicar esta página e todas suas sub-páginas ao selecionar <em>pub
|
||||
<key alias="template">Modelo</key>
|
||||
</area>
|
||||
<area alias="grid">
|
||||
<key alias="rte">Rich Text Editor</key>
|
||||
<key alias="media">Image</key>
|
||||
<key alias="macro">Macro</key>
|
||||
<key alias="embed">Embed</key>
|
||||
<key alias="headline">Headline</key>
|
||||
<key alias="quote">Quote</key>
|
||||
<key alias="insertControl">Choose type of content</key>
|
||||
<key alias="chooseLayout">Choose a layout</key>
|
||||
<key alias="addRows">Add a row</key>
|
||||
<key alias="addElement">Add content</key>
|
||||
<key alias="dropElement">Drop content</key>
|
||||
<key alias="settingsApplied">Settings applied</key>
|
||||
|
||||
<key alias="contentNotAllowed">This content is not allowed here</key>
|
||||
<key alias="contentAllowed">This content is allowed here</key>
|
||||
|
||||
<key alias="clickToEmbed">Click to embed</key>
|
||||
<key alias="clickToInsertImage">Click to insert image</key>
|
||||
<key alias="placeholderImageCaption">Image caption...</key>
|
||||
<key alias="placeholderWriteHere">Write here...</key>
|
||||
|
||||
<key alias="gridLayouts">Grid Layouts</key>
|
||||
<key alias="gridLayoutsDetail">Layouts are the overall work area for the grid editor, usually you only need one or two different layouts</key>
|
||||
<key alias="addGridLayout">Add Grid Layout</key>
|
||||
@@ -738,18 +720,12 @@ Você pode publicar esta página e todas suas sub-páginas ao selecionar <em>pub
|
||||
<key alias="rowConfigurationsDetail">Rows are predefined cells arranged horizontally</key>
|
||||
<key alias="addRowConfiguration">Add row configuration</key>
|
||||
<key alias="addRowConfigurationDetail">Adjust the row by setting cell widths and adding additional cells</key>
|
||||
|
||||
<key alias="columns">Columns</key>
|
||||
<key alias="columnsDetails">Total combined number of columns in the grid layout</key>
|
||||
|
||||
<key alias="settings">Settings</key>
|
||||
<key alias="settingsDetails">Configure what settings editors can change</key>
|
||||
|
||||
<key alias="styles">Styles</key>
|
||||
<key alias="stylesDetails">Configure what styling editors can change</key>
|
||||
|
||||
<key alias="settingDialogDetails">Settings will only save if the entered json configuration is valid</key>
|
||||
|
||||
<key alias="allowAllEditors">Allow all editors</key>
|
||||
<key alias="allowAllRowConfigurations">Allow all row configurations</key>
|
||||
</area>
|
||||
@@ -781,14 +757,7 @@ Você pode publicar esta página e todas suas sub-páginas ao selecionar <em>pub
|
||||
<key alias="withTime">Sim, com hora. Separador:</key>
|
||||
</area>
|
||||
<area alias="translation">
|
||||
<key alias="assignedTasks">Tarefas designadas à você</key>
|
||||
<key alias="assignedTasksHelp"><![CDATA[A lista abaixo mostra as tarefas de tradução <strong>designadas à você</strong>. Para ver os detalhes, incluinddo comentários, clique em "Detalhes" ou no nome da página.
|
||||
Você também pode baixar a página como XML ao clicar no link "Download XML". <br />
|
||||
Para fechar a tarefa de tradução vá até os detalhes e clique no botão "Fechar".]]></key>
|
||||
<key alias="closeTask">fechar tarefa</key>
|
||||
<key alias="details">Detalhes da Tradução</key>
|
||||
<key alias="downloadAllAsXml">Download todas as tarefas de tradução como xml</key>
|
||||
<key alias="downloadTaskAsXml">Download Xml</key>
|
||||
<key alias="DownloadXmlDTD">Download Xml DTD</key>
|
||||
<key alias="fields">Campos</key>
|
||||
<key alias="includeSubpages">Incluir sub-páginas</key>
|
||||
@@ -805,15 +774,9 @@ Para fechar a tarefa de tradução vá até os detalhes e clique no botão "Fech
|
||||
|
||||
Saudações do robô Umbraco
|
||||
]]></key>
|
||||
<key alias="mailSubject">Tarefa de tradução [%0%] para %1%</key>
|
||||
<key alias="noTranslators">Nenhum usuário tradutor encontrado. Favor criar um usuário tradutor antes que possa começar a enviar conteúdo para tradução</key>
|
||||
<key alias="ownedTasks">Tarefas criadas por você</key>
|
||||
<key alias="ownedTasksHelp"><![CDATA[A lista abaixo mostra as páginas <strong>criadas por você</strong>. Para ver os detalhes, incluindo comentários, clique em "Detalhes" ou no nome da página. Você também pode baixar a página em XML ao clicar no link "Download XML".
|
||||
Para fechar a tarefa de tradução vá até os detalhes e clique no botão "Fechar".]]></key>
|
||||
<key alias="pageHasBeenSendToTranslation">A página '%0%' foi enviada para tradução</key>
|
||||
<key alias="sendToTranslate">Enviar página '%0%' para tradução</key>
|
||||
<key alias="taskAssignedBy">Designada por</key>
|
||||
<key alias="taskOpened">Tarefa aberta</key>
|
||||
<key alias="totalWords">Total de palavras</key>
|
||||
<key alias="translateTo">Traduzir para</key>
|
||||
<key alias="translationDone">Tradução concluída.</key>
|
||||
@@ -843,7 +806,6 @@ Para fechar a tarefa de tradução vá até os detalhes e clique no botão "Fech
|
||||
<key alias="documentTypes">Tipos de Documentos</key>
|
||||
<key alias="packager">Pacotes</key>
|
||||
<key alias="packages">Pacotes</key>
|
||||
<key alias="python">Arquivos Python</key>
|
||||
<key alias="repositories">Instalar desde o repositório</key>
|
||||
<key alias="runway">Instalar Runway</key>
|
||||
<key alias="runwayModules">Módulos Runway</key>
|
||||
@@ -898,4 +860,4 @@ Para fechar a tarefa de tradução vá até os detalhes e clique no botão "Fech
|
||||
<key alias="userTypes">Tipos de usuários</key>
|
||||
<key alias="writer">Escrevente</key>
|
||||
</area>
|
||||
</language>
|
||||
</language>
|
||||
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<language alias="ru" intName="Russian" localName="русский" lcid="" culture="ru-RU">
|
||||
<creator>
|
||||
<name>The Umbraco community</name>
|
||||
@@ -99,37 +99,32 @@
|
||||
<key alias="atViewingFor">Наблюдать за</key>
|
||||
</area>
|
||||
<area alias="blueprints">
|
||||
<key alias="createBlueprintFrom">Создать новый шаблон содержимого из '%0%'</key>
|
||||
<key alias="blankBlueprint">Пустой</key>
|
||||
<key alias="selectBlueprint">Выбрать шаблон содержимого</key>
|
||||
<key alias="createdBlueprintHeading">Шаблон содержимого создан</key>
|
||||
<key alias="createdBlueprintMessage">Создан шаблон содержимого из '%0%'</key>
|
||||
<key alias="duplicateBlueprintMessage">Другой шаблон содержимого с таким же названием уже существует</key>
|
||||
<key alias="blueprintDescription">Шаблон содержимого — это предопределенный набор данных, который редактор может использовать для начального заполнения свойств при создании узлов содержимого</key>
|
||||
<key alias="createBlueprintFrom">Создать новый шаблон содержимого из '%0%'</key>
|
||||
<key alias="blankBlueprint">Пустой</key>
|
||||
<key alias="selectBlueprint">Выбрать шаблон содержимого</key>
|
||||
<key alias="createdBlueprintHeading">Шаблон содержимого создан</key>
|
||||
<key alias="createdBlueprintMessage">Создан шаблон содержимого из '%0%'</key>
|
||||
<key alias="duplicateBlueprintMessage">Другой шаблон содержимого с таким же названием уже существует</key>
|
||||
<key alias="blueprintDescription">Шаблон содержимого — это предопределенный набор данных, который редактор может использовать для начального заполнения свойств при создании узлов содержимого</key>
|
||||
</area>
|
||||
<area alias="bulk">
|
||||
<key alias="done">Завершено</key>
|
||||
|
||||
<key alias="deletedItem">Удален %0% элемент</key>
|
||||
<key alias="deletedItems">Удалено %0% элементов</key>
|
||||
<key alias="deletedItemOfItem">Удален %0% из %1% элементов</key>
|
||||
<key alias="deletedItemOfItems">Удалено %0% из %1% элементов</key>
|
||||
|
||||
<key alias="publishedItem">Опубликован %0% элемент</key>
|
||||
<key alias="publishedItems">Опубликовано %0% элементов</key>
|
||||
<key alias="publishedItemOfItem">Опубликован %0% из %1% элементов</key>
|
||||
<key alias="publishedItemOfItems">Опубликовано %0% из %1% элементов</key>
|
||||
|
||||
<key alias="unpublishedItem">Скрыт %0% элемент</key>
|
||||
<key alias="unpublishedItems">Скрыто %0% элементов</key>
|
||||
<key alias="unpublishedItemOfItem">Скрыт %0% из %1% элементов</key>
|
||||
<key alias="unpublishedItemOfItems">Скрыто %0% из %1% элементов</key>
|
||||
|
||||
<key alias="movedItem">Перенесен %0% элемент</key>
|
||||
<key alias="movedItems">Перенесено %0% элементов</key>
|
||||
<key alias="movedItemOfItem">Перенесен %0% из %1% элементов</key>
|
||||
<key alias="movedItemOfItems">Перенесено %0% из %1% элементов</key>
|
||||
|
||||
<key alias="copiedItem">Скопирован %0% элемент</key>
|
||||
<key alias="copiedItems">Скопировано %0% элементов</key>
|
||||
<key alias="copiedItemOfItem">Скопирован %0% из %1% элементов</key>
|
||||
@@ -140,7 +135,6 @@
|
||||
<key alias="clearSelection">Снять выбор</key>
|
||||
<key alias="deindent">Уменьшить отступ</key>
|
||||
<key alias="formFieldInsert">Вставить поле формы</key>
|
||||
<key alias="generateModels">Сгенерировать модели</key>
|
||||
<key alias="graphicHeadline">Вставить графический заголовок</key>
|
||||
<key alias="htmlEdit">Править исходный код HTML</key>
|
||||
<key alias="indent">Увеличить отступ</key>
|
||||
@@ -164,7 +158,6 @@
|
||||
<key alias="saveToPublish">Направить на публикацию</key>
|
||||
<key alias="saveListView">Сохранить список</key>
|
||||
<key alias="select">Выбрать</key>
|
||||
<key alias="selectCurrentFolder">Выбрать текущую папку</key>
|
||||
<key alias="showPage">Предварительный просмотр</key>
|
||||
<key alias="showPageDisabled">Предварительный просмотр запрещен, так как документу не сопоставлен шаблон</key>
|
||||
<key alias="somethingElse">Другие действия</key>
|
||||
@@ -198,25 +191,7 @@
|
||||
<key alias="noColors">Вы не указали ни одного допустимого цвета</key>
|
||||
</area>
|
||||
<area alias="colors">
|
||||
<key alias="black">Черный</key>
|
||||
<key alias="green">Зеленый</key>
|
||||
<key alias="yellow">Желтый</key>
|
||||
<key alias="orange">Оранжевый</key>
|
||||
<key alias="blue">Синий</key>
|
||||
<key alias="bluegrey">Серо-синий</key>
|
||||
<key alias="grey">Серый</key>
|
||||
<key alias="brown">Коричневый</key>
|
||||
<key alias="lightblue">Светло-синий</key>
|
||||
<key alias="cyan">Голубой</key>
|
||||
<key alias="lightgreen">Светло-зеленый</key>
|
||||
<key alias="lime">Лайм</key>
|
||||
<key alias="amber">Янтарный</key>
|
||||
<key alias="deeporange">Рыжий</key>
|
||||
<key alias="red">Красный</key>
|
||||
<key alias="pink">Розовый</key>
|
||||
<key alias="purple">Лиловый</key>
|
||||
<key alias="deeppurple">Темно-лиловый</key>
|
||||
<key alias="indigo">Индиго</key>
|
||||
</area>
|
||||
<area alias="content">
|
||||
<key alias="about">Об этой странице</key>
|
||||
@@ -295,59 +270,42 @@
|
||||
<area alias="contentTypeEditor">
|
||||
<key alias="compositions">Композиции</key>
|
||||
<key alias="noTabs">Вы не добавили ни одной вкладки</key>
|
||||
<key alias="addNewTab">Добавить вкладку</key>
|
||||
<key alias="addAnotherTab">Добавить новую вкладку</key>
|
||||
<key alias="inheritedFrom">Унаследовано от</key>
|
||||
<key alias="addProperty">Добавить свойство</key>
|
||||
<key alias="requiredLabel">Обязательная метка</key>
|
||||
|
||||
<key alias="enableListViewHeading">Представление в формате списка</key>
|
||||
<key alias="enableListViewDescription">Устанавливает представление документа данного типа в виде сортируемого списка дочерних документов с функцией поиска, в отличие от обычного представления дочерних документов в виде дерева</key>
|
||||
|
||||
<key alias="allowedTemplatesHeading">Допустимые шаблоны</key>
|
||||
<key alias="allowedTemplatesDescription">Выберите перечень допустимых шаблонов для сопоставления документам данного типа</key>
|
||||
<key alias="allowAsRootHeading">Разрешить в качестве корневого</key>
|
||||
<key alias="allowAsRootDescription">Позволяет создавать документы этого типа в самом корне дерева содержимого</key>
|
||||
<key alias="allowAsRootCheckbox">ДА - разрешить создание в качестве корневого</key>
|
||||
|
||||
<key alias="childNodesHeading">Допустимые типы дочерних документов</key>
|
||||
<key alias="childNodesDescription">Позволяет указать перечень типов документов, допустимых для создания документов, дочерних к данному типу</key>
|
||||
|
||||
<key alias="chooseChildNode">Выбрать дочерний узел</key>
|
||||
<key alias="compositionsDescription">Унаследовать вкладки и свойства из уже существующего типа документов. Вкладки будут либо добавлены в создаваемый тип, либо в случае совпадения названий вкладок будут добавлены наследуемые свойства.</key>
|
||||
<key alias="compositionInUse">Этот тип документов уже участвует в композиции другого типа, поэтому сам не может быть композицией.</key>
|
||||
<key alias="compositionUsageHeading">Где используется эта композиция?</key>
|
||||
<key alias="compositionUsageSpecification">Эта композиция сейчас используется при создании следующих типов документов:</key>
|
||||
<key alias="noAvailableCompositions">В настоящее время нет типов документов, допустимых для построения композиции.</key>
|
||||
|
||||
<key alias="availableEditors">Доступные редакторы</key>
|
||||
<key alias="reuse">Переиспользовать</key>
|
||||
<key alias="editorSettings">Установки редактора</key>
|
||||
|
||||
<key alias="configuration">Конфигурирование</key>
|
||||
|
||||
<key alias="yesDelete">ДА, удалить</key>
|
||||
|
||||
<key alias="movedUnderneath">перемещены внутрь</key>
|
||||
<key alias="copiedUnderneath">скопированы внутрь</key>
|
||||
<key alias="folderToMove">Выбрать папку для перемещения</key>
|
||||
<key alias="folderToCopy">Выбрать папку для копирования</key>
|
||||
<key alias="structureBelow">в структуре дерева</key>
|
||||
|
||||
<key alias="allDocumentTypes">Все типы документов</key>
|
||||
<key alias="allDocuments">Все документы</key>
|
||||
<key alias="allMediaItems">Все медиа-элементы</key>
|
||||
|
||||
<key alias="usingThisDocument">, использующие этот тип документов, будут безвозвратно удалены, пожалуйста, подтвердите это действие.</key>
|
||||
<key alias="usingThisMedia">, использующие этот тип медиа, будут безвозвратно удалены, пожалуйста, подтвердите это действие.</key>
|
||||
<key alias="usingThisMember">, использующие этот тип участников, будут безвозвратно удалены, пожалуйста, подтвердите это действие.</key>
|
||||
|
||||
<key alias="andAllDocuments">и все документы, использующие данный тип</key>
|
||||
<key alias="andAllMediaItems">и все медиа-элементы, использующие данный тип</key>
|
||||
<key alias="andAllMembers">и все участники, использующие данный тип</key>
|
||||
|
||||
<key alias="thisEditorUpdateSettings">, использующие этот редактор, будут обновлены с применением этих установок</key>
|
||||
|
||||
<key alias="memberCanEdit">Участник может изменить</key>
|
||||
<key alias="memberCanEditDescription">Разрешает редактирование значение данного свойства участником в своем профиле</key>
|
||||
<key alias="isSensitiveData">Конфеденциальные данные</key>
|
||||
@@ -370,7 +328,6 @@
|
||||
<key alias="newEmptyPartialView">Новое пустое частичное представление</key>
|
||||
<key alias="newPartialViewMacro">Новый макрос-представление</key>
|
||||
<key alias="newPartialViewFromSnippet">Новое частичное представление по образцу</key>
|
||||
<key alias="newEmptyPartialViewMacro">Новый пустой макрос-представление</key>
|
||||
<key alias="newPartialViewMacroFromSnippet">Новый макрос-представление по образцу</key>
|
||||
<key alias="newPartialViewMacroNoMacro">Новый макрос-представление (без регистрации макроса)</key>
|
||||
</area>
|
||||
@@ -436,14 +393,12 @@
|
||||
<key alias="treepicker">Выберите элемент</key>
|
||||
<key alias="urlLinkPicker">Ссылка</key>
|
||||
<key alias="viewCacheItem">Просмотр элемента кэша</key>
|
||||
<key alias="createFolder">Создать папку...</key>
|
||||
<key alias="relateToOriginalLabel">Связать с оригиналом</key>
|
||||
<key alias="includeDescendants">Включая все дочерние</key>
|
||||
<key alias="theFriendliestCommunity">Самое дружелюбное сообщество</key>
|
||||
<key alias="linkToPage">Ссылка на страницу</key>
|
||||
<key alias="openInNewWindow">Открывать ссылку в новом окне или вкладке браузера</key>
|
||||
<key alias="linkToMedia">Ссылка на медиа-элемент</key>
|
||||
<key alias="linkToFile">Ссылка на файл</key>
|
||||
<key alias="selectMedia">Выбрать медиа</key>
|
||||
<key alias="selectMediaStartNode">Выбрать начальный узел медиа-библиотеки</key>
|
||||
<key alias="selectIcon">Выбрать значок</key>
|
||||
@@ -474,27 +429,17 @@
|
||||
Ниже Вы можете указать различные переводы данной статьи словаря '<em>%0%</em>'<br/>Добавить другие языки можно, воспользовавшись пунктом 'Языки' в меню слева
|
||||
]]></key>
|
||||
<key alias="displayName">Название языка (культуры)</key>
|
||||
<key alias="changeKey">Редактировать элемент (ключ) словаря</key>
|
||||
<key alias="changeKeyError">
|
||||
<![CDATA[
|
||||
<key alias="changeKeyError"><![CDATA[
|
||||
Ключ '%0%' уже существует в словаре.
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="overviewTitle">Обзор словаря</key>
|
||||
</area>
|
||||
<area alias="editcontenttype">
|
||||
<key alias="allowAtRoot" version="7.2">Допустим как корневой</key>
|
||||
<key alias="allowAtRootDesc" version="7.2">Только узлы таких типов (с установленным флагом) могут быть созданы в корневом уровне дерева содержимого или медиа-библиотеки</key>
|
||||
<key alias="allowedchildnodetypes">Допустимые типы дочерних узлов</key>
|
||||
<key alias="contenttypecompositions">Составные типы документов</key>
|
||||
<key alias="create">Создать</key>
|
||||
<key alias="createListView" version="7.2">Создать пользовательский список</key>
|
||||
<key alias="currentListView" version="7.2">Текущий список</key>
|
||||
<key alias="currentListViewDesc" version="7.2">Текущий тип данных в виде списка</key>
|
||||
<key alias="deletetab">Удалить вкладку</key>
|
||||
<key alias="description">Описание</key>
|
||||
<key alias="hasListView">Включить представление в виде списка</key>
|
||||
<key alias="hasListViewDesc" version="7.2">Включает представление узлов, дочерних к узлу данного типа, в виде сортируемого списка с функцией фильтра и поиска. Такие дочерние узлы при этом перестают быть видимыми в дереве.</key>
|
||||
<key alias="newtab">Новая вкладка</key>
|
||||
<key alias="removeListView" version="7.2">Удалить пользовательский список</key>
|
||||
<key alias="tab">Вкладка</key>
|
||||
@@ -544,14 +489,9 @@
|
||||
<key alias="filePermissionsError">Ошибка доступа к указанному файлу или папке</key>
|
||||
<key alias="macroErrorLoadingPartialView">Ошибка загрузки кода в частичном представлении (файл: %0%)</key>
|
||||
<key alias="macroErrorLoadingUsercontrol">Ошибка загрузки пользовательского элемента управления '%0%'</key>
|
||||
<key alias="macroErrorLoadingCustomControl">Ошибка загрузки внешнего типа (сборка: %0%, тип: '%1%')</key>
|
||||
<key alias="macroErrorLoadingMacroEngineScript">Ошибка загрузки макроса (файл: %0%)</key>
|
||||
<key alias="missingPropertyEditorErrorMessage">Ошибка в конфигурации типа данных, используемого для свойства, проверьте тип данных</key>
|
||||
<key alias="missingTitle">Укажите заголовок</key>
|
||||
<key alias="missingType">Выберите тип</key>
|
||||
<key alias="pictureResizeBiggerThanOrg">Вы пытаетесь увеличить изображение по сравнению с его исходным размером. Уверены, что хотите сделать это?</key>
|
||||
<key alias="pythonErrorHeader">Ошибка в скрипте Python</key>
|
||||
<key alias="pythonErrorText">Скрипт на языке Python не был сохранен, так как он содержит одну или несколько ошибок.</key>
|
||||
<key alias="startNodeDoesNotExists">Начальный узел был удален, свяжитесь с Вашим администратором</key>
|
||||
<key alias="stylesMustMarkBeforeSelect">Для смены стиля отметьте фрагмент текста</key>
|
||||
<key alias="stylesNoStylesOnPage">Не определен ни один доступный стиль</key>
|
||||
@@ -627,7 +567,6 @@
|
||||
<key alias="macro">Макрос</key>
|
||||
<key alias="mandatory">Обязательно</key>
|
||||
<key alias="message">Сообщение</key>
|
||||
<key alias="more">Больше</key>
|
||||
<key alias="move">Переместить</key>
|
||||
<key alias="name">Название</key>
|
||||
<key alias="new">Новый</key>
|
||||
@@ -694,7 +633,6 @@
|
||||
<key alias="current">текущий</key>
|
||||
<key alias="selected">выбрано</key>
|
||||
<key alias="embed">Встроить</key>
|
||||
<key alias="retrieve">Получить</key>
|
||||
</area>
|
||||
<area alias="graphicheadline">
|
||||
<key alias="backgroundcolor">Цвет фона</key>
|
||||
@@ -704,12 +642,8 @@
|
||||
<key alias="text">Текст</key>
|
||||
</area>
|
||||
<area alias="grid">
|
||||
<key alias="rte">Редактор текста</key>
|
||||
<key alias="media">Изображение</key>
|
||||
<key alias="macro">Макрос</key>
|
||||
<key alias="embed">Встраивание</key>
|
||||
<key alias="headline">Заголовок</key>
|
||||
<key alias="quote">Цитата</key>
|
||||
<key alias="addElement">Добавить содержимое</key>
|
||||
<key alias="dropElement">Сбросить содержимое</key>
|
||||
<key alias="addGridLayout">Добавить шаблон сетки</key>
|
||||
@@ -733,7 +667,6 @@
|
||||
<key alias="placeholderWriteHere">Напишите...</key>
|
||||
<key alias="rowConfigurations">Конфигурации строк</key>
|
||||
<key alias="rowConfigurationsDetail">Строки - это последовательности ячеек с горизонтальным расположением</key>
|
||||
<key alias="settingDialogDetails">Установки будут сохранены только если они указаны в корректном формате json</key>
|
||||
<key alias="settings">Установки</key>
|
||||
<key alias="settingsApplied">Установки применены</key>
|
||||
<key alias="settingsDetails">Задайте установки, доступные редакторам для изменения</key>
|
||||
@@ -760,7 +693,6 @@
|
||||
<key alias="rectifySuccessMessage">Значение установлено в '%1%' для пути XPath '%2%' в файле конфигурации '%3%'.</key>
|
||||
<key alias="checkErrorMessageDifferentExpectedValue">Ожидаемое значение '%1%' для параметра '%2%' в файле конфигурации '%3%', найденное значение: '%0%'.</key>
|
||||
<key alias="checkErrorMessageUnexpectedValue">Найдено неожиданное значение '%0%' для параметра '%2%' в файле конфигурации '%3%'.</key>
|
||||
|
||||
<!-- The following keys get these tokens passed in:
|
||||
0: Current value
|
||||
1: Recommended value
|
||||
@@ -768,11 +700,9 @@
|
||||
<key alias="customErrorsCheckSuccessMessage">Параметр 'CustomErrors' установлен в '%0%'.</key>
|
||||
<key alias="customErrorsCheckErrorMessage">Параметр 'CustomErrors' сейчас установлен в '%0%'. Рекомендуется установить в '%1%' перед размещением сайта в сети.</key>
|
||||
<key alias="customErrorsCheckRectifySuccessMessage">Параметр 'CustomErrors' успешно установлен в '%0%'.</key>
|
||||
|
||||
<key alias="macroErrorModeCheckSuccessMessage">Параметр 'MacroErrors' установлен в '%0%'.</key>
|
||||
<key alias="macroErrorModeCheckErrorMessage">Параметр 'MacroErrors' установлен в '%0%', что может привести к неполной обработке части страниц или всех страниц сайта при наличии ошибок в макросах. Устранить это можно путем установки значения в '%1%'.</key>
|
||||
<key alias="macroErrorModeCheckRectifySuccessMessage">Параметр 'MacroErrors' теперь установлен в '%0%'.</key>
|
||||
|
||||
<!-- The following keys get these tokens passed in:
|
||||
0: Current value
|
||||
1: Recommended value
|
||||
@@ -781,100 +711,79 @@
|
||||
<key alias="trySkipIisCustomErrorsCheckSuccessMessage">Параметр 'Try Skip IIS Custom Errors' установлен в '%0%' и Вы используете IIS версии '%1%'.</key>
|
||||
<key alias="trySkipIisCustomErrorsCheckErrorMessage">Параметр 'Try Skip IIS Custom Errors' сейчас установлен в '%0%'. Рекомендуется установить в '%1%' для Вашего текущего IIS версии (%2%).</key>
|
||||
<key alias="trySkipIisCustomErrorsCheckRectifySuccessMessage">Параметр 'Try Skip IIS Custom Errors' успешно установлен в '%0%'.</key>
|
||||
|
||||
<!-- The following keys get predefined tokens passed in that are not all the same, like above -->
|
||||
<key alias="configurationServiceFileNotFound">Файл не существует: '%0%'.</key>
|
||||
<key alias="configurationServiceNodeNotFound"><![CDATA[Не найден параметр <strong>'%0%'</strong> в файле конфигурации <strong>'%1%'</strong>.]]></key>
|
||||
<key alias="configurationServiceError">Обнаружена ошибка, для получения полной информации обратитесь к журналу: %0%.</key>
|
||||
|
||||
<key alias="xmlDataIntegrityCheckMembers">Участники - всего в XML: %0%, всего: %1%, с ошибками: %2%</key>
|
||||
<key alias="xmlDataIntegrityCheckMedia">Медиа - всего в XML: %0%, всего: %1%Б с ошибками: %2%</key>
|
||||
<key alias="xmlDataIntegrityCheckContent">Содержимое - всего в XML: %0%, всего опубликовано: %1%, с ошибками: %2%</key>
|
||||
|
||||
<key alias="healthCheckInvalidUrl">Ошибка проверки адреса URL %0% - '%1%'</key>
|
||||
|
||||
<key alias="httpsCheckValidCertificate">Сертификат Вашего веб-сайта отмечен как проверенный.</key>
|
||||
<key alias="httpsCheckInvalidCertificate">Ошибка проверки сертификата: '%0%'</key>
|
||||
<key alias="httpsCheckIsCurrentSchemeHttps">Сейчас Вы %0% просматриваете сайт, используя протокол HTTPS.</key>
|
||||
<key alias="httpsCheckConfigurationRectifyNotPossible">Параметр 'umbracoUseSSL' в секции 'appSetting' установлен в 'false' в файле web.config. Если Вам необходим доступ к сайту по протоколу HTTPS, нужно установить данный параметр в 'true'.</key>
|
||||
<key alias="httpsCheckConfigurationCheckResult">Параметр 'umbracoUseSSL' в секции 'appSetting' в файле установлен в '%0%', значения cookies %1% маркированы как безопасные.</key>
|
||||
<key alias="httpsCheckEnableHttpsError">Невозможно обновить значение параметра 'umbracoUseSSL' в файле web.config. Ошибка: %0%</key>
|
||||
|
||||
<!-- The following keys don't get tokens passed in -->
|
||||
<key alias="httpsCheckEnableHttpsButton">Разрешить HTTPS</key>
|
||||
<key alias="httpsCheckEnableHttpsDescription">Устанавливает значение параметра 'umbracoSSL' в 'true' в секции 'appSettings' файла web.config.</key>
|
||||
<key alias="httpsCheckEnableHttpsSuccess">Параметр 'umbracoUseSSL' в секции 'appSetting' файла web.config теперь установлен в 'true', значения cookies будут промаркированы как безопасные.</key>
|
||||
|
||||
<key alias="rectifyButton">Исправить</key>
|
||||
<key alias="cannotRectifyShouldNotEqual">Невозможно исправление по результату проверки значения на 'ShouldNotEqual'.</key>
|
||||
<key alias="cannotRectifyShouldEqualWithValue">Невозможно исправление по результату проверки значения на 'ShouldEqual' с предоставленным значением.</key>
|
||||
<key alias="valueToRectifyNotProvided">Значение для исправления не предоставлено.</key>
|
||||
|
||||
<key alias="compilationDebugCheckSuccessMessage">Режим компиляции с отладкой выключен.</key>
|
||||
<key alias="compilationDebugCheckErrorMessage">Режим компиляции с отладкой сейчас включен. Рекомендуется выключить перед размещением сайта в сети.</key>
|
||||
<key alias="compilationDebugCheckRectifySuccessMessage">Режим компиляции с отладкой успешно выключен.</key>
|
||||
|
||||
<key alias="traceModeCheckSuccessMessage">Режим трассировки выключен.</key>
|
||||
<key alias="traceModeCheckErrorMessage">Режим трассировки сейчас включен. Рекомендуется выключить перед размещением сайта в сети.</key>
|
||||
<key alias="traceModeCheckRectifySuccessMessage">Режим трассировки успешно выключен.</key>
|
||||
|
||||
<key alias="folderPermissionsCheckMessage">Все папки имеют корректно установленные параметры безопасности.</key>
|
||||
<!-- The following keys get these tokens passed in:
|
||||
0: Comma delimitted list of failed folder paths
|
||||
-->
|
||||
<key alias="requiredFolderPermissionFailed"><![CDATA[Не получен доступ для установки корректных параметров безопасности к следующим папкам: <strong>%0%</strong>.]]></key>
|
||||
<key alias="optionalFolderPermissionFailed"><![CDATA[Невозможно получить доступ для установки корректных параметров безопасности с целью корректного функционирования Umbraco к следующим папкам: <strong>%0%</strong>. Если в них не разрешена запись, не нужно предпринимать никаких действий.]]></key>
|
||||
|
||||
<key alias="filePermissionsCheckMessage">Все файлы имеют корректно установленные параметры безопасности.</key>
|
||||
<!-- The following keys get these tokens passed in:
|
||||
0: Comma delimitted list of failed folder paths
|
||||
-->
|
||||
<key alias="requiredFilePermissionFailed"><![CDATA[Не получен доступ для установки корректных параметров безопасности к следующим файлам: <strong>%0%</strong>.]]></key>
|
||||
<key alias="optionalFilePermissionFailed"><![CDATA[Невозможно получить доступ для установки корректных параметров безопасности с целью корректного функционирования Umbraco к следующим файлам: <strong>%0%</strong>. Если в них не разрешена запись, не нужно предпринимать никаких действий.]]></key>
|
||||
|
||||
<key alias="clickJackingCheckHeaderFound"><![CDATA[Был обнаружен заголовок или мета-тэг <strong>X-Frame-Options</strong>, использующийся для управления возможностью помещать сайт в IFRAME на другом сайте.]]></key>
|
||||
<key alias="clickJackingCheckHeaderNotFound"><![CDATA[Заголовок или мета-тэг <strong>X-Frame-Options</strong>, использующийся для управления возможностью помещать сайт в IFRAME на другом сайте, не обнаружен.]]></key>
|
||||
<key alias="clickJackingSetHeaderInConfigDescription">Добавляет значение в секцию 'httpProtocol/customHeaders' файла web.config, препятствующее возможному использованию этого сайта внутри IFRAME на другом сайте.</key>
|
||||
<key alias="clickJackingSetHeaderInConfigSuccess">Значение, добавляющее заголовок, препятствующий использованию этого сайта внутри IFRAME другого сайта, успешно добавлено в файл web.config.</key>
|
||||
|
||||
<key alias="setHeaderInConfig">Установить заголовок в файле конфигурации</key>
|
||||
<key alias="setHeaderInConfigError">Невозможно обновить файл web.config. Ошибка: %0%</key>
|
||||
|
||||
<key alias="noSniffCheckHeaderFound"><![CDATA[Заголовок или мета-тэг <strong>X-Content-Type-Options</strong>, использующиеся для защиты от MIME-уязвимостей, обнаружены.]]></key>
|
||||
<key alias="noSniffCheckHeaderNotFound"><![CDATA[Заголовок или мета-тэг <strong>X-Content-Type-Options</strong>, использующиеся для защиты от MIME-уязвимостей, не найдены.]]></key>
|
||||
<key alias="noSniffSetHeaderInConfigDescription">Добавляет значение в секцию httpProtocol/customHeaders файла web.config, препятствующее использованию MIME-уязвимостей.</key>
|
||||
<key alias="noSniffSetHeaderInConfigSuccess">Значение, добавляющее заголовок, препятствующий использованию MIME-уязвимостей, успешно добавлено в файл web.config.</key>
|
||||
|
||||
<key alias="hSTSCheckHeaderFound"><![CDATA[Заголовок <strong>Strict-Transport-Security</strong>, известный также как HSTS-header, обнаружен.]]></key>
|
||||
<key alias="hSTSCheckHeaderNotFound"><![CDATA[Заголовок <strong>Strict-Transport-Security</strong> не найден.]]></key>
|
||||
<key alias="hSTSSetHeaderInConfigDescription">Добавляет заголовок 'Strict-Transport-Security' и его значение 'max-age=10886400; preload' в секцию httpProtocol/customHeaders файла web.config. Применяйте этот способ только в случае, если доступ к Вашим сайтам будет осуществляться по протоколу https как минимум ближайшие 18 недель.</key>
|
||||
<key alias="hSTSSetHeaderInConfigSuccess">Заголовок HSTS-header успешно добавлен в файл web.config.</key>
|
||||
|
||||
<key alias="xssProtectionCheckHeaderFound"><![CDATA[Заголовок <strong>X-XSS-Protection</strong> обнаружен.]]></key>
|
||||
<key alias="xssProtectionCheckHeaderNotFound"><![CDATA[Заголовок <strong>X-XSS-Protection</strong> не найден.]]></key>
|
||||
<key alias="xssProtectionSetHeaderInConfigDescription">Добавляет заголовок 'X-XSS-Protection' и его значение '1; mode=block' в секцию httpProtocol/customHeaders файла web.config. </key>
|
||||
<key alias="xssProtectionSetHeaderInConfigSuccess">Заголовок X-XSS-Protection успешно добавлен в файл web.config.</key>
|
||||
|
||||
<!-- The following key get these tokens passed in:
|
||||
0: Comma delimitted list of headers found
|
||||
-->
|
||||
<key alias="excessiveHeadersFound"><![CDATA[Обнаружены следующие заголовки, позволяющие выяснить базовую технологию сайта: <strong>%0%</strong>.]]></key>
|
||||
<key alias="excessiveHeadersNotFound">Заголовки, позволяющие выяснить базовую технологию сайта, не обнаружены.</key>
|
||||
|
||||
<key alias="smtpMailSettingsNotFound">В файле Web.config, не обнаружено параметров работы с отправкой электронной почты (секция 'system.net/mailsettings').</key>
|
||||
<key alias="smtpMailSettingsHostNotConfigured">В файле Web.config в секции 'system.net/mailsettings' не обнаружены настройки почтового хоста.</key>
|
||||
<key alias="smtpMailSettingsConnectionSuccess">Параметры отправки электронной почты (SMTP) настроены корректно, сервис работает как ожидается.</key>
|
||||
<key alias="smtpMailSettingsConnectionFail">Сервер SMTP сконфигурирован на использование хоста '%0%' на порту '%1%', который в настоящее время недоступен. Пожалуйста, убедитесь, что настройки SMTP в файле Web.config в секции 'system.net/mailsettings' верны.</key>
|
||||
|
||||
<key alias="notificationEmailsCheckSuccessMessage"><![CDATA[Адрес для отправки уведомлений установлен в <strong>%0%</strong>.]]></key>
|
||||
<key alias="notificationEmailsCheckErrorMessage"><![CDATA[Адрес для отправки уведомлений все еще установлен в значение по-умолчанию <strong>%0%</strong>.]]></key>
|
||||
<key alias="scheduledHealthCheckEmailBody"><![CDATA[<html><body><p>Зафиксированы следующие результаты автоматической проверки состояния Umbraco по расписанию, запущенной на %0% в %1%:</p>%2%</body></html>]]></key>
|
||||
<key alias="scheduledHealthCheckEmailSubject">Результат проверки состояния Umbraco</key>
|
||||
</area>
|
||||
<area alias="help">
|
||||
<key alias="goTo">перейти к</key>
|
||||
<key alias="helpTopicsFor">Разделы справки для</key>
|
||||
<key alias="videoChaptersFor">Обучающие видео для</key>
|
||||
<key alias="theBestUmbracoVideoTutorials">Лучшие обучающие видео-курсы по Umbraco</key>
|
||||
</area>
|
||||
<area alias="imagecropper">
|
||||
@@ -909,9 +818,7 @@
|
||||
<p>Пожалуйста, не волнуйтесь, ни одной строки Вашей базы данных
|
||||
не будет потеряно при данной операции, и после ее завершения все будет работать!</p>
|
||||
]]></key>
|
||||
<key alias="databaseUpgradeDone">
|
||||
<![CDATA[Ваша база данных успешно обновлена до последней версии %0%.<br/>Нажмите <strong>Далее</strong> для продолжения. ]]>
|
||||
</key>
|
||||
<key alias="databaseUpgradeDone"><![CDATA[Ваша база данных успешно обновлена до последней версии %0%.<br/>Нажмите <strong>Далее</strong> для продолжения. ]]></key>
|
||||
<key alias="databaseUpToDate"><![CDATA[Указанная Вами база данных находится в актуальном состоянии. Нажмите кнопку <strong>Далее</strong> для продолжения работы мастера настроек]]></key>
|
||||
<key alias="defaultUserChangePass"><![CDATA[<strong>Пароль пользователя по-умолчанию необходимо сменить!</strong>]]></key>
|
||||
<key alias="defaultUserDisabled"><![CDATA[<strong>Пользователь по-умолчанию заблокирован или не имеет доступа к Umbraco!</strong></p><p>Не будет предпринято никаких дальнейших действий. Нажмите кнопку <strong>Далее</strong> для продолжения.]]></key>
|
||||
@@ -1005,7 +912,6 @@
|
||||
</area>
|
||||
<area alias="login">
|
||||
<key alias="bottomText"><![CDATA[<p style="text-align:right;">© 2001 - %0% <br /><a href="http://umbraco.com" style="text-decoration: none" target="_blank">umbraco.com</a></p>]]></key>
|
||||
<key alias="greeting0">Сегодня же выходной!</key>
|
||||
<key alias="greeting1">Понедельник — день тяжелый...</key>
|
||||
<key alias="greeting2">Вот уже вторник...</key>
|
||||
<key alias="greeting3">Берегите окружающую среду</key>
|
||||
@@ -1023,8 +929,7 @@
|
||||
<key alias="signInWith">Войти с помощью</key>
|
||||
<key alias="resetCodeExpired">Ссылка, по которой Вы попали сюда, неверна или устарела</key>
|
||||
<key alias="resetPasswordEmailCopySubject">Umbraco: сброс пароля</key>
|
||||
<key alias="resetPasswordEmailCopyFormat">
|
||||
<![CDATA[
|
||||
<key alias="resetPasswordEmailCopyFormat"><![CDATA[
|
||||
<html>
|
||||
<head>
|
||||
<meta name='viewport' content='width=device-width'>
|
||||
@@ -1104,8 +1009,7 @@
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
</area>
|
||||
<area alias="main">
|
||||
<key alias="dashboard">Панель управления</key>
|
||||
@@ -1115,28 +1019,24 @@
|
||||
<area alias="media">
|
||||
<key alias="clickToUpload">Нажмите, чтобы загрузить</key>
|
||||
<key alias="disallowedFileType">Невозможна загрузка этого файла, этот тип файлов не разрешен для загрузки</key>
|
||||
<key alias="dropFilesHere">Перетащите файлы сюда...</key>
|
||||
<key alias="urls">Ссылка на файл</key>
|
||||
<key alias="orClickHereToUpload">или нажмите сюда, чтобы выбрать файлы</key>
|
||||
<key alias="onlyAllowedFiles">Разрешены только типы файлов: </key>
|
||||
<key alias="maxFileSize">Максимально допустимый размер файла: </key>
|
||||
<key alias="mediaRoot">Начальный узел медиа</key>
|
||||
</area>
|
||||
<area alias="mediaPicker">
|
||||
<key alias="pickedTrashedItem">Выбран медиа-элемент, который в настоящее время удален или находится в корзине</key>
|
||||
<key alias="pickedTrashedItems">Выбраны медиа-элементы, которые в настоящее время удалены или находятся в корзине</key>
|
||||
<key alias="deletedItem">Удаленный элемент</key>
|
||||
<key alias="pickedTrashedItem">Выбран медиа-элемент, который в настоящее время удален или находится в корзине</key>
|
||||
<key alias="pickedTrashedItems">Выбраны медиа-элементы, которые в настоящее время удалены или находятся в корзине</key>
|
||||
</area>
|
||||
<area alias="member">
|
||||
<key alias="createNewMember">Создать нового участника</key>
|
||||
<key alias="allMembers">Все участники</key>
|
||||
</area>
|
||||
<area alias="modelsBuilder">
|
||||
<key alias="buildingModels">Построение моделей</key>
|
||||
<key alias="waitingMessage">это может занять некоторое время, пожалуйста, подождите</key>
|
||||
<key alias="modelsGenerated">Модели построены</key>
|
||||
<key alias="modelsGeneratedError">Модели не могут быть построены</key>
|
||||
<key alias="modelsExceptionInUlog">Процесс построения моделей завершился ошибкой, подробности в системном журнале Umbraco</key>
|
||||
<key alias="buildingModels">Построение моделей</key>
|
||||
<key alias="waitingMessage">это может занять некоторое время, пожалуйста, подождите</key>
|
||||
<key alias="modelsGenerated">Модели построены</key>
|
||||
<key alias="modelsGeneratedError">Модели не могут быть построены</key>
|
||||
<key alias="modelsExceptionInUlog">Процесс построения моделей завершился ошибкой, подробности в системном журнале Umbraco</key>
|
||||
</area>
|
||||
<area alias="moveOrCopy">
|
||||
<key alias="choose">Выберите страницу...</key>
|
||||
@@ -1166,10 +1066,8 @@
|
||||
Удачи!
|
||||
|
||||
Генератор уведомлений Umbraco.
|
||||
]]>
|
||||
</key>
|
||||
<key alias="mailBodyHtml">
|
||||
<![CDATA[
|
||||
]]></key>
|
||||
<key alias="mailBodyHtml"><![CDATA[
|
||||
<html>
|
||||
<head>
|
||||
<meta name='viewport' content='width=device-width'>
|
||||
@@ -1246,8 +1144,7 @@
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="mailSubject">[%0%] Уведомление об операции %1% над документом %2%</key>
|
||||
<key alias="notifications">Уведомления</key>
|
||||
</area>
|
||||
@@ -1380,7 +1277,7 @@
|
||||
<key alias="contentPublishedFailedByEvent"><![CDATA[
|
||||
Документ %0% не может быть опубликован. Операцию отменил установленный в системе пакет дополнений.
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedExpired"><![CDATA[
|
||||
<key alias="contentPublishedFailedExpired"><![CDATA[
|
||||
Документ %0% не может быть опубликован, так как текущая информация в нем устарела.
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedByParent"><![CDATA[
|
||||
@@ -1445,7 +1342,6 @@
|
||||
<key alias="editscript">Править файл скрипта</key>
|
||||
</area>
|
||||
<area alias="sections">
|
||||
<key alias="analytics">Аналитика</key>
|
||||
<key alias="concierge">Смотритель</key>
|
||||
<key alias="content">Содержимое</key>
|
||||
<key alias="courier">Курьер</key>
|
||||
@@ -1466,11 +1362,9 @@
|
||||
<key alias="asAContentMasterType">в качестве родительского типа. Вкладки родительского типа не показаны и могут быть изменены непосредственно в родительском типе</key>
|
||||
<key alias="contentTypeEnabled">Родительский тип контента разрешен</key>
|
||||
<key alias="contentTypeUses">Данный тип контента использует</key>
|
||||
<key alias="createMatchingTemplate">Создать шаблон для документов этого типа</key>
|
||||
<key alias="defaulttemplate">Шаблон по-умолчанию</key>
|
||||
<key alias="dictionary editor egenskab">Словарная статья</key>
|
||||
<key alias="importDocumentTypeHelp">Чтобы импортировать тип документа, найдите файл ".udt" на своем компьютере, нажав на кнопку "Обзор", затем нажмите "Импортировать" (на следующем экране будет запрошено подтверждение для этой операции).</key>
|
||||
<key alias="masterDocumentType">Родительский тип документа</key>
|
||||
<key alias="newtabname">Заголовок новой вкладки</key>
|
||||
<key alias="nodetype">Тип узла (документа)</key>
|
||||
<key alias="noPropertiesDefinedOnTab">Для данной вкладки не определены свойства. Кликните по ссылке "Click here to add a new property" сверху, чтобы создать новое свойство.</key>
|
||||
@@ -1489,24 +1383,18 @@
|
||||
<key alias="addTemplate">Добавить шаблон</key>
|
||||
<key alias="addChildNode">Добавить дочерний узел</key>
|
||||
<key alias="addChild">Добавить дочерний</key>
|
||||
|
||||
<key alias="editDataType">Изменить тип данных</key>
|
||||
|
||||
<key alias="navigateSections">Навигация по разделам</key>
|
||||
|
||||
<key alias="shortcut">Ярлыки</key>
|
||||
<key alias="showShortcuts">показать ярлыки</key>
|
||||
|
||||
<key alias="toggleListView">В формате списка</key>
|
||||
<key alias="toggleAllowAsRoot">Разрешить в качестве корневого</key>
|
||||
|
||||
<key alias="commentLine">Закомментировать/раскомментировать строки</key>
|
||||
<key alias="removeLine">Удалить строку</key>
|
||||
<key alias="copyLineUp">Копировать строки вверх</key>
|
||||
<key alias="copyLineDown">Копировать строки вниз</key>
|
||||
<key alias="moveLineUp">Переместить строки вверх</key>
|
||||
<key alias="moveLineDown">Переместить строки вниз</key>
|
||||
|
||||
<key alias="generalHeader">Общее</key>
|
||||
<key alias="editorHeader">Редактор</key>
|
||||
</area>
|
||||
@@ -1529,7 +1417,6 @@
|
||||
<key alias="contentTypeTabDeletedText">Вкладка с идентификатором (id): %0% удалена</key>
|
||||
<key alias="contentUnpublished">Документ скрыт (публикация отменена)</key>
|
||||
<key alias="cssErrorHeader">Стиль CSS не сохранен</key>
|
||||
<key alias="cssErrorText">При сохранении файла произошла ошибка.</key>
|
||||
<key alias="cssSavedHeader">Стиль CSS сохранен</key>
|
||||
<key alias="cssSavedText">Стиль CSS сохранен без ошибок</key>
|
||||
<key alias="dataTypeSaved">Тип данных сохранен</key>
|
||||
@@ -1568,14 +1455,6 @@
|
||||
<key alias="partialViewSavedHeader">Представление сохранено</key>
|
||||
<key alias="partialViewSavedText">Представление сохранено без ошибок</key>
|
||||
<key alias="permissionsSavedFor">Права доступа сохранены для</key>
|
||||
<key alias="pythonErrorHeader">Cкрипт Python не сохранен</key>
|
||||
<key alias="pythonErrorText">Cкрипт Python не может быть сохранен в связи с ошибками</key>
|
||||
<key alias="pythonSavedHeader">Cкрипт Python сохранен</key>
|
||||
<key alias="pythonSavedText">Cкрипт Python сохранен без ошибок</key>
|
||||
<key alias="scriptErrorHeader">Скрипт не сохранен</key>
|
||||
<key alias="scriptErrorText">При сохранении файла скрипта произошла ошибка</key>
|
||||
<key alias="scriptSavedHeader">Скрипт сохранен</key>
|
||||
<key alias="scriptSavedText">Файл скрипта сохранен без ошибок</key>
|
||||
<key alias="templateErrorHeader">Шаблон не сохранен</key>
|
||||
<key alias="templateErrorText">Пожалуйста, проверьте, что нет двух шаблонов с одним и тем же алиасом (названием)</key>
|
||||
<key alias="templateSavedHeader">Шаблон сохранен</key>
|
||||
@@ -1585,18 +1464,12 @@
|
||||
<key alias="deleteUserGroupsSuccess">Удалено %0% групп пользователей</key>
|
||||
<key alias="deleteUserGroupSuccess">'%0%' была удалена</key>
|
||||
<key alias="enableUsersSuccess">Активировано %0% пользователей</key>
|
||||
<key alias="enableUsersError">При активации пользователей произошла ошибка</key>
|
||||
<key alias="disableUsersSuccess">Заблокировано %0% пользователей</key>
|
||||
<key alias="disableUsersError">При блокировке пользователей произошла ошибка</key>
|
||||
<key alias="enableUserSuccess">'%0%' сейчас активирован</key>
|
||||
<key alias="enableUserError">При активации пользователя произошла ошибка</key>
|
||||
<key alias="disableUserSuccess">'%0%' сейчас заблокирован</key>
|
||||
<key alias="disableUserError">При блокировке пользователя произошла ошибка</key>
|
||||
<key alias="setUserGroupOnUsersSuccess">Группы пользователей установлены</key>
|
||||
<key alias="unlockUsersSuccess">Разблокировано %0% пользователей</key>
|
||||
<key alias="unlockUsersError">При разблокировке пользователей произошла ошибка</key>
|
||||
<key alias="unlockUserSuccess">'%0%' сейчас разблокирован</key>
|
||||
<key alias="unlockUserError">При разблокировке пользователя произошла ошибка</key>
|
||||
<key alias="memberExportedSuccess">Данные участника успешно экспортированы в файл</key>
|
||||
<key alias="memberExportedError">Во время экспортирования данных участника произошла ошибка</key>
|
||||
</area>
|
||||
@@ -1610,82 +1483,60 @@
|
||||
</area>
|
||||
<area alias="template">
|
||||
<key alias="edittemplate">Изменить шаблон</key>
|
||||
|
||||
<key alias="insertSections">Секции</key>
|
||||
<key alias="insertContentArea">Вставить контент-область</key>
|
||||
<key alias="insertContentAreaPlaceHolder">Вставить контейнер (placeholder)</key>
|
||||
|
||||
<key alias="insert">Вставить</key>
|
||||
<key alias="insertDesc">Выберите, что хотите вставить в шаблон</key>
|
||||
|
||||
<key alias="insertDictionaryItem">Статью словаря</key>
|
||||
<key alias="insertDictionaryItemDesc">Статья словаря - это контейнер для части текста, переводимой на разные языки, это позволяет упростить создание многоязычных сайтов.</key>
|
||||
|
||||
<key alias="insertMacro">Макрос</key>
|
||||
<key alias="insertMacroDesc">
|
||||
Макросы - это настраиваемые компоненты, которые хорошо подходят для
|
||||
реализации переиспользуемых блоков, (особенно, если необходимо менять их внешний вид и/или поведение при помощи параметров)
|
||||
таких как галереи, формы, списки и т.п.
|
||||
</key>
|
||||
|
||||
<key alias="insertPageField">Значение поля</key>
|
||||
<key alias="insertPageFieldDesc">Отображает значение указанного поля данных текущей страницы,
|
||||
с возможностью указать альтернативные поля и/или подстановку константы.
|
||||
</key>
|
||||
|
||||
<key alias="insertPartialView">Частичное представление</key>
|
||||
<key alias="insertPartialViewDesc">
|
||||
Частичное представление - это шаблон в отдельном файле, который может быть вызван для отображения внутри
|
||||
другого шаблона, хорошо подходит для реализации переиспользуемых фрагментов разметки или для разбиения сложных шаблонов на составные части.
|
||||
</key>
|
||||
|
||||
<key alias="mastertemplate">Мастер-шаблон</key>
|
||||
<key alias="noMastertemplate">Без мастер-шаблона</key>
|
||||
<key alias="noMaster">Не выбран</key>
|
||||
|
||||
<key alias="renderBody">Вставить дочерний шаблон</key>
|
||||
<key alias="renderBodyDesc">
|
||||
<![CDATA[
|
||||
<key alias="renderBodyDesc"><![CDATA[
|
||||
Отображает содержимое дочернего шаблона, при помощи вставки конструкции
|
||||
<code>@RenderBody()</code> в выбранном месте.
|
||||
]]>
|
||||
</key>
|
||||
|
||||
]]></key>
|
||||
<key alias="defineSection">Определить именованную секцию</key>
|
||||
<key alias="defineSectionDesc">
|
||||
<![CDATA[
|
||||
<key alias="defineSectionDesc"><![CDATA[
|
||||
Определяет специальную область шаблона как именованную секцию путем оборачивания ее в конструкцию
|
||||
<code>@section { ... }</code>. Такая секци может быть отображена в нужном месте родительского шаблона
|
||||
при помощи конструкции <code>@RenderSection</code>.
|
||||
]]>
|
||||
</key>
|
||||
|
||||
]]></key>
|
||||
<key alias="renderSection">Вставить именованную секцию</key>
|
||||
<key alias="renderSectionDesc">
|
||||
<![CDATA[
|
||||
<key alias="renderSectionDesc"><![CDATA[
|
||||
Отображает содержимое именованной области дочернего шаблона, при помощи вставки конструкции <code>@RenderSection(name)</code>.
|
||||
Таким образом из дочернего шаблона отображается содержимое внутри конструкции <code>@section [name]{ ... }</code>.
|
||||
]]>
|
||||
</key>
|
||||
|
||||
]]></key>
|
||||
<key alias="sectionName">Название секции</key>
|
||||
<key alias="sectionMandatory">Секция обязательна</key>
|
||||
<key alias="sectionMandatoryDesc">
|
||||
Если секция помечена как обязательная, то дочерний шаблон должен обязательно содержать ее определение <code>@section</code>, в противном случае генерируется ошибка.
|
||||
</key>
|
||||
|
||||
</key>
|
||||
<key alias="queryBuilder">Генератор запросов</key>
|
||||
<key alias="buildQuery">Построить запрос</key>
|
||||
<key alias="itemsReturned">элементов в результате, за</key>
|
||||
|
||||
<key alias="iWant">Мне нужны</key>
|
||||
<key alias="iWant">Мне нужны</key>
|
||||
<key alias="allContent">все документы</key>
|
||||
<key alias="contentOfType">документы типа "%0%"</key>
|
||||
<key alias="contentOfType">документы типа "%0%"</key>
|
||||
<key alias="from">из</key>
|
||||
<key alias="websiteRoot">всего сайта</key>
|
||||
<key alias="where">где</key>
|
||||
<key alias="and">и</key>
|
||||
|
||||
<key alias="is">равна</key>
|
||||
<key alias="isNot">не равна</key>
|
||||
<key alias="before">до</key>
|
||||
@@ -1700,16 +1551,13 @@
|
||||
<key alias="greaterThanEqual">больше или равно</key>
|
||||
<key alias="lessThan">меньше, чем</key>
|
||||
<key alias="lessThanEqual">меньше или равно</key>
|
||||
|
||||
<key alias="id">Id</key>
|
||||
<key alias="name">Название</key>
|
||||
<key alias="createdDate">Создан</key>
|
||||
<key alias="lastUpdatedDate">Обновлен</key>
|
||||
|
||||
<key alias="orderBy">сортировать</key>
|
||||
<key alias="ascending">по возрастанию</key>
|
||||
<key alias="descending">по убыванию</key>
|
||||
|
||||
<key alias="descending">по убыванию</key>
|
||||
<key alias="template">Шаблон</key>
|
||||
</area>
|
||||
<area alias="templateEditor">
|
||||
@@ -1755,15 +1603,7 @@
|
||||
<key alias="characters_left">символов осталось</key>
|
||||
</area>
|
||||
<area alias="translation">
|
||||
<key alias="assignedTasks">Задачи, назначенные Вам</key>
|
||||
<key alias="assignedTasksHelp"><![CDATA[Список, приведенный ниже, содержит задачи перевода,
|
||||
<strong>назначенные Вам</strong>. Для того, чтобы просмотреть подробные сведения,
|
||||
включая комментарии, нажмите кнопку "Подробно" или просто кликните имя страницы. Вы также можете скачать XML-версию страницы нажав ссылку "Загрузить Xml".<br/>Чтобы закрыть задачу перевода, следует перейти к подробному просмотру и нажать там кнопку "Закрыть".
|
||||
]]></key>
|
||||
<key alias="closeTask">Закрыть задачу</key>
|
||||
<key alias="details">Подробности перевода</key>
|
||||
<key alias="downloadAllAsXml">Загрузить все задачи по переводу в виде xml</key>
|
||||
<key alias="downloadTaskAsXml">Загрузить Xml</key>
|
||||
<key alias="DownloadXmlDTD">Загрузить xml DTD</key>
|
||||
<key alias="fields">Поля</key>
|
||||
<key alias="includeSubpages">Включить дочерние документы</key>
|
||||
@@ -1782,18 +1622,9 @@
|
||||
|
||||
Генератор уведомлений Umbraco.
|
||||
]]></key>
|
||||
<key alias="mailSubject">[%0%] Задание по переводу %1%</key>
|
||||
<key alias="noLanguageSelected">Пожалуйста, выберите язык, на который нужно перевести документ(ы)</key>
|
||||
<key alias="noTranslators">Пользователей-переводчиков не обнаружено. Пожалуйста, создайте пользователя с ролью переводчика, перед тем как отсылать содержимое на перевод</key>
|
||||
<key alias="ownedTasks">Созданные Вами задания</key>
|
||||
<key alias="ownedTasksHelp"><![CDATA[Ниже приведен список задач, <strong>созданных Вами</strong>.
|
||||
Чтобы увидеть подробные данные, включая комментарии, нажмите кнопку "Подробно" или просто кликните название страницы.
|
||||
Вы также можете загрузить XML-версию страницы, нажав на ссылку "Загрузить Xml". Чтобы завершить задачу перевода, Вам следует перейти к подробному просмотру и нажать там кнопку "Закрыть".
|
||||
]]></key>
|
||||
<key alias="pageHasBeenSendToTranslation">Документ '%0%' был отправлен на перевод</key>
|
||||
<key alias="sendToTranslate">Отправить документ '%0%' на перевод</key>
|
||||
<key alias="taskAssignedBy">Задание назначил</key>
|
||||
<key alias="taskOpened">Задача создана</key>
|
||||
<key alias="totalWords">Всего слов</key>
|
||||
<key alias="translateTo">Перевести на</key>
|
||||
<key alias="translationDone">Перевод завершен.</key>
|
||||
@@ -1804,7 +1635,6 @@
|
||||
<key alias="uploadTranslationXml">Загрузить переведенный xml</key>
|
||||
</area>
|
||||
<area alias="treeHeaders">
|
||||
<key alias="analytics">Аналитика</key>
|
||||
<key alias="cacheBrowser">Обзор кэша</key>
|
||||
<key alias="content">Содержимое</key>
|
||||
<key alias="contentBlueprints">Шаблоны содержимого</key>
|
||||
@@ -1829,7 +1659,6 @@
|
||||
<key alias="packages">Пакеты дополнений</key>
|
||||
<key alias="partialViews">Частичные представления</key>
|
||||
<key alias="partialViewMacros">Файлы макросов</key>
|
||||
<key alias="python">Скрипты Python</key>
|
||||
<key alias="relationTypes">Типы связей</key>
|
||||
<key alias="repositories">Установить из репозитория</key>
|
||||
<key alias="runway">Установить Runway</key>
|
||||
@@ -1876,10 +1705,7 @@
|
||||
<key alias="groupsHelp">Добавьте пользователя в группу(ы) для задания прав доступа</key>
|
||||
<key alias="invite">Пригласить</key>
|
||||
<key alias="inviteEmailCopySubject">Приглашение в панель администрирования Umbraco</key>
|
||||
<key alias="inviteEmailCopyFormat">
|
||||
<![CDATA[<html><body><p>Здравствуйте, %0%,<br><br>Вы были приглашены пользователем %1%, и Вам предоставлен доступ в панель администрирования Umbraco.</p><p>Сообщение от %1%: <em>%2%</em></p><p>Перейдите по <a href="%3%" target="_blank">этой ссылке</a>, чтобы принять приглашение.</p><p><small>Если Вы не имеете возможности перейти по ссылке, скопируйте нижеследующий текст ссылки и вставьте в адресную строку Вашего браузера.<br/><br/>%3%</small></p></body></html>]]>
|
||||
|
||||
<![CDATA[
|
||||
<key alias="inviteEmailCopyFormat"><![CDATA[<html><body><p>Здравствуйте, %0%,<br><br>Вы были приглашены пользователем %1%, и Вам предоставлен доступ в панель администрирования Umbraco.</p><p>Сообщение от %1%: <em>%2%</em></p><p>Перейдите по <a href="%3%" target="_blank">этой ссылке</a>, чтобы принять приглашение.</p><p><small>Если Вы не имеете возможности перейти по ссылке, скопируйте нижеследующий текст ссылки и вставьте в адресную строку Вашего браузера.<br/><br/>%3%</small></p></body></html>]]><![CDATA[
|
||||
<html>
|
||||
<head>
|
||||
<meta name='viewport' content='width=device-width'>
|
||||
@@ -1970,8 +1796,7 @@
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="inviteAnotherUser">Пригласить еще одного пользователя</key>
|
||||
<key alias="inviteUser">Пригласить пользователя</key>
|
||||
<key alias="inviteUserHelp">Пригласите новых пользователей, которым нужен доступ к административной панели Umbraco. Приглашенному будет направлено электронное письмо с инструкциями по доступу к Umbraco.</key>
|
||||
@@ -2017,28 +1842,15 @@
|
||||
<key alias="sectionsHelp">Разделы, доступные пользователю</key>
|
||||
<key alias="noStartNode">Начальный узел не задан</key>
|
||||
<key alias="noStartNodes">Начальные узлы не заданы</key>
|
||||
<key alias="sortNameAscending">Имя (А-Я)</key>
|
||||
<key alias="sortNameDescending">Имя (Я-А)</key>
|
||||
<key alias="sortCreateDateDescending">Сначала новые</key>
|
||||
<key alias="sortCreateDateAscending">Сначала старые</key>
|
||||
<key alias="sortLastLoginDateDescending">Недавно заходившие</key>
|
||||
<key alias="stateActive">Активные</key>
|
||||
<key alias="stateAll">Все</key>
|
||||
<key alias="stateDisabled">Отключенные</key>
|
||||
<key alias="stateLockedOut">Заблокированные</key>
|
||||
<key alias="stateInvited">Приглашенные</key>
|
||||
<key alias="startnode">Начальный узел содержимого</key>
|
||||
<key alias="startnodehelp">Можно ограничить доступ к дереву содержимого (какой-либо его части), задав начальный узел</key>
|
||||
<key alias="startnodes">Начальные узлы содержимого</key>
|
||||
<key alias="startnodeshelp">Можно ограничить доступ к дереву содержимого (каким-либо его частям), задав перечень начальных узлов</key>
|
||||
<key alias="userCreated">Был создан</key>
|
||||
<key alias="userCreatedSuccessHelp">Новый первичный пароль успешно сгенерирован. Для входа используйте пароль, приведенный ниже.</key>
|
||||
<key alias="translator">Переводчик</key>
|
||||
<key alias="updateDate">Время последнего изменения</key>
|
||||
<key alias="username">Имя пользователя</key>
|
||||
<key alias="usergroup">Группа пользователей</key>
|
||||
<key alias="userGroupPermissions">Права доступа для группы</key>
|
||||
<key alias="userGroups">Группы пользователей</key>
|
||||
<key alias="userInvited"> был приглашен</key>
|
||||
<key alias="userInvitedSuccessHelp">Новому пользователю было отправлено приглашение, в котором содержатся инструкции для входа в панель Umbraco.</key>
|
||||
<key alias="userinviteWelcomeMessage">Здравствуйте и добро пожаловать в Umbraco! Все будет готово в течении пары минут, нам лишь нужно задать Ваш пароль для входа и добавить аватар.</key>
|
||||
@@ -2065,4 +1877,4 @@
|
||||
<key alias="invalidNumber">Не является числом</key>
|
||||
<key alias="invalidEmail">неверный формат email-адреса</key>
|
||||
</area>
|
||||
</language>
|
||||
</language>
|
||||
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<language alias="sv" intName="Swedish" localName="Svenska" lcid="29" culture="sv-SE">
|
||||
<creator>
|
||||
<name>The Umbraco community</name>
|
||||
@@ -85,7 +85,6 @@
|
||||
<key alias="saveAndSchedule">Spara och schemalägg</key>
|
||||
<key alias="saveToPublish">Spara och skicka för godkännande</key>
|
||||
<key alias="select">Välj</key>
|
||||
<key alias="selectCurrentFolder">Välj aktuell mapp</key>
|
||||
<key alias="showPage">Förhandsgranska</key>
|
||||
<key alias="showPageDisabled">Förhandsgranskning är avstängt på grund av att det inte finns någon mall tilldelad</key>
|
||||
<key alias="somethingElse">Ångra</key>
|
||||
@@ -190,27 +189,22 @@
|
||||
</area>
|
||||
<area alias="bulk">
|
||||
<key alias="done">Done</key>
|
||||
|
||||
<key alias="deletedItem">Deleted %0% item</key>
|
||||
<key alias="deletedItems">Deleted %0% items</key>
|
||||
<key alias="deletedItemOfItem">Deleted %0% out of %1% item</key>
|
||||
<key alias="deletedItemOfItems">Deleted %0% out of %1% items</key>
|
||||
|
||||
<key alias="publishedItem">Published %0% item</key>
|
||||
<key alias="publishedItems">Published %0% items</key>
|
||||
<key alias="publishedItemOfItem">Published %0% out of %1% item</key>
|
||||
<key alias="publishedItemOfItems">Published %0% out of %1% items</key>
|
||||
|
||||
<key alias="unpublishedItem">Unpublished %0% item</key>
|
||||
<key alias="unpublishedItems">Unpublished %0% items</key>
|
||||
<key alias="unpublishedItemOfItem">Unpublished %0% out of %1% item</key>
|
||||
<key alias="unpublishedItemOfItems">Unpublished %0% out of %1% items</key>
|
||||
|
||||
<key alias="movedItem">Moved %0% item</key>
|
||||
<key alias="movedItems">Moved %0% items</key>
|
||||
<key alias="movedItemOfItem">Moved %0% out of %1% item</key>
|
||||
<key alias="movedItemOfItems">Moved %0% out of %1% items</key>
|
||||
|
||||
<key alias="copiedItem">Copied %0% item</key>
|
||||
<key alias="copiedItems">Copied %0% items</key>
|
||||
<key alias="copiedItemOfItem">Copied %0% out of %1% item</key>
|
||||
@@ -267,18 +261,11 @@
|
||||
<key alias="displayName">Språknamn</key>
|
||||
</area>
|
||||
<area alias="editcontenttype">
|
||||
<key alias="allowAtRoot">Tillåt i roten</key>
|
||||
<key alias="allowAtRootDesc">Endast innehållstyper med denna markerad kan skapas i roten av innehåll samt media</key>
|
||||
<key alias="allowedchildnodetypes">Tillåtna typer för underliggande noder</key>
|
||||
<key alias="contenttypecompositions">Dokumenttypssammansättning</key>
|
||||
<key alias="create">Skapa</key>
|
||||
<key alias="createListView">Skapa en anpassad listvy</key>
|
||||
<key alias="currentListView">Aktuell listvy</key>
|
||||
<key alias="currentListViewDesc">Datatyp för markerad listvy</key>
|
||||
<key alias="deletetab">Ta bort flik</key>
|
||||
<key alias="description">Beskrivning</key>
|
||||
<key alias="hasListView">Aktivera listvy</key>
|
||||
<key alias="hasListViewDesc">Konfigurerar innehållet till att visa en sorterbar & sökbar lista av nodens barn, barnen kommer ej att visas i trädet.</key>
|
||||
<key alias="newtab">Ny flik</key>
|
||||
<key alias="removeListView">Radera anpassad listvy</key>
|
||||
<key alias="tab">Flik</key>
|
||||
@@ -315,12 +302,9 @@
|
||||
<key alias="contentTypeAliasAndNameNotNull">Du måste ange både alias och namn för den nya egenskapstypen!</key>
|
||||
<key alias="dissallowedMediaType">Filtypen är icke godkännd av administratören</key>
|
||||
<key alias="filePermissionsError">Ett fel upptäcktes i läsningen/skrivningen till den aktuella filen eller mappen</key>
|
||||
<key alias="missingPropertyEditorErrorMessage">Det finns ett konfigurationsfel med datatypen som används för denna egenskapen, vänligen undersök datatypen</key>
|
||||
<key alias="missingTitle">Du måste skriva en rubrik</key>
|
||||
<key alias="missingType">Du måste välja en typ</key>
|
||||
<key alias="pictureResizeBiggerThanOrg">Du kommer att göra bilden större än originalstorleken. Är du säker på att du vill fortsätta?</key>
|
||||
<key alias="pythonErrorHeader">Ett fel inträffade i pythonscriptet</key>
|
||||
<key alias="pythonErrorText">Pythonscriptet har inte sparats eftersom det innehåller ett eller flera fel.</key>
|
||||
<key alias="startNodeDoesNotExists">Startsidan har tagits bort, var vänlig kontakta administratören</key>
|
||||
<key alias="stylesMustMarkBeforeSelect">Du måste markera något innan du kan göra stiländringar</key>
|
||||
<key alias="stylesNoStylesOnPage">Det finns inga tillgängliga stilar</key>
|
||||
@@ -380,7 +364,6 @@
|
||||
<key alias="logoff">Logga ut</key>
|
||||
<key alias="logout">Logga ut</key>
|
||||
<key alias="macro">Makro</key>
|
||||
<key alias="more">Fler</key>
|
||||
<key alias="move">Flytta</key>
|
||||
<key alias="name">Namn</key>
|
||||
<key alias="new">Nytt</key>
|
||||
@@ -519,7 +502,6 @@
|
||||
</area>
|
||||
<area alias="login">
|
||||
<key alias="bottomText"><![CDATA[<p style="text-align:right;">© 2001 - %0% <br /><a href="http://umbraco.com" style="text-decoration: none" target="_blank">umbraco.com</a></p> ]]></key>
|
||||
<key alias="greeting0">Happy super Sunday</key>
|
||||
<key alias="greeting1">Happy manic Monday</key>
|
||||
<key alias="greeting2">Happy tremendous Tuesday</key>
|
||||
<key alias="greeting3">Happy wonderful Wednesday</key>
|
||||
@@ -537,7 +519,6 @@
|
||||
</area>
|
||||
<area alias="media">
|
||||
<key alias="clickToUpload">Klicka för att ladda upp</key>
|
||||
<key alias="dropFilesHere">Släpp dina filer här...</key>
|
||||
</area>
|
||||
<area alias="moveOrCopy">
|
||||
<key alias="choose">Välj sida ovan...</key>
|
||||
@@ -600,7 +581,6 @@
|
||||
<key alias="search">Skriv för att söka...</key>
|
||||
<key alias="username">Fyll i ditt lösenord</key>
|
||||
<key alias="enterTags">Skriv för att lägga till taggar (och tryck enter efter varje tagg)...</key>
|
||||
<key alias="usernamehint">Ditt användarnamn är vanligtvis din e-postadress</key>
|
||||
</area>
|
||||
<area alias="publicAccess">
|
||||
<key alias="paAdvanced">Rollbaserat lösenordsskydd</key>
|
||||
@@ -649,7 +629,7 @@
|
||||
<key alias="saveCrop">spara beskärning</key>
|
||||
<key alias="addCrop">Lägg till ny beskärning</key>
|
||||
</area>
|
||||
<area alias="rollback">
|
||||
<area alias="rollback">
|
||||
<key alias="currentVersion">Nuvarande version</key>
|
||||
<key alias="diffHelp"><![CDATA[Här visas skillnaderna mellan nuvarande version och vald version<br /><del>Röd</del> text kommer inte att synas i den valda versionen. , <ins>Grön betyder att den har tillkommit</ins>]]></key>
|
||||
<key alias="documentRolledBack">Dokumentet har återgått till en tidigare version</key>
|
||||
@@ -662,7 +642,6 @@
|
||||
<key alias="editscript">Redigera script</key>
|
||||
</area>
|
||||
<area alias="sections">
|
||||
<key alias="analytics">Analytics</key>
|
||||
<key alias="concierge">Concierge</key>
|
||||
<key alias="content">Innehåll</key>
|
||||
<key alias="courier">Courier</key>
|
||||
@@ -695,8 +674,6 @@
|
||||
<key alias="tab">Flik</key>
|
||||
<key alias="tabname">Fliknamn</key>
|
||||
<key alias="tabs">Flikar</key>
|
||||
<key alias="masterDocumentType">Huvuddokumenttyp</key>
|
||||
<key alias="createMatchingTemplate">Skapa matchande mall</key>
|
||||
</area>
|
||||
<area alias="sort">
|
||||
<key alias="sortOrder">Sort order</key>
|
||||
@@ -746,10 +723,6 @@
|
||||
<key alias="partialViewErrorText">Ett fel uppstod när filen sparades</key>
|
||||
<key alias="partialViewSavedHeader">Partial view sparad</key>
|
||||
<key alias="partialViewSavedText">Partial view sparad utan fel!</key>
|
||||
<key alias="pythonErrorHeader">Pythonscriptet har inte sparats</key>
|
||||
<key alias="pythonErrorText">Pythonscriptet kunde inte sparas på grund av ett fel</key>
|
||||
<key alias="pythonSavedHeader">Pythonscriptet har sparats</key>
|
||||
<key alias="pythonSavedText">Inga fel i pythonscriptet</key>
|
||||
<key alias="templateErrorHeader">Sidmallen har inte sparats</key>
|
||||
<key alias="templateErrorText">Kontrollera att du inte har två sidmallar med samma alias</key>
|
||||
<key alias="templateSavedHeader">Sidmallen har sparats</key>
|
||||
@@ -775,18 +748,13 @@
|
||||
<key alias="template">Sidmall</key>
|
||||
</area>
|
||||
<area alias="grid">
|
||||
<key alias="rte">Rich Text Editor</key>
|
||||
<key alias="media">Image</key>
|
||||
<key alias="macro">Macro</key>
|
||||
<key alias="embed">Embed</key>
|
||||
<key alias="headline">Headline</key>
|
||||
<key alias="quote">Quote</key>
|
||||
<key alias="insertControl">Lägg till</key>
|
||||
<key alias="chooseLayout">Choose layout</key>
|
||||
<key alias="addRows">Lägg till rad</key>
|
||||
<key alias="addElement">Add content</key>
|
||||
<key alias="dropElement">Drop content</key>
|
||||
<key alias="stylesApplied">Styles applied</key>
|
||||
<key alias="contentNotAllowed">Indholdet er ikke tilladt her</key>
|
||||
<key alias="contentAllowed">Indholdet er tilladt her</key>
|
||||
<key alias="clickToEmbed">Klicka för att lägga in</key>
|
||||
@@ -807,7 +775,6 @@
|
||||
<key alias="settingsDetails">Konfigurera vilka inställningar redaktörer kan ändra</key>
|
||||
<key alias="styles">Stilar</key>
|
||||
<key alias="stylesDetails">Konfigurera vilken styling redaktörer kan ändra</key>
|
||||
<key alias="settingDialogDetails">Inställningarna kommer bara att sparas om det inmatade json-konfigurationen är giltig</key>
|
||||
<key alias="allowAllEditors">Tillåt alla editors</key>
|
||||
<key alias="allowAllRowConfigurations">Tillåt alla rad- konfigurationer</key>
|
||||
</area>
|
||||
@@ -842,24 +809,14 @@
|
||||
<key alias="withTime">Ja, med tid. Separator:</key>
|
||||
</area>
|
||||
<area alias="translation">
|
||||
<key alias="assignedTasks">Arbetsuppgifter som tilldelats dig</key>
|
||||
<key alias="assignedTasksHelp"><![CDATA[Listan nedan visar de översättningsjobb <strong>som har tilldelats dig</strong>. För att se en detaljvy med kommentarer, klicka på "Detaljer" eller på sidans namn. Du kan också ladda ned sidan i XML-format genom att klicka på länken "Ladda ned XML".<br/> För att markera ett översättningsjobb som avslutat, gå till detaljvyn och klicka på knappen "Stäng".]]></key>
|
||||
<key alias="closeTask">Stäng arbetsuppgift</key>
|
||||
<key alias="details">Översättningsdetaljer</key>
|
||||
<key alias="downloadAllAsXml">Ladda ned alla översättningsjobb i XML-format</key>
|
||||
<key alias="downloadTaskAsXml">Ladda ned i XML-format</key>
|
||||
<key alias="DownloadXmlDTD">Ladda hem DTD för XML</key>
|
||||
<key alias="fields">Fält</key>
|
||||
<key alias="includeSubpages">Inkludera undersidor</key>
|
||||
<key alias="mailBody">Hej %0%. Detta är ett automatisk mail skickat for att informera dig om att det finns en översättningsförfrågan på dokument '%1%' till '%5%' skickad av %2%. För att redigera, besök http://%3%/translation/details.aspx?id=%4%. För att få en översikt över dina översättningsuppgigter loggar du in i Umbraco på: http://%3%</key>
|
||||
<key alias="mailSubject">[%0%] Översättningsuppgift för %1%</key>
|
||||
<key alias="noTranslators">Hittade inga användare som är översättare. Vänligen skapa en användare som är översättare innan du börjar skicka innehåll för översättning</key>
|
||||
<key alias="ownedTasks">Arbetsuppgifter som du har skapat</key>
|
||||
<key alias="ownedTasksHelp"><![CDATA[Listan nedan visar sidor <strong>som du har skapat</strong>. För att se en detaljvy med kommentarer, klicka på "Detaljer" eller på sidans namn. Du kan också ladda ned sidan i XML-format genom att klicka på länken "Ladda ned XML".<br/> För att markera ett översättningsjobb som avslutat, gå till detaljvyn och klicka på knappen "Stäng".]]></key>
|
||||
<key alias="pageHasBeenSendToTranslation">Sidan %0% har skickats för översättning</key>
|
||||
<key alias="sendToTranslate">Skicka sidan %0% för översättning</key>
|
||||
<key alias="taskAssignedBy">Tilldelat av</key>
|
||||
<key alias="taskOpened">Arbetsuppgift öppnad</key>
|
||||
<key alias="totalWords">Totalt antal ord</key>
|
||||
<key alias="translateTo">Översätt till</key>
|
||||
<key alias="translationDone">Översättning klar.</key>
|
||||
@@ -870,7 +827,6 @@
|
||||
<key alias="uploadTranslationXml">Ladda upp översättning i XML-format</key>
|
||||
</area>
|
||||
<area alias="treeHeaders">
|
||||
<key alias="analytics">Analytics</key>
|
||||
<key alias="cacheBrowser">Cacha webbläsare</key>
|
||||
<key alias="contentRecycleBin">Papperskorg</key>
|
||||
<key alias="createdPackages">Skapade paket</key>
|
||||
@@ -890,7 +846,6 @@
|
||||
<key alias="documentTypes">Dokumenttyper</key>
|
||||
<key alias="packager">Paket</key>
|
||||
<key alias="packages">Paket</key>
|
||||
<key alias="python">Python-filer</key>
|
||||
<key alias="repositories">Installera från gemensamt bibliotek</key>
|
||||
<key alias="runway">Installera Runway</key>
|
||||
<key alias="runwayModules">Runway-moduler</key>
|
||||
@@ -951,7 +906,6 @@
|
||||
<key alias="userTypes">Användartyper</key>
|
||||
<key alias="writer">Skribent</key>
|
||||
<key alias="yourHistory">Din nuvarande historik</key>
|
||||
<key alias="translator">Översättare</key>
|
||||
<key alias="yourProfile">Din profil</key>
|
||||
</area>
|
||||
</language>
|
||||
</language>
|
||||
@@ -52,19 +52,15 @@
|
||||
<key alias="domainExists">Domain '%0%' zaten atanmış</key>
|
||||
<key alias="domainUpdated">Domain '%0%' güncellendi</key>
|
||||
<key alias="orEdit">Geçerli domain düzenle</key>
|
||||
<key alias="domainHelp">
|
||||
<![CDATA[
|
||||
<key alias="domainHelp"><![CDATA[
|
||||
Geçerli alan adları şunlardır : " umbraco.com ", " www.umbraco.com ", " umbraco.com:8080 " ya da
|
||||
" https://www.umbraco.com/ " . <br /> etki /> bir düzey yollar desteklenir <br , örneğin . " umbraco.com/en " . Bununla birlikte,
|
||||
kaçınılmalıdır. Daha yukarıdaki kültür ayarını kullanın
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="inherit">Miras Al</key>
|
||||
<key alias="setLanguage">Kültür</key>
|
||||
<key alias="setLanguageHelp">
|
||||
<![CDATA[Geçerli düğümün altındaki düğümler için kültür Set <br /> veya üst düğümleri kültürünü devralır. Ayrıca <br /> geçerli olacaktır
|
||||
Geçerli düğümün , bir etki altında çok uygulanmadığı sürece .]]>
|
||||
</key>
|
||||
<key alias="setLanguageHelp"><![CDATA[Geçerli düğümün altındaki düğümler için kültür Set <br /> veya üst düğümleri kültürünü devralır. Ayrıca <br /> geçerli olacaktır
|
||||
Geçerli düğümün , bir etki altında çok uygulanmadığı sürece .]]></key>
|
||||
<key alias="setDomains">Domainler</key>
|
||||
</area>
|
||||
<area alias="auditTrails">
|
||||
@@ -72,7 +68,6 @@
|
||||
</area>
|
||||
<area alias="buttons">
|
||||
<key alias="select">Seç</key>
|
||||
<key alias="selectCurrentFolder">Geçerli klasörü seçin</key>
|
||||
<key alias="somethingElse">Başka birşey yapın</key>
|
||||
<key alias="bold">Kalın</key>
|
||||
<key alias="deindent">Paragraf girinti iptal</key>
|
||||
@@ -173,8 +168,6 @@
|
||||
</area>
|
||||
<area alias="media">
|
||||
<key alias="clickToUpload">Yüklemek için tıklayın</key>
|
||||
<key alias="dropFilesHere">Burada açılan dosyaları ...</key>
|
||||
<key alias="urls">Medya Linki</key>
|
||||
</area>
|
||||
<area alias="create">
|
||||
<key alias="chooseNode">Nerede yeni %0% yaratmak istiyorsun</key>
|
||||
@@ -232,24 +225,18 @@
|
||||
<key alias="siterepublishHelp">Web sitesi önbelleği yenilenir olacaktır. Yayınlanmamış içerik yayınlanmamış kalacak ise tüm yayınlanan içerik, güncellenecektir.</key>
|
||||
<key alias="tableColumns">Sütün sayısı</key>
|
||||
<key alias="tableRows">Satır sayısı</key>
|
||||
<key alias="templateContentAreaHelp">
|
||||
<![CDATA[<strong>Yer tutucu kimliği ayarla</strong> senin tutucu bir kimlik ayarlayarak Çocuğunuz şablonları bu şablon içine içerik enjekte edebilir,
|
||||
Bir kullanarak bu kimliği bakarak <code><asp:content /></code> element.]]>
|
||||
</key>
|
||||
<key alias="templateContentPlaceHolderHelp">
|
||||
<![CDATA[<strong>Yer tutucu kimliği seçin</strong> Aşağıdaki listeden. You can sadece
|
||||
Geçerli şablonun ustadan kimliği sitesinin seçin.]]>
|
||||
</key>
|
||||
<key alias="templateContentAreaHelp"><![CDATA[<strong>Yer tutucu kimliği ayarla</strong> senin tutucu bir kimlik ayarlayarak Çocuğunuz şablonları bu şablon içine içerik enjekte edebilir,
|
||||
Bir kullanarak bu kimliği bakarak <code><asp:content /></code> element.]]></key>
|
||||
<key alias="templateContentPlaceHolderHelp"><![CDATA[<strong>Yer tutucu kimliği seçin</strong> Aşağıdaki listeden. You can sadece
|
||||
Geçerli şablonun ustadan kimliği sitesinin seçin.]]></key>
|
||||
<key alias="thumbnailimageclickfororiginal">Tam boyutta görmek için resmin üzerine tıklayın</key>
|
||||
<key alias="treepicker">öğeyi seçin</key>
|
||||
<key alias="viewCacheItem">Görünüm Önbellek Öğe</key>
|
||||
</area>
|
||||
<area alias="dictionaryItem">
|
||||
<key alias="description">
|
||||
<![CDATA[
|
||||
<key alias="description"><![CDATA[
|
||||
Sözlük öğe için farklı dil sürümlerini düzenle '<em>%0%</em>' aşağıda<br/>Sol taraftaki menüden 'diller' başlığı altında ek dil ekleyebilirsiniz
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="displayName">Kültür adı</key>
|
||||
</area>
|
||||
<area alias="placeholders">
|
||||
@@ -262,20 +249,13 @@
|
||||
<key alias="enterTags">(Basın, her etiketinden sonra girin) etiket eklemek için yazın ...</key>
|
||||
</area>
|
||||
<area alias="editcontenttype">
|
||||
<key alias="allowAtRoot" version="7.2">Root'a izin ver</key>
|
||||
<key alias="allowAtRootDesc" version="7.2">Bu Sadece İçerik Türleri İçerik ve Medya ağaçların kök düzeyinde oluşturulabilir kontrol</key>
|
||||
<key alias="allowedchildnodetypes">İzin alt düğüm çeşitleri</key>
|
||||
<key alias="contenttypecompositions">Belge Türü kompozisyonlar</key>
|
||||
<key alias="create">Oluştur</key>
|
||||
<key alias="deletetab">Sekmesini sil</key>
|
||||
<key alias="description">Tanım</key>
|
||||
<key alias="newtab">Yeni sekme</key>
|
||||
<key alias="tab">Sekme</key>
|
||||
<key alias="thumbnail">Küçük resim</key>
|
||||
<key alias="hasListView">Lüste görünümü etkinleştir</key>
|
||||
<key alias="hasListViewDesc" version="7.2">Bir sıralanabilir & göstermek için içerik öğesini yapılandırır; kendi çocuklarının aranabilir liste, çocuk ağacında gösterilen olmayacak</key>
|
||||
<key alias="currentListView" version="7.2">Liste görünümü</key>
|
||||
<key alias="currentListViewDesc" version="7.2">Etkin liste görünümü veri türü</key>
|
||||
<key alias="createListView" version="7.2">Özel liste görünüm oluşturun</key>
|
||||
<key alias="removeListView" version="7.2">Özel liste görünümü kaldır</key>
|
||||
</area>
|
||||
@@ -312,19 +292,14 @@
|
||||
<key alias="filePermissionsError">Belirli bir dosya veya klasör için okuma / yazma erişimi olan bir sorun var</key>
|
||||
<key alias="macroErrorLoadingPartialView">Error loading Partial View script (Dosya: %0%)</key>
|
||||
<key alias="macroErrorLoadingUsercontrol">Error loading userControl '%0%'</key>
|
||||
<key alias="macroErrorLoadingCustomControl">Error loading customControl (Assembly: %0%, Type: '%1%')</key>
|
||||
<key alias="macroErrorLoadingMacroEngineScript">Error loading MacroEngine script (Dosya: %0%)</key>
|
||||
<key alias="missingTitle">Lütfen bir başlık girin</key>
|
||||
<key alias="missingType">Lütfen bir tür seçin</key>
|
||||
<key alias="pictureResizeBiggerThanOrg">Orijinal boyutundan daha resmi büyütmek üzereyiz. Devam etmek istediğinizden emin misiniz?</key>
|
||||
<key alias="pythonErrorHeader">Python komut dosyası hatası</key>
|
||||
<key alias="pythonErrorText">O hatayı içerdiği için python komut dosyası, kaydedilmemiş (ler)</key>
|
||||
<key alias="startNodeDoesNotExists">Silinen düğüm başlatın, lütfen yöneticinize başvurun</key>
|
||||
<key alias="stylesMustMarkBeforeSelect">Tarzı değiştirmeden önce içerik işaretleyiniz</key>
|
||||
<key alias="stylesNoStylesOnPage">Henüz aktif stilleri</key>
|
||||
<key alias="tableColMergeLeft">Birleştirmek istediğiniz iki hücre solundaki imleci Lütfen</key>
|
||||
<key alias="tableSplitNotSplittable">Sen birleştirilmiş henüz bir hücreyi bölemezsiniz.</key>
|
||||
<key alias="missingPropertyEditorErrorMessage">Bu özellik için kullanılan veri türüne sahip bir yapılandırma hatası var, veri türünü kontrol edin</key>
|
||||
</area>
|
||||
<area alias="general">
|
||||
<key alias="about">Hakkında</key>
|
||||
@@ -379,7 +354,6 @@
|
||||
<key alias="logout">Çıkış yap</key>
|
||||
<key alias="macro">Makro</key>
|
||||
<key alias="move">Taşı</key>
|
||||
<key alias="more">Daha</key>
|
||||
<key alias="name">Ad</key>
|
||||
<key alias="new">Yeni</key>
|
||||
<key alias="next">Sonraki</key>
|
||||
@@ -440,39 +414,29 @@
|
||||
<key alias="databaseErrorWebConfig">Web.config dosyasını kaydedilemedi. El bağlantı dizesini değiştirin lütfen.</key>
|
||||
<key alias="databaseFound">Web.config dosyasını kaydedilemedi. El bağlantı dizesini değiştirin lütfen....</key>
|
||||
<key alias="databaseHeader">Veritabanı yapılandırması</key>
|
||||
<key alias="databaseInstall">
|
||||
<![CDATA[
|
||||
<key alias="databaseInstall"><![CDATA[
|
||||
<strong>Kurulum</strong> için dğümeye basın %0% veritabanı
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="databaseInstallDone"><![CDATA[CMS %0% Şimdi veritabanına kopyalandı. <strong>Sonraki</strong> Devam için.]]></key>
|
||||
<key alias="databaseNotFound">
|
||||
<![CDATA[<p>Veritabanı bulunamadı! "Web.config" nin "bağlantı dizesinde" bilgi dosyası doğru olup olmadığını kontrol edin.</p>
|
||||
<key alias="databaseNotFound"><![CDATA[<p>Veritabanı bulunamadı! "Web.config" nin "bağlantı dizesinde" bilgi dosyası doğru olup olmadığını kontrol edin.</p>
|
||||
<p>Devam etmek için, (Visual Studio veya sevdiğiniz metin editörü kullanarak) "web.config" dosyasını düzenlemek lütfen, altına gidin "UmbracoDbDSN" adlı anahtarı veritabanınız için bağlantı dizesini eklemek ve dosyayı kaydedin. </p>
|
||||
<p>
|
||||
<strong>Tekrar dene</strong>.
|
||||
<br />
|
||||
<a href="https://our.umbraco.com/documentation/Using-Umbraco/Config-files/webconfig7" target="_blank">
|
||||
Burada düzenleme web.config Hakkında Daha Fazla Bilgi.</a></p>]]>
|
||||
</key>
|
||||
<key alias="databaseText">
|
||||
<![CDATA[Bu adımı tamamlamak için, veritabanı sunucusu ("bağlantı dizesi") ile ilgili bazı bilgileri bilmeniz gerekir.<br />
|
||||
Burada düzenleme web.config Hakkında Daha Fazla Bilgi.</a></p>]]></key>
|
||||
<key alias="databaseText"><![CDATA[Bu adımı tamamlamak için, veritabanı sunucusu ("bağlantı dizesi") ile ilgili bazı bilgileri bilmeniz gerekir.<br />
|
||||
Gerekirse ISS'nize irtibata geçiniz.
|
||||
Eğer yerel makine veya sunucu üzerinde yükleme ediyorsanız, sistem yöneticinizden bilgi gerekebilir.]]>
|
||||
</key>
|
||||
<key alias="databaseUpgrade">
|
||||
<![CDATA[
|
||||
Eğer yerel makine veya sunucu üzerinde yükleme ediyorsanız, sistem yöneticinizden bilgi gerekebilir.]]></key>
|
||||
<key alias="databaseUpgrade"><![CDATA[
|
||||
<p>
|
||||
CMS %0% için veritabanını <strong>yükseltme</strong> için yükseltme düğmesine basın
|
||||
</p>
|
||||
<p>
|
||||
Merak etmeyin - hiçbir içerik silinmeyecek ve her şey sonradan çalışmaya devam edecektir!
|
||||
</p>
|
||||
]]>
|
||||
</key>
|
||||
<key alias="databaseUpgradeDone">
|
||||
<![CDATA[Sizin veritabanı son sürüme yükseltilmiş oldu %0%.<br /> <strong>Sonraki</strong> işlem. ]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="databaseUpgradeDone"><![CDATA[Sizin veritabanı son sürüme yükseltilmiş oldu %0%.<br /> <strong>Sonraki</strong> işlem. ]]></key>
|
||||
<key alias="databaseUpToDate"><![CDATA[Your current database is up-to-date!. Click <strong>next</strong> to continue the configuration wizard]]></key>
|
||||
<key alias="defaultUserChangePass"><![CDATA[<strong>The Default users' password needs to be changed!</strong>]]></key>
|
||||
<key alias="defaultUserDisabled"><![CDATA[<strong>The Default user has been disabled or has no access to Umbraco!</strong></p><p>No further actions needs to be taken. Click <b>Next</b> to proceed.]]></key>
|
||||
@@ -484,56 +448,41 @@
|
||||
<key alias="permissionsAffectedFolders">Affected files and folders</key>
|
||||
<key alias="permissionsAffectedFoldersMoreInfo">More information on setting up permissions for Umbraco here</key>
|
||||
<key alias="permissionsAffectedFoldersText">You need to grant ASP.NET modify permissions to the following files/folders</key>
|
||||
<key alias="permissionsAlmostPerfect">
|
||||
<![CDATA[<strong>Your permission settings are almost perfect!</strong><br /><br />
|
||||
You can run Umbraco without problems, but you will not be able to install packages which are recommended to take full advantage of Umbraco.]]>
|
||||
</key>
|
||||
<key alias="permissionsAlmostPerfect"><![CDATA[<strong>Your permission settings are almost perfect!</strong><br /><br />
|
||||
You can run Umbraco without problems, but you will not be able to install packages which are recommended to take full advantage of Umbraco.]]></key>
|
||||
<key alias="permissionsHowtoResolve">How to Resolve</key>
|
||||
<key alias="permissionsHowtoResolveLink">Click here to read the text version</key>
|
||||
<key alias="permissionsHowtoResolveText"><![CDATA[Watch our <strong>video tutorial</strong> on setting up folder permissions for Umbraco or read the text version.]]></key>
|
||||
<key alias="permissionsMaybeAnIssue">
|
||||
<![CDATA[<strong>Your permission settings might be an issue!</strong>
|
||||
<key alias="permissionsMaybeAnIssue"><![CDATA[<strong>Your permission settings might be an issue!</strong>
|
||||
<br/><br />
|
||||
You can run Umbraco without problems, but you will not be able to create folders or install packages which are recommended to take full advantage of Umbraco.]]>
|
||||
</key>
|
||||
<key alias="permissionsNotReady">
|
||||
<![CDATA[<strong>Your permission settings are not ready for Umbraco!</strong>
|
||||
You can run Umbraco without problems, but you will not be able to create folders or install packages which are recommended to take full advantage of Umbraco.]]></key>
|
||||
<key alias="permissionsNotReady"><![CDATA[<strong>Your permission settings are not ready for Umbraco!</strong>
|
||||
<br /><br />
|
||||
In order to run Umbraco, you'll need to update your permission settings.]]>
|
||||
</key>
|
||||
<key alias="permissionsPerfect">
|
||||
<![CDATA[<strong>Your permission settings are perfect!</strong><br /><br />
|
||||
You are ready to run Umbraco and install packages!]]>
|
||||
</key>
|
||||
In order to run Umbraco, you'll need to update your permission settings.]]></key>
|
||||
<key alias="permissionsPerfect"><![CDATA[<strong>Your permission settings are perfect!</strong><br /><br />
|
||||
You are ready to run Umbraco and install packages!]]></key>
|
||||
<key alias="permissionsResolveFolderIssues">Resolving folder issue</key>
|
||||
<key alias="permissionsResolveFolderIssuesLink">Follow this link for more information on problems with ASP.NET and creating folders</key>
|
||||
<key alias="permissionsSettingUpPermissions">Setting up folder permissions</key>
|
||||
<key alias="permissionsText">
|
||||
<![CDATA[
|
||||
<key alias="permissionsText"><![CDATA[
|
||||
Umbraco needs write/modify access to certain directories in order to store files like pictures and PDF's.
|
||||
It also stores temporary data (aka: cache) for enhancing the performance of your website.
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="runwayFromScratch">Baştan başlamak istiyorum</key>
|
||||
<key alias="runwayFromScratchText">
|
||||
<![CDATA[
|
||||
<key alias="runwayFromScratchText"><![CDATA[
|
||||
Your website is completely empty at the moment, so that's perfect if you want to start from scratch and create your own document types and templates.
|
||||
(<a href="http://Umbraco.tv/documentation/videos/for-site-builders/foundation/document-types">learn how</a>)
|
||||
You can still choose to install Runway later on. Please go to the Developer section and choose Packages.
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="runwayHeader">You've just set up a clean Umbraco platform. What do you want to do next?</key>
|
||||
<key alias="runwayInstalled">Runway is installed</key>
|
||||
<key alias="runwayInstalledText">
|
||||
<![CDATA[
|
||||
<key alias="runwayInstalledText"><![CDATA[
|
||||
You have the foundation in place. Select what modules you wish to install on top of it.<br />
|
||||
This is our list of recommended modules, check off the ones you would like to install, or view the <a href="#" onclick="toggleModules(); return false;" id="toggleModuleList">full list of modules</a>
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="runwayOnlyProUsers">Only recommended for experienced users</key>
|
||||
<key alias="runwaySimpleSite">I want to start with a simple website</key>
|
||||
<key alias="runwaySimpleSiteText">
|
||||
<![CDATA[
|
||||
<key alias="runwaySimpleSiteText"><![CDATA[
|
||||
<p>
|
||||
"Runway" is a simple website providing some basic document types and templates. The installer can set up Runway for you automatically,
|
||||
but you can easily edit, extend or remove it. It's not necessary and you can perfectly use Umbraco without it. However,
|
||||
@@ -544,8 +493,7 @@
|
||||
<em>Included with Runway:</em> Home page, Getting Started page, Installing Modules page.<br />
|
||||
<em>Optional Modules:</em> Top Navigation, Sitemap, Contact, Gallery.
|
||||
</small>
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="runwayWhatIsRunway">What is Runway</key>
|
||||
<key alias="step1">Step 1/5 Accept license</key>
|
||||
<key alias="step2">Step 2/5: Database configuration</key>
|
||||
@@ -553,36 +501,24 @@
|
||||
<key alias="step4">Step 4/5: Check Umbraco security</key>
|
||||
<key alias="step5">Step 5/5: Umbraco is ready to get you started</key>
|
||||
<key alias="thankYou">Thank you for choosing Umbraco</key>
|
||||
<key alias="theEndBrowseSite">
|
||||
<![CDATA[<h3>Browse your new site</h3>
|
||||
You installed Runway, so why not see how your new website looks.]]>
|
||||
</key>
|
||||
<key alias="theEndFurtherHelp">
|
||||
<![CDATA[<h3>Further help and information</h3>
|
||||
Get help from our award winning community, browse the documentation or watch some free videos on how to build a simple site, how to use packages and a quick guide to the Umbraco terminology]]>
|
||||
</key>
|
||||
<key alias="theEndBrowseSite"><![CDATA[<h3>Browse your new site</h3>
|
||||
You installed Runway, so why not see how your new website looks.]]></key>
|
||||
<key alias="theEndFurtherHelp"><![CDATA[<h3>Further help and information</h3>
|
||||
Get help from our award winning community, browse the documentation or watch some free videos on how to build a simple site, how to use packages and a quick guide to the Umbraco terminology]]></key>
|
||||
<key alias="theEndHeader">Umbraco %0% is installed and ready for use</key>
|
||||
<key alias="theEndInstallFailed">
|
||||
<![CDATA[To finish the installation, you'll need to
|
||||
manually edit the <strong>/web.config file</strong> and update the AppSetting key <strong>UmbracoConfigurationStatus</strong> in the bottom to the value of <strong>'%0%'</strong>.]]>
|
||||
</key>
|
||||
<key alias="theEndInstallSuccess">
|
||||
<![CDATA[You can get <strong>started instantly</strong> by clicking the "Launch Umbraco" button below. <br />If you are <strong>new to Umbraco</strong>,
|
||||
you can find plenty of resources on our getting started pages.]]>
|
||||
</key>
|
||||
<key alias="theEndOpenUmbraco">
|
||||
<![CDATA[<h3>Launch Umbraco</h3>
|
||||
To manage your website, simply open the Umbraco back office and start adding content, updating the templates and stylesheets or add new functionality]]>
|
||||
</key>
|
||||
<key alias="theEndInstallFailed"><![CDATA[To finish the installation, you'll need to
|
||||
manually edit the <strong>/web.config file</strong> and update the AppSetting key <strong>UmbracoConfigurationStatus</strong> in the bottom to the value of <strong>'%0%'</strong>.]]></key>
|
||||
<key alias="theEndInstallSuccess"><![CDATA[You can get <strong>started instantly</strong> by clicking the "Launch Umbraco" button below. <br />If you are <strong>new to Umbraco</strong>,
|
||||
you can find plenty of resources on our getting started pages.]]></key>
|
||||
<key alias="theEndOpenUmbraco"><![CDATA[<h3>Launch Umbraco</h3>
|
||||
To manage your website, simply open the Umbraco back office and start adding content, updating the templates and stylesheets or add new functionality]]></key>
|
||||
<key alias="Unavailable">Connection to database failed.</key>
|
||||
<key alias="Version3">Umbraco Version 3</key>
|
||||
<key alias="Version4">Umbraco Version 4</key>
|
||||
<key alias="watch">Watch</key>
|
||||
<key alias="welcomeIntro">
|
||||
<![CDATA[This wizard will guide you through the process of configuring <strong>Umbraco %0%</strong> for a fresh install or upgrading from version 3.0.
|
||||
<key alias="welcomeIntro"><![CDATA[This wizard will guide you through the process of configuring <strong>Umbraco %0%</strong> for a fresh install or upgrading from version 3.0.
|
||||
<br /><br />
|
||||
Press <strong>"next"</strong> to start the wizard.]]>
|
||||
</key>
|
||||
Press <strong>"next"</strong> to start the wizard.]]></key>
|
||||
</area>
|
||||
<area alias="language">
|
||||
<key alias="cultureCode">Kültür Kodu</key>
|
||||
@@ -593,7 +529,6 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="renewSession">İşinizi kaydetmek için şimdi Yenile</key>
|
||||
</area>
|
||||
<area alias="login">
|
||||
<key alias="greeting0">Pazar</key>
|
||||
<key alias="greeting1">Pazartesi </key>
|
||||
<key alias="greeting2">Salı</key>
|
||||
<key alias="greeting3">Çarşamba</key>
|
||||
@@ -625,8 +560,7 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
</area>
|
||||
<area alias="notifications">
|
||||
<key alias="editNotifications">Edit your notification for %0%</key>
|
||||
<key alias="mailBody">
|
||||
<![CDATA[
|
||||
<key alias="mailBody"><![CDATA[
|
||||
Hi %0%
|
||||
|
||||
This is an automated mail to inform you that the task '%1%'
|
||||
@@ -638,10 +572,8 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
Have a nice day!
|
||||
|
||||
Cheers from the Umbraco robot
|
||||
]]>
|
||||
</key>
|
||||
<key alias="mailBodyHtml">
|
||||
<![CDATA[<p>Hi %0%</p>
|
||||
]]></key>
|
||||
<key alias="mailBodyHtml"><![CDATA[<p>Hi %0%</p>
|
||||
|
||||
<p>This is an automated mail to inform you that the task <strong>'%1%'</strong>
|
||||
has been performed on the page <a href="http://%4%/#/content/content/edit/%5%"><strong>'%2%'</strong></a>
|
||||
@@ -667,28 +599,23 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
|
||||
<p>Have a nice day!<br /><br />
|
||||
Cheers from the Umbraco robot
|
||||
</p>]]>
|
||||
</key>
|
||||
</p>]]></key>
|
||||
<key alias="mailSubject">[%0%] Notification about %1% performed on %2%</key>
|
||||
<key alias="notifications">Notifications</key>
|
||||
</area>
|
||||
<area alias="packager">
|
||||
<key alias="chooseLocalPackageText">
|
||||
<![CDATA[
|
||||
<key alias="chooseLocalPackageText"><![CDATA[
|
||||
Choose Package from your machine, by clicking the Browse<br />
|
||||
button and locating the package. Umbraco packages usually have a ".umb" or ".zip" extension.
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="packageAuthor">Author</key>
|
||||
<key alias="packageDemonstration">Demonstration</key>
|
||||
<key alias="packageDocumentation">Documentation</key>
|
||||
<key alias="packageMetaData">Package meta data</key>
|
||||
<key alias="packageName">Package name</key>
|
||||
<key alias="packageNoItemsHeader">Package doesn't contain any items</key>
|
||||
<key alias="packageNoItemsText">
|
||||
<![CDATA[This package file doesn't contain any items to uninstall.<br/><br/>
|
||||
You can safely remove this from the system by clicking "uninstall package" below.]]>
|
||||
</key>
|
||||
<key alias="packageNoItemsText"><![CDATA[This package file doesn't contain any items to uninstall.<br/><br/>
|
||||
You can safely remove this from the system by clicking "uninstall package" below.]]></key>
|
||||
<key alias="packageNoUpgrades">No upgrades available</key>
|
||||
<key alias="packageOptions">Package options</key>
|
||||
<key alias="packageReadme">Package readme</key>
|
||||
@@ -697,11 +624,9 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="packageUninstalledHeader">Package was uninstalled</key>
|
||||
<key alias="packageUninstalledText">The package was successfully uninstalled</key>
|
||||
<key alias="packageUninstallHeader">Uninstall package</key>
|
||||
<key alias="packageUninstallText">
|
||||
<![CDATA[You can unselect items you do not wish to remove, at this time, below. When you click "confirm uninstall" all checked-off items will be removed.<br />
|
||||
<key alias="packageUninstallText"><![CDATA[You can unselect items you do not wish to remove, at this time, below. When you click "confirm uninstall" all checked-off items will be removed.<br />
|
||||
<span style="color: Red; font-weight: bold;">Notice:</span> any documents, media etc depending on the items you remove, will stop working, and could lead to system instability,
|
||||
so uninstall with caution. If in doubt, contact the package author.]]>
|
||||
</key>
|
||||
so uninstall with caution. If in doubt, contact the package author.]]></key>
|
||||
<key alias="packageUpgradeDownload">Download update from the repository</key>
|
||||
<key alias="packageUpgradeHeader">Upgrade package</key>
|
||||
<key alias="packageUpgradeInstructions">Upgrade instructions</key>
|
||||
@@ -735,37 +660,27 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="paSimpleHelp">If you just want to setup simple protection using a single login and password</key>
|
||||
</area>
|
||||
<area alias="publish">
|
||||
<key alias="contentPublishedFailedAwaitingRelease">
|
||||
<![CDATA[
|
||||
<key alias="contentPublishedFailedAwaitingRelease"><![CDATA[
|
||||
%0% could not be published because the item is scheduled for release.
|
||||
]]>
|
||||
</key>
|
||||
<key alias="contentPublishedFailedInvalid">
|
||||
<![CDATA[
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedInvalid"><![CDATA[
|
||||
%0% could not be published because these properties: %1% did not pass validation rules.
|
||||
]]>
|
||||
</key>
|
||||
<key alias="contentPublishedFailedByEvent">
|
||||
<![CDATA[
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedByEvent"><![CDATA[
|
||||
%0% could not be published, a 3rd party add-in cancelled the action.
|
||||
]]>
|
||||
</key>
|
||||
<key alias="contentPublishedFailedByParent">
|
||||
<![CDATA[
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedByParent"><![CDATA[
|
||||
%0% can not be published, because a parent page is not published.
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="includeUnpublished">Include unpublished child pages</key>
|
||||
<key alias="inProgress">Publishing in progress - please wait...</key>
|
||||
<key alias="inProgressCounter">%0% out of %1% pages have been published...</key>
|
||||
<key alias="nodePublish">%0% has been published</key>
|
||||
<key alias="nodePublishAll">%0% and subpages have been published</key>
|
||||
<key alias="publishAll">Publish %0% and all its subpages</key>
|
||||
<key alias="publishHelp">
|
||||
<![CDATA[Click <em>ok</em> to publish <strong>%0%</strong> and thereby making its content publicly available.<br/><br />
|
||||
<key alias="publishHelp"><![CDATA[Click <em>ok</em> to publish <strong>%0%</strong> and thereby making its content publicly available.<br/><br />
|
||||
You can publish this page and all it's sub-pages by checking <em>publish all children</em> below.
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
</area>
|
||||
<area alias="colorpicker">
|
||||
<key alias="noColors">You have not configured any approved colours</key>
|
||||
@@ -809,12 +724,8 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="users">Kullanıcılar</key>
|
||||
<key alias="help" version="7.0">Yardım</key>
|
||||
<key alias="forms">Formlar</key>
|
||||
<key alias="analytics">Analytics</key>
|
||||
</area>
|
||||
<area alias="help">
|
||||
<key alias="goTo">git</key>
|
||||
<key alias="helpTopicsFor">Help topics for</key>
|
||||
<key alias="videoChaptersFor">Video chapters for</key>
|
||||
<key alias="theBestUmbracoVideoTutorials">Kayadata</key>
|
||||
</area>
|
||||
<area alias="settings">
|
||||
@@ -834,8 +745,6 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="contentTypeUses">This Content Type uses</key>
|
||||
<key alias="asAContentMasterType">as a Master Content Type. Tabs from Master Content Types are not shown and can only be edited on the Master Content Type itself</key>
|
||||
<key alias="noPropertiesDefinedOnTab">No properties defined on this tab. Click on the "add a new property" link at the top to create a new property.</key>
|
||||
<key alias="masterDocumentType">Master Document Type</key>
|
||||
<key alias="createMatchingTemplate">Create matching template</key>
|
||||
</area>
|
||||
<area alias="sort">
|
||||
<key alias="sortDone">Sorting complete.</key>
|
||||
@@ -882,10 +791,6 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="fileSavedHeader">Dosya kaydedildi</key>
|
||||
<key alias="fileSavedText">Dosya sorunsuz kaydedildi</key>
|
||||
<key alias="languageSaved">Dil kaydedildi</key>
|
||||
<key alias="pythonErrorHeader">Python script kaydedilemedi</key>
|
||||
<key alias="pythonErrorText">Python scripti oluşan hata nedeniyle kaydedilemedi</key>
|
||||
<key alias="pythonSavedHeader">Python script kaydedildi</key>
|
||||
<key alias="pythonSavedText">Python scriptinde hata buluanamadı</key>
|
||||
<key alias="templateErrorHeader">Template kaydedilmedi</key>
|
||||
<key alias="templateErrorText">Aynı isim ile 2 template bulunmadığından emin olun</key>
|
||||
<key alias="templateSavedHeader">Template kaydedildi</key>
|
||||
@@ -895,11 +800,6 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="partialViewSavedText">Partial view sorunsuz kaydedildi!</key>
|
||||
<key alias="partialViewErrorHeader">Partial view kaydedilmedi</key>
|
||||
<key alias="partialViewErrorText">Dosya kaydedilirken bir hata oluştu.</key>
|
||||
<key alias="scriptSavedHeader">Script view kaydedildi</key>
|
||||
<key alias="scriptSavedText">Script view sorunsuz kaydedildi!</key>
|
||||
<key alias="scriptErrorHeader">Script view kaydedilmedi</key>
|
||||
<key alias="scriptErrorText">Dosya kaydedilirken bir hata oluştu.</key>
|
||||
<key alias="cssErrorText">Dosya kaydedilirken bir hata oluştu.</key>
|
||||
</area>
|
||||
<area alias="stylesheet">
|
||||
<key alias="aliasHelp">CSS sözdizimi kullanımları. örneğin: h1, .redHeader, .blueTex</key>
|
||||
@@ -921,16 +821,11 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="template">Template</key>
|
||||
</area>
|
||||
<area alias="grid">
|
||||
<key alias="rte">Rich Text Editor</key>
|
||||
<key alias="media">Image</key>
|
||||
<key alias="macro">Macro</key>
|
||||
<key alias="embed">Embed</key>
|
||||
<key alias="headline">Headline</key>
|
||||
<key alias="quote">Quote</key>
|
||||
<key alias="insertControl">Insert control</key>
|
||||
<key alias="addRows">Choose a layout for the page</key>
|
||||
<key alias="addElement"><![CDATA[To start, click the <i class="icon icon-add blue"></i> below and add your first element]]></key>
|
||||
|
||||
<key alias="clickToEmbed">Click to embed</key>
|
||||
<key alias="clickToInsertImage">Click to insert image</key>
|
||||
<key alias="placeholderImageCaption">Image caption...</key>
|
||||
@@ -939,24 +834,16 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="gridLayoutsDetail">Layouts are the overall work area for the grid editor, usually you only need one or two different layouts</key>
|
||||
<key alias="addGridLayout">Add grid layout</key>
|
||||
<key alias="addGridLayoutDetail">Adjust the layout by setting column widths and adding additional sections</key>
|
||||
|
||||
<key alias="rowConfigurations">Row configurations</key>
|
||||
<key alias="rowConfigurationsDetail">Rows are predefined cells arranged horizontally</key>
|
||||
<key alias="addRowConfiguration">Add row configuration</key>
|
||||
<key alias="addRowConfigurationDetail">Adjust the row by setting cell widths and adding additional cells</key>
|
||||
|
||||
<key alias="columns">Columns</key>
|
||||
<key alias="columnsDetails">Total combined number of columns in the grid layout</key>
|
||||
|
||||
<key alias="settings">Settings</key>
|
||||
<key alias="settingsDetails">Configure what settings editors can change</key>
|
||||
|
||||
|
||||
<key alias="styles">Styles</key>
|
||||
<key alias="stylesDetails">Configure what styling editors can change</key>
|
||||
|
||||
<key alias="settingDialogDetails">Settings will only save if the entered json configuration is valid</key>
|
||||
|
||||
<key alias="allowAllEditors">Allow all editors</key>
|
||||
<key alias="allowAllRowConfigurations">Allow all row configurations</key>
|
||||
</area>
|
||||
@@ -991,22 +878,11 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="withTime">Yes, with time. Separator: </key>
|
||||
</area>
|
||||
<area alias="translation">
|
||||
<key alias="assignedTasks">Tasks assigned to you</key>
|
||||
<key alias="assignedTasksHelp">
|
||||
<![CDATA[ The list below shows translation tasks <strong>assigned to you</strong>. To see a detailed view including comments, click on "Details" or just the page name.
|
||||
You can also download the page as XML directly by clicking the "Download Xml" link. <br/>
|
||||
To close a translation task, please go to the Details view and click the "Close" button.
|
||||
]]>
|
||||
</key>
|
||||
<key alias="closeTask">close task</key>
|
||||
<key alias="details">Translation details</key>
|
||||
<key alias="downloadAllAsXml">Download all translation tasks as XML</key>
|
||||
<key alias="downloadTaskAsXml">Download XML</key>
|
||||
<key alias="DownloadXmlDTD">Download XML DTD</key>
|
||||
<key alias="fields">Fields</key>
|
||||
<key alias="includeSubpages">Include subpages</key>
|
||||
<key alias="mailBody">
|
||||
<![CDATA[
|
||||
<key alias="mailBody"><![CDATA[
|
||||
Hi %0%
|
||||
|
||||
This is an automated mail to inform you that the document '%1%'
|
||||
@@ -1020,21 +896,10 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
Have a nice day!
|
||||
|
||||
Cheers from the Umbraco robot
|
||||
]]>
|
||||
</key>
|
||||
<key alias="mailSubject">[%0%] Translation task for %1%</key>
|
||||
]]></key>
|
||||
<key alias="noTranslators">No translator users found. Please create a translator user before you start sending content to translation</key>
|
||||
<key alias="ownedTasks">Tasks created by you</key>
|
||||
<key alias="ownedTasksHelp">
|
||||
<![CDATA[ The list below shows pages <strong>created by you</strong>. To see a detailed view including comments,
|
||||
click on "Details" or just the page name. You can also download the page as XML directly by clicking the "Download Xml" link.
|
||||
To close a translation task, please go to the Details view and click the "Close" button.
|
||||
]]>
|
||||
</key>
|
||||
<key alias="pageHasBeenSendToTranslation">The page '%0%' has been send to translation</key>
|
||||
<key alias="sendToTranslate">Send the page '%0%' to translation</key>
|
||||
<key alias="taskAssignedBy">Atanan</key>
|
||||
<key alias="taskOpened">Görev açıldı</key>
|
||||
<key alias="totalWords">Toplam kelime</key>
|
||||
<key alias="translateTo">Translate to</key>
|
||||
<key alias="translationDone">Çeviri tamamlandı.</key>
|
||||
@@ -1064,7 +929,6 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="nodeTypes">Döküman Tipleri</key>
|
||||
<key alias="packager">Paketler</key>
|
||||
<key alias="packages">Paketler</key>
|
||||
<key alias="python">Python Dosyaları</key>
|
||||
<key alias="repositories">Depodan kurulum yap</key>
|
||||
<key alias="runway">Install Runway</key>
|
||||
<key alias="runwayModules">Runway modülleri</key>
|
||||
@@ -1072,7 +936,6 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="scripts">Scriptler</key>
|
||||
<key alias="stylesheets">Stil dosyaları</key>
|
||||
<key alias="templates">Şablonlar</key>
|
||||
<key alias="analytics">Analitikler</key>
|
||||
<key alias="settingsGroup"></key>
|
||||
<key alias="templatingGroup"></key>
|
||||
<key alias="thirdPartyGroup"></key>
|
||||
@@ -1121,7 +984,6 @@ To manage your website, simply open the Umbraco back office and start adding con
|
||||
<key alias="usertype">Kullanıcı türü</key>
|
||||
<key alias="userTypes">Kullanıcı tipleri</key>
|
||||
<key alias="writer">Yazar</key>
|
||||
<key alias="translator">Çevirmen</key>
|
||||
<key alias="change">Değiştir</key>
|
||||
<key alias="yourProfile" version="7.0">Profiliniz</key>
|
||||
<key alias="yourHistory" version="7.0">Son tarih</key>
|
||||
|
||||
@@ -46,7 +46,7 @@
|
||||
<key alias="addNew">添加域名</key>
|
||||
<key alias="remove">移除</key>
|
||||
<key alias="invalidNode">错误的节点</key>
|
||||
<key alias="invalidDomain">域名错误</key>
|
||||
<key alias="invalidDomain">域名错误</key>
|
||||
<key alias="duplicateDomain">域名重复</key>
|
||||
<key alias="language">语言</key>
|
||||
<key alias="domain">域名</key>
|
||||
@@ -70,7 +70,6 @@
|
||||
<area alias="buttons">
|
||||
<key alias="clearSelection">清除选择</key>
|
||||
<key alias="select">选择</key>
|
||||
<key alias="selectCurrentFolder">选择当前目录</key>
|
||||
<key alias="somethingElse">其它功能</key>
|
||||
<key alias="bold">粗体</key>
|
||||
<key alias="deindent">取消段落缩进</key>
|
||||
@@ -99,28 +98,27 @@
|
||||
<key alias="styleChoose">选择样式</key>
|
||||
<key alias="styleShow">显示样式</key>
|
||||
<key alias="tableInsert">插入表格</key>
|
||||
<key alias="generateModels">生成模型</key>
|
||||
</area>
|
||||
<area alias="changeDocType">
|
||||
<key alias="changeDocTypeInstruction">要更改所选节点的文档类型,先在列表中选择合适的文档类型。</key>
|
||||
<key alias="changeDocTypeInstruction2">然后设置当前文档类型到新文档类型的各字段间的对应映射关系并保存。</key>
|
||||
<key alias="contentRepublished">内容已被重新发布</key>
|
||||
<key alias="contentRepublished">内容已被重新发布</key>
|
||||
<key alias="currentProperty">当前属性</key>
|
||||
<key alias="currentType">当前类型</key>
|
||||
<key alias="docTypeCannotBeChanged">不能改变文档类型,因为没有可替代的类型。</key>
|
||||
<key alias="docTypeChanged">文档类型已更改</key>
|
||||
<key alias="docTypeChanged">文档类型已更改</key>
|
||||
<key alias="mapProperties">要映射的字段</key>
|
||||
<key alias="mapToProperty">映射字段</key>
|
||||
<key alias="newTemplate">新模板</key>
|
||||
<key alias="newType">新类型</key>
|
||||
<key alias="none">无</key>
|
||||
<key alias="none">无</key>
|
||||
<key alias="selectedContent">内容</key>
|
||||
<key alias="selectNewDocType">选择新的文档类型</key>
|
||||
<key alias="successMessage">选中文档的类型已被成功更改为[new type],以下字段被映射:</key>
|
||||
<key alias="to">至</key>
|
||||
<key alias="validationErrorPropertyWithMoreThanOneMapping">不能完成字段映射,因为存在一个字段映射至多字段的问题。</key>
|
||||
<key alias="validDocTypesNote">仅显示可作为替代的文档类型。</key>
|
||||
</area>
|
||||
<key alias="validDocTypesNote">仅显示可作为替代的文档类型。</key>
|
||||
</area>
|
||||
<area alias="content">
|
||||
<key alias="isPublished" version="7.2">已发布</key>
|
||||
<key alias="about">关于本页</key>
|
||||
@@ -178,10 +176,7 @@
|
||||
</area>
|
||||
<area alias="media">
|
||||
<key alias="clickToUpload">点击上传</key>
|
||||
<key alias="dropFilesHere">将文件放在此处..</key>
|
||||
<key alias="urls">链接到媒体</key>
|
||||
<key alias="orClickHereToUpload">或单击此处选择文件</key>
|
||||
<key alias="onlyAllowedFiles">仅允许的文件类型为</key>
|
||||
<key alias="maxFileSize">最大文件大小为</key>
|
||||
</area>
|
||||
<area alias="member">
|
||||
@@ -213,29 +208,24 @@
|
||||
<key alias="unsavedChanges">您有未保存的更改</key>
|
||||
<key alias="unsavedChangesWarning">确实要离开此页吗?-您有未保存的更改</key>
|
||||
</area>
|
||||
<area alias="bulk">
|
||||
<area alias="bulk">
|
||||
<key alias="done">完成</key>
|
||||
|
||||
<key alias="deletedItem">已删除 %0% 项</key>
|
||||
<key alias="deletedItems">已删除 %0% 项</key>
|
||||
<key alias="deletedItemOfItem">已删除 %0% 项,共 %1% 项</key>
|
||||
<key alias="deletedItemOfItems">已删除 %0% 项,共 %1% 项</key>
|
||||
|
||||
<key alias="publishedItem">已发布 %0% 项</key>
|
||||
<key alias="publishedItems">已发布 %0% 项</key>
|
||||
<key alias="publishedItemOfItem">已发布 %0% 项,共 %1% 项</key>
|
||||
<key alias="publishedItemOfItems">已发布 %0% 项,共 %1% 项</key>
|
||||
|
||||
<key alias="unpublishedItem">已取消发布 %0% 项</key>
|
||||
<key alias="unpublishedItems">已取消发布 %0% 项</key>
|
||||
<key alias="unpublishedItemOfItem">已取消发布 %0% 项,共 %1% 项</key>
|
||||
<key alias="unpublishedItemOfItems">已取消发布 %0% 项,共 %1% 项</key>
|
||||
|
||||
<key alias="movedItem">已移动 %0% 项</key>
|
||||
<key alias="movedItems">已移动 %0% 项</key>
|
||||
<key alias="movedItemOfItem">已移动 %0% 项,共 %1% 项</key>
|
||||
<key alias="movedItemOfItems">已移动 %0% 项,共 %1% 项</key>
|
||||
|
||||
<key alias="copiedItem">已复制 %0% 项</key>
|
||||
<key alias="copiedItems">已复制 %0% 项</key>
|
||||
<key alias="copiedItemOfItem">已复制 %0% 项,共 %1% 项</key>
|
||||
@@ -288,7 +278,6 @@
|
||||
<key alias="thumbnailimageclickfororiginal">点击图片查看完整大小</key>
|
||||
<key alias="treepicker">拾取项</key>
|
||||
<key alias="viewCacheItem">查看缓存项</key>
|
||||
<key alias="createFolder">创建文件夹...</key>
|
||||
<key alias="relateToOriginalLabel">与原始连接</key>
|
||||
<key alias="includeDescendants">包括后代</key>
|
||||
<key alias="theFriendliestCommunity">最友好的社区</key>
|
||||
@@ -319,12 +308,9 @@
|
||||
为字典项编辑不同语言的版本‘<em>%0%</em>’<br/>您可以在左侧的“语言”中添加一种语言
|
||||
]]></key>
|
||||
<key alias="displayName">语言名称</key>
|
||||
<key alias="changeKey">编辑字典项的键。</key>
|
||||
<key alias="changeKeyError">
|
||||
<![CDATA[
|
||||
<key alias="changeKeyError"><![CDATA[
|
||||
关键字 '%0%' 已经存在。
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
</area>
|
||||
<area alias="placeholders">
|
||||
<key alias="username">输入您的用户名</key>
|
||||
@@ -340,20 +326,13 @@
|
||||
<key alias="email">输入您的电子邮件</key>
|
||||
</area>
|
||||
<area alias="editcontenttype">
|
||||
<key alias="allowAtRoot" version="7.2">允许在根目录</key>
|
||||
<key alias="allowAtRootDesc" version="7.2">只能在内容和媒体树的根级别创建具有选中的内容类型</key>
|
||||
<key alias="allowedchildnodetypes">允许子项节点类型</key>
|
||||
<key alias="contenttypecompositions">文档类型组合</key>
|
||||
<key alias="create">创建</key>
|
||||
<key alias="deletetab">删除选项卡</key>
|
||||
<key alias="description">描述</key>
|
||||
<key alias="newtab">新建选项卡</key>
|
||||
<key alias="tab">选项卡</key>
|
||||
<key alias="thumbnail">缩略图</key>
|
||||
<key alias="hasListView">启用列表视图</key>
|
||||
<key alias="hasListViewDesc" version="7.2">配置内容项以显示可排序和搜索的子项列表, 这些子项将不会显示在树中</key>
|
||||
<key alias="currentListView" version="7.2">当前列表视图</key>
|
||||
<key alias="currentListViewDesc" version="7.2">活动列表视图数据类型</key>
|
||||
<key alias="createListView" version="7.2">创建自定义列表视图</key>
|
||||
<key alias="removeListView" version="7.2">删除自定义列表视图</key>
|
||||
</area>
|
||||
@@ -391,19 +370,14 @@
|
||||
<key alias="filePermissionsError">权限有问题,访问指定文件或文件夹失败!</key>
|
||||
<key alias="macroErrorLoadingPartialView">加载Partial视图脚本时出错(文件: %0%)</key>
|
||||
<key alias="macroErrorLoadingUsercontrol">加载 userControl 时出错 '%0%'</key>
|
||||
<key alias="macroErrorLoadingCustomControl">加载 customControl 时出错(程序集: %0%, 类型: '%1%')</key>
|
||||
<key alias="macroErrorLoadingMacroEngineScript">加载 MacroEngine 脚本时出错 (文件: %0%)</key>
|
||||
<key alias="missingTitle">请输入标题</key>
|
||||
<key alias="missingType">请选择类型</key>
|
||||
<key alias="pictureResizeBiggerThanOrg">图片尺寸大于原始尺寸不会提高图片质量,您确定要把图片尺寸变大吗?</key>
|
||||
<key alias="pythonErrorHeader">python脚本错误</key>
|
||||
<key alias="pythonErrorText">python脚本未保存,因为包含错误。</key>
|
||||
<key alias="startNodeDoesNotExists">默认打开页面不存在,请联系管理员</key>
|
||||
<key alias="stylesMustMarkBeforeSelect">请先选择内容,再设置样式。</key>
|
||||
<key alias="stylesNoStylesOnPage">没有可用的样式</key>
|
||||
<key alias="tableColMergeLeft">请把光标放在您要合并的两个单元格中的左边单元格</key>
|
||||
<key alias="tableSplitNotSplittable">非合并单元格不能分离。</key>
|
||||
<key alias="missingPropertyEditorErrorMessage">此属性使用的数据类型存在配置错误, 请检查数据类型</key>
|
||||
</area>
|
||||
<area alias="general">
|
||||
<key alias="about">关于</key>
|
||||
@@ -462,7 +436,6 @@
|
||||
<key alias="macro">宏</key>
|
||||
<key alias="mandatory">必填项</key>
|
||||
<key alias="move">移动</key>
|
||||
<key alias="more">更多</key>
|
||||
<key alias="name">名称</key>
|
||||
<key alias="new">新的</key>
|
||||
<key alias="next">下一步</key>
|
||||
@@ -491,7 +464,8 @@
|
||||
<key alias="showPageOnSend">在发送时预览</key>
|
||||
<key alias="size">大小</key>
|
||||
<key alias="sort">排序</key>
|
||||
<key alias="submit">提交</key> <!-- TODO: Translate this -->
|
||||
<key alias="submit">提交</key>
|
||||
<!-- TODO: Translate this -->
|
||||
<key alias="type">类型</key>
|
||||
<key alias="typeToSearch">输入内容开始查找…</key>
|
||||
<key alias="up">上</key>
|
||||
@@ -519,35 +493,23 @@
|
||||
<key alias="embed">嵌入</key>
|
||||
<key alias="selected">已选择</key>
|
||||
</area>
|
||||
|
||||
<area alias="colors">
|
||||
<key alias="black">黑色</key>
|
||||
<key alias="green">绿色</key>
|
||||
<key alias="yellow">黄色</key>
|
||||
<key alias="orange">橙色</key>
|
||||
<key alias="blue">蓝色</key>
|
||||
<key alias="red">红色</key>
|
||||
</area>
|
||||
|
||||
<area alias="shortcuts">
|
||||
<key alias="addTab">添加选项卡</key>
|
||||
<key alias="addProperty">添加属性</key>
|
||||
<key alias="addEditor">添加编辑器</key>
|
||||
<key alias="addTemplate">添加模板</key>
|
||||
<key alias="addChildNode">添加子节点</key>
|
||||
<key alias="addChild">添加子项</key>
|
||||
|
||||
<key alias="editDataType">编辑数据类型</key>
|
||||
|
||||
<key alias="navigateSections">导航节</key>
|
||||
|
||||
<key alias="shortcut">快捷方式</key>
|
||||
<key alias="showShortcuts">显示快捷方式</key>
|
||||
|
||||
<key alias="toggleListView">切换列表视图</key>
|
||||
<key alias="toggleAllowAsRoot">切换允许作为根</key>
|
||||
<key alias="addTab">添加选项卡</key>
|
||||
<key alias="addProperty">添加属性</key>
|
||||
<key alias="addEditor">添加编辑器</key>
|
||||
<key alias="addTemplate">添加模板</key>
|
||||
<key alias="addChildNode">添加子节点</key>
|
||||
<key alias="addChild">添加子项</key>
|
||||
<key alias="editDataType">编辑数据类型</key>
|
||||
<key alias="navigateSections">导航节</key>
|
||||
<key alias="shortcut">快捷方式</key>
|
||||
<key alias="showShortcuts">显示快捷方式</key>
|
||||
<key alias="toggleListView">切换列表视图</key>
|
||||
<key alias="toggleAllowAsRoot">切换允许作为根</key>
|
||||
</area>
|
||||
|
||||
<area alias="graphicheadline">
|
||||
<key alias="backgroundcolor">背景色</key>
|
||||
<key alias="bold">粗体</key>
|
||||
@@ -555,7 +517,6 @@
|
||||
<key alias="font">字体</key>
|
||||
<key alias="text">文本</key>
|
||||
</area>
|
||||
|
||||
<area alias="headers">
|
||||
<key alias="page">页面</key>
|
||||
</area>
|
||||
@@ -585,7 +546,6 @@
|
||||
</p>
|
||||
]]></key>
|
||||
<key alias="databaseUpgradeDone"><![CDATA[数据库已更新到版本 %0%。<br />点击<strong>下一步</strong>继续。]]></key>
|
||||
|
||||
<key alias="databaseUpToDate"><![CDATA[您的数据库已安装!点击<strong>下一步</strong>继续]]></key>
|
||||
<key alias="defaultUserChangePass"><![CDATA[<strong>需要修改默认密码!</strong>]]></key>
|
||||
<key alias="defaultUserDisabled"><![CDATA[<strong>默认账户已禁用或无权访问系统!</strong></p><p>点击<b>下一步</b>继续。]]></key>
|
||||
@@ -678,7 +638,6 @@
|
||||
<key alias="renewSession">已更新,继续工作。</key>
|
||||
</area>
|
||||
<area alias="login">
|
||||
<key alias="greeting0">星期一快乐</key>
|
||||
<key alias="greeting1">星期二快乐</key>
|
||||
<key alias="greeting2">星期三快乐</key>
|
||||
<key alias="greeting3">星期四快乐</key>
|
||||
@@ -697,9 +656,7 @@
|
||||
<key alias="setPasswordConfirmation">您的密码已更新</key>
|
||||
<key alias="resetCodeExpired">您单击的链接无效或已过期</key>
|
||||
<key alias="resetPasswordEmailCopySubject">Umbraco: 重置密码</key>
|
||||
<key alias="resetPasswordEmailCopyFormat">
|
||||
<![CDATA[<p>您的用户名登录到 Umbraco 后台是: <strong>%0%</strong></p><p>点击 <a href="%1%"><strong>这里</strong></a> 重置密码,或复制链接粘贴到您的浏览器访问:</p><p><em>%1%</em></p>]]>
|
||||
</key>
|
||||
<key alias="resetPasswordEmailCopyFormat"><![CDATA[<p>您的用户名登录到 Umbraco 后台是: <strong>%0%</strong></p><p>点击 <a href="%1%"><strong>这里</strong></a> 重置密码,或复制链接粘贴到您的浏览器访问:</p><p><em>%1%</em></p>]]></key>
|
||||
</area>
|
||||
<area alias="main">
|
||||
<key alias="dashboard">仪表板</key>
|
||||
@@ -831,11 +788,9 @@
|
||||
<key alias="paSimpleHelp">如果您只希望提供一个用户名和密码就能访问</key>
|
||||
</area>
|
||||
<area alias="publish">
|
||||
<key alias="contentPublishedFailedAwaitingRelease">
|
||||
<![CDATA[
|
||||
<key alias="contentPublishedFailedAwaitingRelease"><![CDATA[
|
||||
%0% 无法发布, 因为该项在计划发布中。
|
||||
]]>
|
||||
</key>
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedExpired"><![CDATA[
|
||||
%0% 无法发布, 因为该项已过期。
|
||||
]]></key>
|
||||
@@ -847,7 +802,7 @@
|
||||
]]></key>
|
||||
<key alias="contentPublishedFailedByParent"><![CDATA[
|
||||
%0% 不能发布,因为上级页面没有发布。
|
||||
]]></key>
|
||||
]]></key>
|
||||
<key alias="includeUnpublished">包含未发布的子项</key>
|
||||
<key alias="inProgress">正在发布,请稍候…</key>
|
||||
<key alias="inProgressCounter">%0% 中的 %1% 页面已发布…</key>
|
||||
@@ -900,12 +855,8 @@
|
||||
<key alias="users">用户</key>
|
||||
<key alias="help" version="7.0">帮助</key>
|
||||
<key alias="forms">窗体</key>
|
||||
<key alias="analytics">统计</key>
|
||||
</area>
|
||||
<area alias="help">
|
||||
<key alias="goTo">转到</key>
|
||||
<key alias="helpTopicsFor">帮助主题</key>
|
||||
<key alias="videoChaptersFor">视频章节</key>
|
||||
<key alias="theBestUmbracoVideoTutorials">最佳 Umbraco 视频教程</key>
|
||||
</area>
|
||||
<area alias="settings">
|
||||
@@ -925,8 +876,6 @@
|
||||
<key alias="contentTypeUses">该文档类型使用</key>
|
||||
<key alias="asAContentMasterType">作为主控文档类型. 主控文档类型的标签只能在主控文档类型里修改。</key>
|
||||
<key alias="noPropertiesDefinedOnTab">没有字段设置在该标签页</key>
|
||||
<key alias="masterDocumentType">主控文档类型</key>
|
||||
<key alias="createMatchingTemplate">创建匹配模板</key>
|
||||
<key alias="addIcon">添加图标</key>
|
||||
</area>
|
||||
<area alias="sort">
|
||||
@@ -937,8 +886,8 @@
|
||||
<key alias="sortPleaseWait"><![CDATA[正在排序请稍候…]]></key>
|
||||
</area>
|
||||
<area alias="speechBubbles">
|
||||
<key alias="validationFailedHeader">验证</key>
|
||||
<key alias="validationFailedMessage">在保存项之前必须修复验证错误</key>
|
||||
<key alias="validationFailedHeader">验证</key>
|
||||
<key alias="validationFailedMessage">在保存项之前必须修复验证错误</key>
|
||||
<key alias="operationFailedHeader">失败</key>
|
||||
<key alias="invalidUserPermissionsText">用户权限不足, 无法完成操作</key>
|
||||
<key alias="operationCancelledHeader">取消</key>
|
||||
@@ -980,10 +929,6 @@
|
||||
<key alias="languageSaved">语言已保存</key>
|
||||
<key alias="mediaTypeSavedHeader">已保存媒体类型</key>
|
||||
<key alias="memberTypeSavedHeader">已保存成员类型</key>
|
||||
<key alias="pythonErrorHeader">Python脚本未保存</key>
|
||||
<key alias="pythonErrorText">Python脚本因为错误未能保存</key>
|
||||
<key alias="pythonSavedHeader">Python已保存</key>
|
||||
<key alias="pythonSavedText">Python脚本无错误</key>
|
||||
<key alias="templateErrorHeader">模板未保存</key>
|
||||
<key alias="templateErrorText">模板别名相同</key>
|
||||
<key alias="templateSavedHeader">模板已保存</key>
|
||||
@@ -993,11 +938,6 @@
|
||||
<key alias="partialViewSavedText">片段视图保存,无错误。</key>
|
||||
<key alias="partialViewErrorHeader">片段视图未保存</key>
|
||||
<key alias="partialViewErrorText">片段视图因为错误未能保存</key>
|
||||
<key alias="scriptSavedHeader">已保存脚本视图</key>
|
||||
<key alias="scriptSavedText">脚本视图保存时没有发生任何错误!</key>
|
||||
<key alias="scriptErrorHeader">未保存脚本视图</key>
|
||||
<key alias="scriptErrorText">保存文件时出错。</key>
|
||||
<key alias="cssErrorText">保存文件时出错。</key>
|
||||
</area>
|
||||
<area alias="stylesheet">
|
||||
<key alias="aliasHelp">使用CSS语法,如:h1、.redHeader、.blueTex。</key>
|
||||
@@ -1019,27 +959,20 @@
|
||||
<key alias="template">模板</key>
|
||||
</area>
|
||||
<area alias="grid">
|
||||
<key alias="rte">Rich Text Editor</key>
|
||||
<key alias="media">Image</key>
|
||||
<key alias="macro">Macro</key>
|
||||
<key alias="embed">Embed</key>
|
||||
<key alias="headline">Headline</key>
|
||||
<key alias="quote">Quote</key>
|
||||
<key alias="insertControl">选择内容类别</key>
|
||||
<key alias="chooseLayout">选择一项布局</key>
|
||||
<key alias="addRows">添加一行</key>
|
||||
<key alias="addElement">添加内容</key>
|
||||
<key alias="dropElement">丢弃内容</key>
|
||||
<key alias="settingsApplied">设置已应用</key>
|
||||
|
||||
<key alias="contentNotAllowed">此处不允许有该内容</key>
|
||||
<key alias="contentAllowed">此处允许有该内容</key>
|
||||
|
||||
<key alias="clickToEmbed">点击嵌入</key>
|
||||
<key alias="clickToInsertImage">点击添加图片</key>
|
||||
<key alias="placeholderImageCaption">图片说明...</key>
|
||||
<key alias="placeholderWriteHere">在这里输入...</key>
|
||||
|
||||
<key alias="gridLayouts">网格布局</key>
|
||||
<key alias="gridLayoutsDetail">布局是网格编辑器的整体工作区域, 通常只需要一个或两个不同的布局</key>
|
||||
<key alias="addGridLayout">添加网络布局</key>
|
||||
@@ -1048,18 +981,12 @@
|
||||
<key alias="rowConfigurationsDetail">行是水平排列的预定义单元格</key>
|
||||
<key alias="addRowConfiguration">添加行配置</key>
|
||||
<key alias="addRowConfigurationDetail">通过设置单元格宽度和添加其他单元格来调整行</key>
|
||||
|
||||
<key alias="columns">列</key>
|
||||
<key alias="columnsDetails">网格布局中的总和列数</key>
|
||||
|
||||
<key alias="settings">设置</key>
|
||||
<key alias="settingsDetails">配置编辑器可以更改的设置</key>
|
||||
|
||||
<key alias="styles">样式</key>
|
||||
<key alias="stylesDetails">配置编辑器可以更改的样式</key>
|
||||
|
||||
<key alias="settingDialogDetails">输入的 json 配置有效, 设置才可保存</key>
|
||||
|
||||
<key alias="allowAllEditors">允许所有的编辑器</key>
|
||||
<key alias="allowAllRowConfigurations">允许所有行配置</key>
|
||||
<key alias="setAsDefault">设置为默认值</key>
|
||||
@@ -1067,69 +994,46 @@
|
||||
<key alias="chooseDefault">选择默认值</key>
|
||||
<key alias="areAdded">已增加</key>
|
||||
</area>
|
||||
|
||||
<area alias="contentTypeEditor">
|
||||
|
||||
<key alias="compositions">组合</key>
|
||||
<key alias="noTabs">您没有添加任何选项卡</key>
|
||||
<key alias="addNewTab">添加新选项卡</key>
|
||||
<key alias="addAnotherTab">添加其他选项卡</key>
|
||||
<key alias="inheritedFrom">继承自</key>
|
||||
<key alias="addProperty">添加属性</key>
|
||||
<key alias="requiredLabel">必需的标签</key>
|
||||
|
||||
<key alias="enableListViewHeading">启用列表视图</key>
|
||||
<key alias="enableListViewDescription">配置内容项以显示其子项的可排序和搜索列表, 这些子项将不会显示在树中</key>
|
||||
|
||||
<key alias="allowedTemplatesHeading">允许的模板</key>
|
||||
<key alias="allowedTemplatesDescription">选择允许在该类型的内容上使用哪些模板编辑器</key>
|
||||
|
||||
<key alias="allowAsRootHeading">允许作为根</key>
|
||||
<key alias="allowAsRootDescription">允许编辑器在内容树的根目录中创建此类型的内容</key>
|
||||
<key alias="allowAsRootCheckbox">是 - 允许根中的此类型的内容</key>
|
||||
|
||||
<key alias="childNodesHeading">允许的子节点类型</key>
|
||||
<key alias="childNodesDescription">允许在该类型的内容下方创建指定类型的内容</key>
|
||||
|
||||
<key alias="chooseChildNode">选择子节点</key>
|
||||
|
||||
<key alias="compositionsDescription">从现有文档类型继承选项卡和属性。如果存在同名的选项卡, 则新选项卡将添加到当前文档类型或合并。</key>
|
||||
<key alias="compositionInUse">此内容类型在组合中使用, 因此不能自行组成。</key>
|
||||
<key alias="noAvailableCompositions">没有可供组合使用的内容类型。</key>
|
||||
|
||||
<key alias="availableEditors">可用编辑器</key>
|
||||
<key alias="reuse">重用</key>
|
||||
<key alias="editorSettings">编辑器设置</key>
|
||||
|
||||
<key alias="configuration">配置</key>
|
||||
|
||||
<key alias="yesDelete">是,删除</key>
|
||||
|
||||
<key alias="movedUnderneath">被移动到下方</key>
|
||||
<key alias="copiedUnderneath">被复制到下面</key>
|
||||
<key alias="folderToMove">选择要移动的文件夹</key>
|
||||
<key alias="folderToCopy">选择要复制的文件夹</key>
|
||||
<key alias="structureBelow">在下面的树结构中</key>
|
||||
|
||||
<key alias="allDocumentTypes">所有文档类型</key>
|
||||
<key alias="allDocuments">所有文档</key>
|
||||
<key alias="allMediaItems">所有媒体项目</key>
|
||||
|
||||
<key alias="usingThisDocument">使用此文档类型将被永久删除, 请确认您还要删除这些文件。</key>
|
||||
<key alias="usingThisMedia">使用此媒体类型将被永久删除, 请确认您也要删除这些。</key>
|
||||
<key alias="usingThisMember">使用此成员类型将被永久删除, 请确认您想要删除这些</key>
|
||||
|
||||
<key alias="andAllDocuments">和所有使用此类型的文档</key>
|
||||
<key alias="andAllMediaItems">和所有使用此类型的媒体项目</key>
|
||||
<key alias="andAllMembers">和使用此类型的所有成员</key>
|
||||
|
||||
<key alias="thisEditorUpdateSettings">使用此编辑器将用新设置更新</key>
|
||||
|
||||
<key alias="memberCanEdit">成员可编辑</key>
|
||||
<key alias="showOnMemberProfile">显示成员配置文件</key>
|
||||
|
||||
<key alias="compositions">组合</key>
|
||||
<key alias="noTabs">您没有添加任何选项卡</key>
|
||||
<key alias="inheritedFrom">继承自</key>
|
||||
<key alias="addProperty">添加属性</key>
|
||||
<key alias="requiredLabel">必需的标签</key>
|
||||
<key alias="enableListViewHeading">启用列表视图</key>
|
||||
<key alias="enableListViewDescription">配置内容项以显示其子项的可排序和搜索列表, 这些子项将不会显示在树中</key>
|
||||
<key alias="allowedTemplatesHeading">允许的模板</key>
|
||||
<key alias="allowedTemplatesDescription">选择允许在该类型的内容上使用哪些模板编辑器</key>
|
||||
<key alias="allowAsRootHeading">允许作为根</key>
|
||||
<key alias="allowAsRootDescription">允许编辑器在内容树的根目录中创建此类型的内容</key>
|
||||
<key alias="childNodesHeading">允许的子节点类型</key>
|
||||
<key alias="childNodesDescription">允许在该类型的内容下方创建指定类型的内容</key>
|
||||
<key alias="chooseChildNode">选择子节点</key>
|
||||
<key alias="compositionsDescription">从现有文档类型继承选项卡和属性。如果存在同名的选项卡, 则新选项卡将添加到当前文档类型或合并。</key>
|
||||
<key alias="compositionInUse">此内容类型在组合中使用, 因此不能自行组成。</key>
|
||||
<key alias="noAvailableCompositions">没有可供组合使用的内容类型。</key>
|
||||
<key alias="availableEditors">可用编辑器</key>
|
||||
<key alias="reuse">重用</key>
|
||||
<key alias="editorSettings">编辑器设置</key>
|
||||
<key alias="configuration">配置</key>
|
||||
<key alias="yesDelete">是,删除</key>
|
||||
<key alias="movedUnderneath">被移动到下方</key>
|
||||
<key alias="copiedUnderneath">被复制到下面</key>
|
||||
<key alias="folderToMove">选择要移动的文件夹</key>
|
||||
<key alias="folderToCopy">选择要复制的文件夹</key>
|
||||
<key alias="structureBelow">在下面的树结构中</key>
|
||||
<key alias="allDocumentTypes">所有文档类型</key>
|
||||
<key alias="allDocuments">所有文档</key>
|
||||
<key alias="allMediaItems">所有媒体项目</key>
|
||||
<key alias="usingThisDocument">使用此文档类型将被永久删除, 请确认您还要删除这些文件。</key>
|
||||
<key alias="usingThisMedia">使用此媒体类型将被永久删除, 请确认您也要删除这些。</key>
|
||||
<key alias="usingThisMember">使用此成员类型将被永久删除, 请确认您想要删除这些</key>
|
||||
<key alias="andAllDocuments">和所有使用此类型的文档</key>
|
||||
<key alias="andAllMediaItems">和所有使用此类型的媒体项目</key>
|
||||
<key alias="andAllMembers">和使用此类型的所有成员</key>
|
||||
<key alias="memberCanEdit">成员可编辑</key>
|
||||
<key alias="showOnMemberProfile">显示成员配置文件</key>
|
||||
</area>
|
||||
|
||||
<area alias="templateEditor">
|
||||
<key alias="alternativeField">替代字段</key>
|
||||
<key alias="alternativeText">替代文本</key>
|
||||
@@ -1161,15 +1065,7 @@
|
||||
<key alias="withTime">是,含时间,分隔符为: </key>
|
||||
</area>
|
||||
<area alias="translation">
|
||||
<key alias="assignedTasks">标记为您的任务</key>
|
||||
<key alias="assignedTasksHelp"><![CDATA[ 下面的翻译任务<strong>分配给您</strong>. 查看详情, 点击“详情”或页名。
|
||||
如果需要XML格式,请点击“下载 XML”链接。<br/>
|
||||
关闭翻译任务,请返回详细视图点击“关闭”按钮。
|
||||
]]></key>
|
||||
<key alias="closeTask">关闭任务</key>
|
||||
<key alias="details">翻译详情</key>
|
||||
<key alias="downloadAllAsXml">将翻译任务下载为xml</key>
|
||||
<key alias="downloadTaskAsXml">下载 XML</key>
|
||||
<key alias="DownloadXmlDTD">下载 XML DTD</key>
|
||||
<key alias="fields">字段</key>
|
||||
<key alias="includeSubpages">包含子页</key>
|
||||
@@ -1188,18 +1084,9 @@
|
||||
|
||||
来自Umbraco 机器人的祝福
|
||||
]]></key>
|
||||
<key alias="mailSubject">[%0%]翻译任务:%1%</key>
|
||||
<key alias="noTranslators">没有翻译员,请创建翻译员角色的用户。</key>
|
||||
<key alias="ownedTasks">您创建的任务</key>
|
||||
<key alias="ownedTasksHelp"><![CDATA[ 下面是<strong>您创建</strong>的页面. 查看详情, 点击“详情” 或页名.
|
||||
如果需要XML格式,请点击“下载 Xml”链接。<br/>
|
||||
关闭翻译任务,请返回详细视图点击“关闭”按钮。
|
||||
]]></key>
|
||||
<key alias="pageHasBeenSendToTranslation">页面'%0%'已经发送给翻译</key>
|
||||
<key alias="noLanguageSelected">请选择内容应翻译成的语言</key>
|
||||
<key alias="sendToTranslate">发送页面'%0%'以便翻译</key>
|
||||
<key alias="taskAssignedBy">分配者</key>
|
||||
<key alias="taskOpened">任务开启</key>
|
||||
<key alias="totalWords">总字数</key>
|
||||
<key alias="translateTo">翻译到</key>
|
||||
<key alias="translationDone">翻译完成。</key>
|
||||
@@ -1230,7 +1117,6 @@
|
||||
<key alias="relationTypes">关系类型</key>
|
||||
<key alias="packager">扩展包</key>
|
||||
<key alias="packages">扩展包</key>
|
||||
<key alias="python">Python文件</key>
|
||||
<key alias="repositories">从在线程序库安装</key>
|
||||
<key alias="runway">安装Runway</key>
|
||||
<key alias="runwayModules">Runway模块</key>
|
||||
@@ -1291,120 +1177,103 @@
|
||||
<key alias="usertype">用户类型</key>
|
||||
<key alias="userTypes">用户类型</key>
|
||||
<key alias="writer">撰稿人</key>
|
||||
<key alias="translator">翻译人</key>
|
||||
<key alias="change">更改</key>
|
||||
<key alias="yourProfile" version="7.0">你的资料</key>
|
||||
<key alias="yourHistory" version="7.0">你最近的历史信息</key>
|
||||
<key alias="sessionExpires" version="7.0">会话过期于</key>
|
||||
</area>
|
||||
<area alias="validation">
|
||||
<key alias="validation">验证</key>
|
||||
<key alias="validateAsEmail">验证为电子邮件</key>
|
||||
<key alias="validateAsNumber">验证为数字</key>
|
||||
<key alias="validateAsUrl">验证为 url</key>
|
||||
<key alias="enterCustomValidation">...或输入自定义验证</key>
|
||||
<key alias="fieldIsMandatory">字段是强制性的</key>
|
||||
<key alias="validation">验证</key>
|
||||
<key alias="validateAsEmail">验证为电子邮件</key>
|
||||
<key alias="validateAsNumber">验证为数字</key>
|
||||
<key alias="validateAsUrl">验证为 url</key>
|
||||
<key alias="enterCustomValidation">...或输入自定义验证</key>
|
||||
<key alias="fieldIsMandatory">字段是强制性的</key>
|
||||
</area>
|
||||
<area alias="healthcheck">
|
||||
<!-- The following keys get these tokens passed in:
|
||||
<!-- The following keys get these tokens passed in:
|
||||
0: Current value
|
||||
1: Recommended value
|
||||
2: XPath
|
||||
3: Configuration file path
|
||||
-->
|
||||
<key alias="checkSuccessMessage">Value is set to the recommended value: '%0%'.</key>
|
||||
<key alias="rectifySuccessMessage">Value was set to '%1%' for XPath '%2%' in configuration file '%3%'.</key>
|
||||
<key alias="rectifySuccessMessage">Value was set to '%1%' for XPath '%2%' in configuration file '%3%'.</key>
|
||||
<key alias="checkErrorMessageDifferentExpectedValue">Expected value '%1%' for '%2%' in configuration file '%3%', but found '%0%'.</key>
|
||||
<key alias="checkErrorMessageUnexpectedValue">Found unexpected value '%0%' for '%2%' in configuration file '%3%'.</key>
|
||||
|
||||
<!-- The following keys get these tokens passed in:
|
||||
<!-- The following keys get these tokens passed in:
|
||||
0: Current value
|
||||
1: Recommended value
|
||||
-->
|
||||
<key alias="customErrorsCheckSuccessMessage">Custom errors are set to '%0%'.</key>
|
||||
<key alias="customErrorsCheckErrorMessage">Custom errors are currently set to '%0%'. It is recommended to set this to '%1%' before go live.</key>
|
||||
<key alias="customErrorsCheckRectifySuccessMessage">Custom errors successfully set to '%0%'.</key>
|
||||
|
||||
<key alias="macroErrorModeCheckSuccessMessage">MacroErrors are set to '%0%'.</key>
|
||||
<key alias="macroErrorModeCheckErrorMessage">MacroErrors are set to '%0%' which will prevent some or all pages in your site from loading completely if there are any errors in macros. Rectifying this will set the value to '%1%'.</key>
|
||||
<key alias="macroErrorModeCheckRectifySuccessMessage">MacroErrors are now set to '%0%'.</key>
|
||||
|
||||
<!-- The following keys get these tokens passed in:
|
||||
<key alias="customErrorsCheckSuccessMessage">Custom errors are set to '%0%'.</key>
|
||||
<key alias="customErrorsCheckErrorMessage">Custom errors are currently set to '%0%'. It is recommended to set this to '%1%' before go live.</key>
|
||||
<key alias="customErrorsCheckRectifySuccessMessage">Custom errors successfully set to '%0%'.</key>
|
||||
<key alias="macroErrorModeCheckSuccessMessage">MacroErrors are set to '%0%'.</key>
|
||||
<key alias="macroErrorModeCheckErrorMessage">MacroErrors are set to '%0%' which will prevent some or all pages in your site from loading completely if there are any errors in macros. Rectifying this will set the value to '%1%'.</key>
|
||||
<key alias="macroErrorModeCheckRectifySuccessMessage">MacroErrors are now set to '%0%'.</key>
|
||||
<!-- The following keys get these tokens passed in:
|
||||
0: Current value
|
||||
1: Recommended value
|
||||
2: Server version
|
||||
-->
|
||||
<key alias="trySkipIisCustomErrorsCheckSuccessMessage">Try Skip IIS Custom Errors is set to '%0%' and you're using IIS version '%1%'.</key>
|
||||
<key alias="trySkipIisCustomErrorsCheckErrorMessage">Try Skip IIS Custom Errors is currently '%0%'. It is recommended to set this to '%1%' for your IIS version (%2%).</key>
|
||||
<key alias="trySkipIisCustomErrorsCheckRectifySuccessMessage">Try Skip IIS Custom Errors successfully set to '%0%'.</key>
|
||||
|
||||
<!-- The following keys get predefined tokens passed in that are not all the same, like above -->
|
||||
<key alias="configurationServiceFileNotFound">File does not exist: '%0%'.</key>
|
||||
<key alias="configurationServiceNodeNotFound"><![CDATA[Unable to find <strong>'%0%'</strong> in config file <strong>'%1%'</strong>.]]></key>
|
||||
<key alias="configurationServiceError">There was an error, check log for full error: %0%.</key>
|
||||
|
||||
<key alias="xmlDataIntegrityCheckMembers">Members - Total XML: %0%, Total: %1%, Total invalid: %2%</key>
|
||||
<key alias="xmlDataIntegrityCheckMedia">Media - Total XML: %0%, Total: %1%, Total invalid: %2%</key>
|
||||
<key alias="xmlDataIntegrityCheckContent">Content - Total XML: %0%, Total published: %1%, Total invalid: %2%</key>
|
||||
|
||||
<key alias="httpsCheckValidCertificate">Your site certificate was marked as valid.</key>
|
||||
<key alias="httpsCheckInvalidCertificate">Certificate validation error: '%0%'</key>
|
||||
<key alias="httpsCheckInvalidUrl">Error pinging the URL %0% - '%1%'</key>
|
||||
<key alias="httpsCheckIsCurrentSchemeHttps">You are currently %0% viewing the site using the HTTPS scheme.</key>
|
||||
<key alias="httpsCheckConfigurationRectifyNotPossible">The appSetting 'umbracoUseSSL' is set to 'false' in your web.config file. Once you access this site using the HTTPS scheme, that should be set to 'true'.</key>
|
||||
<key alias="httpsCheckConfigurationCheckResult">The appSetting 'umbracoUseSSL' is set to '%0%' in your web.config file, your cookies are %1% marked as secure.</key>
|
||||
<key alias="httpsCheckEnableHttpsError">Could not update the 'umbracoUseSSL' setting in your web.config file. Error: %0%</key>
|
||||
|
||||
<!-- The following keys don't get tokens passed in -->
|
||||
<key alias="httpsCheckEnableHttpsButton">Enable HTTPS</key>
|
||||
<key alias="httpsCheckEnableHttpsDescription">Sets umbracoSSL setting to true in the appSettings of the web.config file.</key>
|
||||
<key alias="httpsCheckEnableHttpsSuccess">The appSetting 'umbracoUseSSL' is now set to 'true' in your web.config file, your cookies will be marked as secure.</key>
|
||||
|
||||
<key alias="rectifyButton">Fix</key>
|
||||
<key alias="trySkipIisCustomErrorsCheckSuccessMessage">Try Skip IIS Custom Errors is set to '%0%' and you're using IIS version '%1%'.</key>
|
||||
<key alias="trySkipIisCustomErrorsCheckErrorMessage">Try Skip IIS Custom Errors is currently '%0%'. It is recommended to set this to '%1%' for your IIS version (%2%).</key>
|
||||
<key alias="trySkipIisCustomErrorsCheckRectifySuccessMessage">Try Skip IIS Custom Errors successfully set to '%0%'.</key>
|
||||
<!-- The following keys get predefined tokens passed in that are not all the same, like above -->
|
||||
<key alias="configurationServiceFileNotFound">File does not exist: '%0%'.</key>
|
||||
<key alias="configurationServiceNodeNotFound"><![CDATA[Unable to find <strong>'%0%'</strong> in config file <strong>'%1%'</strong>.]]></key>
|
||||
<key alias="configurationServiceError">There was an error, check log for full error: %0%.</key>
|
||||
<key alias="xmlDataIntegrityCheckMembers">Members - Total XML: %0%, Total: %1%, Total invalid: %2%</key>
|
||||
<key alias="xmlDataIntegrityCheckMedia">Media - Total XML: %0%, Total: %1%, Total invalid: %2%</key>
|
||||
<key alias="xmlDataIntegrityCheckContent">Content - Total XML: %0%, Total published: %1%, Total invalid: %2%</key>
|
||||
<key alias="httpsCheckValidCertificate">Your site certificate was marked as valid.</key>
|
||||
<key alias="httpsCheckInvalidCertificate">Certificate validation error: '%0%'</key>
|
||||
<key alias="httpsCheckInvalidUrl">Error pinging the URL %0% - '%1%'</key>
|
||||
<key alias="httpsCheckIsCurrentSchemeHttps">You are currently %0% viewing the site using the HTTPS scheme.</key>
|
||||
<key alias="httpsCheckConfigurationRectifyNotPossible">The appSetting 'umbracoUseSSL' is set to 'false' in your web.config file. Once you access this site using the HTTPS scheme, that should be set to 'true'.</key>
|
||||
<key alias="httpsCheckConfigurationCheckResult">The appSetting 'umbracoUseSSL' is set to '%0%' in your web.config file, your cookies are %1% marked as secure.</key>
|
||||
<key alias="httpsCheckEnableHttpsError">Could not update the 'umbracoUseSSL' setting in your web.config file. Error: %0%</key>
|
||||
<!-- The following keys don't get tokens passed in -->
|
||||
<key alias="httpsCheckEnableHttpsButton">Enable HTTPS</key>
|
||||
<key alias="httpsCheckEnableHttpsDescription">Sets umbracoSSL setting to true in the appSettings of the web.config file.</key>
|
||||
<key alias="httpsCheckEnableHttpsSuccess">The appSetting 'umbracoUseSSL' is now set to 'true' in your web.config file, your cookies will be marked as secure.</key>
|
||||
<key alias="rectifyButton">Fix</key>
|
||||
<key alias="cannotRectifyShouldNotEqual">Cannot fix a check with a value comparison type of 'ShouldNotEqual'.</key>
|
||||
<key alias="cannotRectifyShouldEqualWithValue">Cannot fix a check with a value comparison type of 'ShouldEqual' with a provided value.</key>
|
||||
<key alias="valueToRectifyNotProvided">Value to fix check not provided.</key>
|
||||
|
||||
<key alias="compilationDebugCheckSuccessMessage">Debug compilation mode is disabled.</key>
|
||||
<key alias="compilationDebugCheckErrorMessage">Debug compilation mode is currently enabled. It is recommended to disable this setting before go live.</key>
|
||||
<key alias="compilationDebugCheckRectifySuccessMessage">Debug compilation mode successfully disabled.</key>
|
||||
|
||||
<key alias="traceModeCheckSuccessMessage">Trace mode is disabled.</key>
|
||||
<key alias="traceModeCheckErrorMessage">Trace mode is currently enabled. It is recommended to disable this setting before go live.</key>
|
||||
<key alias="traceModeCheckRectifySuccessMessage">Trace mode successfully disabled.</key>
|
||||
|
||||
<key alias="compilationDebugCheckSuccessMessage">Debug compilation mode is disabled.</key>
|
||||
<key alias="compilationDebugCheckErrorMessage">Debug compilation mode is currently enabled. It is recommended to disable this setting before go live.</key>
|
||||
<key alias="compilationDebugCheckRectifySuccessMessage">Debug compilation mode successfully disabled.</key>
|
||||
<key alias="traceModeCheckSuccessMessage">Trace mode is disabled.</key>
|
||||
<key alias="traceModeCheckErrorMessage">Trace mode is currently enabled. It is recommended to disable this setting before go live.</key>
|
||||
<key alias="traceModeCheckRectifySuccessMessage">Trace mode successfully disabled.</key>
|
||||
<key alias="folderPermissionsCheckMessage">All folders have the correct permissions set.</key>
|
||||
<!-- The following keys get these tokens passed in:
|
||||
0: Comma delimitted list of failed folder paths
|
||||
-->
|
||||
<key alias="requiredFolderPermissionFailed"><![CDATA[The following folders must be set up with modify permissions but could not be acccessed: <strong>%0%</strong>.]]></key>
|
||||
<key alias="optionalFolderPermissionFailed"><![CDATA[The following folders must be set up with modify permissions for certain Umbraco operations to function but could not be acccessed: <strong>%0%</strong>. If they aren't being written to no action need be taken.]]></key>
|
||||
|
||||
<key alias="filePermissionsCheckMessage">All files have the correct permissions set.</key>
|
||||
<!-- The following keys get these tokens passed in:
|
||||
0: Comma delimitted list of failed folder paths
|
||||
-->
|
||||
<key alias="requiredFilePermissionFailed"><![CDATA[The following files must be set up with write permissions but could not be acccessed: <strong>%0%</strong>.]]></key>
|
||||
<key alias="optionalFilePermissionFailed"><![CDATA[The following files must be set up with write permissions for certain Umbraco operations to function but could not be acccessed: <strong>%0%</strong>. If they aren't being written to no action need be taken.]]></key>
|
||||
|
||||
<key alias="clickJackingCheckHeaderFound"><![CDATA[The header or meta-tag <strong>X-Frame-Options</strong> used to control whether a site can be IFRAMEd by another was found.]]></key>
|
||||
<key alias="clickJackingCheckHeaderNotFound"><![CDATA[The header or meta-tag <strong>X-Frame-Options</strong> used to control whether a site can be IFRAMEd by another was not found.]]></key>
|
||||
<key alias="setHeaderInConfig">Set Header in Config</key>
|
||||
<key alias="clickJackingSetHeaderInConfigDescription">Adds a value to the httpProtocol/customHeaders section of web.config to prevent the site being IFRAMEd by other websites.</key>
|
||||
<key alias="clickJackingSetHeaderInConfigSuccess">A setting to create a header preventing IFRAMEing of the site by other websites has been added to your web.config file.</key>
|
||||
<key alias="setHeaderInConfigError">Could not update web.config file. Error: %0%</key>
|
||||
|
||||
<!-- The following key get these tokens passed in:
|
||||
0: Comma delimitted list of headers found
|
||||
-->
|
||||
<key alias="excessiveHeadersFound"><![CDATA[The following headers revealing information about the website technology were found: <strong>%0%</strong>.]]></key>
|
||||
<key alias="excessiveHeadersNotFound">No headers revealing information about the website technology were found.</key>
|
||||
|
||||
<key alias="smtpMailSettingsNotFound">In the Web.config file, system.net/mailsettings could not be found.</key>
|
||||
<key alias="smtpMailSettingsHostNotConfigured">In the Web.config file system.net/mailsettings section, the host is not configured.</key>
|
||||
<key alias="smtpMailSettingsConnectionSuccess">SMTP settings are configured correctly and the service is operating as expected.</key>
|
||||
<key alias="smtpMailSettingsConnectionFail">The SMTP server configured with host '%0%' and port '%1%' could not be reached. Please check to ensure the SMTP settings in the Web.config file system.net/mailsettings are correct.</key>
|
||||
|
||||
<key alias="notificationEmailsCheckSuccessMessage"><![CDATA[Notification email has been set to <strong>%0%</strong>.]]></key>
|
||||
<key alias="notificationEmailsCheckErrorMessage"><![CDATA[Notification email is still set to the default value of <strong>%0%</strong>.]]></key>
|
||||
</area>
|
||||
@@ -1425,4 +1294,4 @@
|
||||
<key alias="enabledConfirm">现在已启用 url 跟踪程序。</key>
|
||||
<key alias="enableError">启用 url 跟踪程序时出错, 可以在日志文件中找到更多信息。</key>
|
||||
</area>
|
||||
</language>
|
||||
</language>
|
||||
@@ -67,7 +67,6 @@
|
||||
<area alias="buttons">
|
||||
<key alias="clearSelection">清除選擇</key>
|
||||
<key alias="select">選擇</key>
|
||||
<key alias="selectCurrentFolder">選擇目前資料夾</key>
|
||||
<key alias="somethingElse">做別的事情</key>
|
||||
<key alias="bold">粗體</key>
|
||||
<key alias="deindent">取消段落縮進</key>
|
||||
@@ -96,7 +95,6 @@
|
||||
<key alias="styleChoose">選擇樣式</key>
|
||||
<key alias="styleShow">顯示樣式</key>
|
||||
<key alias="tableInsert">插入表格</key>
|
||||
<key alias="generateModels">產生模組</key>
|
||||
</area>
|
||||
<area alias="changeDocType">
|
||||
<key alias="changeDocTypeInstruction">要更改所選節點的文檔類型,先在列表中選擇合適的文檔類型。</key>
|
||||
@@ -175,10 +173,7 @@
|
||||
</area>
|
||||
<area alias="media">
|
||||
<key alias="clickToUpload">點選以便上傳</key>
|
||||
<key alias="dropFilesHere">拖曳檔案至此...</key>
|
||||
<key alias="urls">媒體連結</key>
|
||||
<key alias="orClickHereToUpload">或按這裡選擇檔案</key>
|
||||
<key alias="onlyAllowedFiles">只允許檔案類型為</key>
|
||||
<key alias="maxFileSize">檔案大小上限為</key>
|
||||
</area>
|
||||
<area alias="member">
|
||||
@@ -278,13 +273,10 @@
|
||||
<key alias="thumbnailimageclickfororiginal">點擊圖片查看完整大小</key>
|
||||
<key alias="treepicker">拾取項</key>
|
||||
<key alias="viewCacheItem">查看緩存項</key>
|
||||
<key alias="createFolder">新增資料夾...</key>
|
||||
<key alias="relateToOriginalLabel">與原本相關</key>
|
||||
<key alias="theFriendliestCommunity">最友善的社群</key>
|
||||
<key alias="linkToPage">頁面連結</key>
|
||||
<key alias="openInNewWindow">打開此連結文檔至新視窗或標籤頁</key>
|
||||
<key alias="openInFullBody">打開此連結文檔至全新視窗</key>
|
||||
<key alias="openInParentFrame">打開此連結文檔在原本視窗中</key>
|
||||
<key alias="linkToMedia">媒體連結</key>
|
||||
<key alias="selectMedia">選擇媒體</key>
|
||||
<key alias="selectIcon">選擇圖示</key>
|
||||
@@ -307,7 +299,7 @@
|
||||
</area>
|
||||
<area alias="dictionaryItem">
|
||||
<key alias="description"><![CDATA[
|
||||
為此字典項目 '<em>%0%</em>' 編輯不同語言版本,<br />您可以在左方選單「語言」中增添新的語言
|
||||
為此字典項目 '<em>%0%</em>' 編輯不同語言版本,<br />您可以在左方選單「語言」中增添新的語言
|
||||
]]></key>
|
||||
<key alias="displayName">語言名稱</key>
|
||||
</area>
|
||||
@@ -325,20 +317,13 @@
|
||||
<key alias="email">輸入您的電子郵件</key>
|
||||
</area>
|
||||
<area alias="editcontenttype">
|
||||
<key alias="allowAtRoot" version="7.2">允許放置於根節點</key>
|
||||
<key alias="allowAtRootDesc" version="7.2">只有勾選「允許放置於根節點」的內容種類可以放在內容樹或媒體樹的最頂端</key>
|
||||
<key alias="allowedchildnodetypes">允許子項節點類型</key>
|
||||
<key alias="contenttypecompositions">文檔種類集合</key>
|
||||
<key alias="create">創建</key>
|
||||
<key alias="deletetab">刪除選項卡</key>
|
||||
<key alias="description">描述</key>
|
||||
<key alias="newtab">新建選項卡</key>
|
||||
<key alias="tab">選項卡</key>
|
||||
<key alias="thumbnail">縮略圖</key>
|
||||
<key alias="hasListView">允許清單檢視</key>
|
||||
<key alias="hasListViewDesc" version="7.2">允許內容項目顯示成可以排列及搜尋的清單,子項目不會被顯示</key>
|
||||
<key alias="currentListView" version="7.2">目前清單檢視</key>
|
||||
<key alias="currentListViewDesc" version="7.2">作用中的清單檢視資料類別</key>
|
||||
<key alias="createListView" version="7.2">新增自訂清單檢視</key>
|
||||
<key alias="removeListView" version="7.2">移除自訂清單檢視</key>
|
||||
</area>
|
||||
@@ -376,19 +361,14 @@
|
||||
<key alias="filePermissionsError">許可權有問題,訪問指定文檔或資料夾失敗!</key>
|
||||
<key alias="macroErrorLoadingPartialView">讀取片段視圖腳本錯誤(檔案:%0%)</key>
|
||||
<key alias="macroErrorLoadingUsercontrol">讀取使用者控制項 %0% 錯誤</key>
|
||||
<key alias="macroErrorLoadingCustomControl">讀取使用者控制項 %0% 錯誤(組件:%0%,類別:%1%)</key>
|
||||
<key alias="macroErrorLoadingMacroEngineScript">讀取巨集引擎腳本錯誤(檔案:%0%)</key>
|
||||
<key alias="missingTitle">請輸入標題</key>
|
||||
<key alias="missingType">請選擇類型</key>
|
||||
<key alias="pictureResizeBiggerThanOrg">圖片尺寸大於原始尺寸不會提高圖片品質,您確定要把圖片尺寸變大嗎?</key>
|
||||
<key alias="pythonErrorHeader">python腳本錯誤</key>
|
||||
<key alias="pythonErrorText">python腳本未保存,因為包含錯誤。</key>
|
||||
<key alias="startNodeDoesNotExists">預設打開頁面不存在,請聯繫管理員</key>
|
||||
<key alias="stylesMustMarkBeforeSelect">請先選擇內容,再設置樣式。</key>
|
||||
<key alias="stylesNoStylesOnPage">沒有可用的樣式</key>
|
||||
<key alias="tableColMergeLeft">請把游標放在您要合併的兩個儲存格中的左邊儲存格</key>
|
||||
<key alias="tableSplitNotSplittable">非合併儲存格不能分離。</key>
|
||||
<key alias="missingPropertyEditorErrorMessage">這是此屬性所使用的資料類別設定錯誤,請檢查資料類別</key>
|
||||
</area>
|
||||
<area alias="general">
|
||||
<key alias="about">關於</key>
|
||||
@@ -447,7 +427,6 @@
|
||||
<key alias="macro">巨集</key>
|
||||
<key alias="mandatory">必要</key>
|
||||
<key alias="move">移動</key>
|
||||
<key alias="more">更多</key>
|
||||
<key alias="name">名稱</key>
|
||||
<key alias="new">新的</key>
|
||||
<key alias="next">下一步</key>
|
||||
@@ -505,12 +484,7 @@
|
||||
<key alias="selected">選取的</key>
|
||||
</area>
|
||||
<area alias="colors">
|
||||
<key alias="black">黑</key>
|
||||
<key alias="green">綠</key>
|
||||
<key alias="yellow">黃</key>
|
||||
<key alias="orange">橘</key>
|
||||
<key alias="blue">藍</key>
|
||||
<key alias="red">紅</key>
|
||||
</area>
|
||||
<area alias="shortcuts">
|
||||
<key alias="addTab">增加標籤頁</key>
|
||||
@@ -651,7 +625,6 @@
|
||||
<key alias="renewSession">已更新,繼續工作。</key>
|
||||
</area>
|
||||
<area alias="login">
|
||||
<key alias="greeting0">超級星期天快樂</key>
|
||||
<key alias="greeting1">瘋狂星期一快樂</key>
|
||||
<key alias="greeting2">熱鬧星期二快樂</key>
|
||||
<key alias="greeting3">美妙星期三快樂</key>
|
||||
@@ -698,7 +671,7 @@
|
||||
|
||||
這是一封自動產生的信件來通知您 %1% 工作
|
||||
已經在頁面 %2% 上由使用者 %3% 執行完成
|
||||
|
||||
|
||||
|
||||
請移至下列網址編輯: http://%4%/#/content/content/edit/%5%
|
||||
|
||||
@@ -867,12 +840,8 @@
|
||||
<key alias="users">用戶</key>
|
||||
<key alias="help" version="7.0">說明</key>
|
||||
<key alias="forms">表單</key>
|
||||
<key alias="analytics">統計</key>
|
||||
</area>
|
||||
<area alias="help">
|
||||
<key alias="goTo">移至</key>
|
||||
<key alias="helpTopicsFor">說明主題為</key>
|
||||
<key alias="videoChaptersFor">影片主題為</key>
|
||||
<key alias="theBestUmbracoVideoTutorials">最好的Umbraco影片教學</key>
|
||||
</area>
|
||||
<area alias="settings">
|
||||
@@ -892,8 +861,6 @@
|
||||
<key alias="contentTypeUses">該文檔類型使用</key>
|
||||
<key alias="asAContentMasterType">作為主控文件類型. 主控文件類型的標籤只能在主控文件類型裡修改。</key>
|
||||
<key alias="noPropertiesDefinedOnTab">沒有欄位設置在該標籤頁</key>
|
||||
<key alias="masterDocumentType">主文檔類別</key>
|
||||
<key alias="createMatchingTemplate">新增對應範本</key>
|
||||
<key alias="addIcon">增加圖示</key>
|
||||
</area>
|
||||
<area alias="sort">
|
||||
@@ -947,10 +914,6 @@
|
||||
<key alias="languageSaved">語言已保存</key>
|
||||
<key alias="mediaTypeSavedHeader">媒體類別已儲存</key>
|
||||
<key alias="memberTypeSavedHeader">會員類別已儲存</key>
|
||||
<key alias="pythonErrorHeader">Python腳本未保存</key>
|
||||
<key alias="pythonErrorText">Python腳本因為錯誤未能保存</key>
|
||||
<key alias="pythonSavedHeader">Python已保存</key>
|
||||
<key alias="pythonSavedText">Python腳本無錯誤</key>
|
||||
<key alias="templateErrorHeader">範本未保存</key>
|
||||
<key alias="templateErrorText">範本別名相同</key>
|
||||
<key alias="templateSavedHeader">範本已保存</key>
|
||||
@@ -960,11 +923,6 @@
|
||||
<key alias="partialViewSavedText">片段視圖保存,無錯誤。</key>
|
||||
<key alias="partialViewErrorHeader">片段視圖未保存</key>
|
||||
<key alias="partialViewErrorText">片段視圖因為錯誤未能保存</key>
|
||||
<key alias="scriptSavedHeader">腳本視圖已儲存</key>
|
||||
<key alias="scriptSavedText">腳本視圖已儲存,沒有任何錯誤!</key>
|
||||
<key alias="scriptErrorHeader">腳本視圖未儲存</key>
|
||||
<key alias="scriptErrorText">儲存檔案時發生錯誤</key>
|
||||
<key alias="cssErrorText">儲存檔案時發生錯誤</key>
|
||||
</area>
|
||||
<area alias="stylesheet">
|
||||
<key alias="aliasHelp">使用CSS語法,如:h1、.redHeader、.blueTex。</key>
|
||||
@@ -986,12 +944,8 @@
|
||||
<key alias="template">範本</key>
|
||||
</area>
|
||||
<area alias="grid">
|
||||
<key alias="rte">Rich Text Editor</key>
|
||||
<key alias="media">Image</key>
|
||||
<key alias="macro">Macro</key>
|
||||
<key alias="embed">Embed</key>
|
||||
<key alias="headline">Headline</key>
|
||||
<key alias="quote">Quote</key>
|
||||
<key alias="insertControl">選擇內容類別</key>
|
||||
<key alias="chooseLayout">選擇排列方式</key>
|
||||
<key alias="addRows">新增一行</key>
|
||||
@@ -1018,7 +972,6 @@
|
||||
<key alias="settingsDetails">調整設定編輯器可以改變的項目</key>
|
||||
<key alias="styles">樣式</key>
|
||||
<key alias="stylesDetails">調整樣式編輯器可以改變的項目</key>
|
||||
<key alias="settingDialogDetails">當JSON格式正確時設定才可以儲存</key>
|
||||
<key alias="allowAllEditors">允許所有編輯器</key>
|
||||
<key alias="allowAllRowConfigurations">允許所有行設定</key>
|
||||
<key alias="setAsDefault">定為預設</key>
|
||||
@@ -1029,8 +982,6 @@
|
||||
<area alias="contentTypeEditor">
|
||||
<key alias="compositions">組合</key>
|
||||
<key alias="noTabs">您沒有增加任何選項卡</key>
|
||||
<key alias="addNewTab">增加新的選項卡</key>
|
||||
<key alias="addAnotherTab">增加另外的選項卡</key>
|
||||
<key alias="inheritedFrom">繼承的表格</key>
|
||||
<key alias="addProperty">增加屬性</key>
|
||||
<key alias="requiredLabel">必要標籤</key>
|
||||
@@ -1040,7 +991,6 @@
|
||||
<key alias="allowedTemplatesDescription">選擇哪些範本編輯器可以使用於此類別的內容</key>
|
||||
<key alias="allowAsRootHeading">允許為根項目</key>
|
||||
<key alias="allowAsRootDescription">允許編輯器新增此類別的內容為根項目</key>
|
||||
<key alias="allowAsRootCheckbox">是的 - 允許此類別內容為根項目</key>
|
||||
<key alias="childNodesHeading">允許子節點種類</key>
|
||||
<key alias="childNodesDescription">允許某些特定種類能夠成為此種類內容的子項目</key>
|
||||
<key alias="chooseChildNode">選擇子節點</key>
|
||||
@@ -1066,7 +1016,6 @@
|
||||
<key alias="andAllDocuments">以及所有使用此種類的文件項目</key>
|
||||
<key alias="andAllMediaItems">以及所有使用此種類的媒體項目</key>
|
||||
<key alias="andAllMembers">以及所有使用此種類的會員項目</key>
|
||||
<key alias="thisEditorUpdateSettings">使用此編輯器將會套用新設定</key>
|
||||
<key alias="memberCanEdit">會員可以編輯</key>
|
||||
<key alias="showOnMemberProfile">顯示於會員資料</key>
|
||||
</area>
|
||||
@@ -1099,15 +1048,7 @@
|
||||
<key alias="withTime">是,含時間,分隔符號為: </key>
|
||||
</area>
|
||||
<area alias="translation">
|
||||
<key alias="assignedTasks">標記為您的任務</key>
|
||||
<key alias="assignedTasksHelp"><![CDATA[ 此清單顯示這些翻譯任務是<strong>指派給您</strong>。請按「翻譯詳情」或頁面名稱觀看包含回應的詳細檢視畫面。
|
||||
您也可以將此頁面下載成為XML格式檔案,請按「下載XML」按鈕。<br/>
|
||||
若想要關閉翻譯任務,請至細節頁面點選「結束」按鈕。
|
||||
]]></key>
|
||||
<key alias="closeTask">關閉任務</key>
|
||||
<key alias="details">翻譯詳情</key>
|
||||
<key alias="downloadAllAsXml">將翻譯任務下載為XML</key>
|
||||
<key alias="downloadTaskAsXml">下載 XML</key>
|
||||
<key alias="DownloadXmlDTD">下載 XML DTD</key>
|
||||
<key alias="fields">欄位</key>
|
||||
<key alias="includeSubpages">包含子頁</key>
|
||||
@@ -1115,7 +1056,7 @@
|
||||
哈嘍 %0%
|
||||
|
||||
這是一封自動產生的郵件通知您文檔 %1%
|
||||
已經被 %2 要求翻譯成 %5%
|
||||
已經被 %2 要求翻譯成 %5%
|
||||
|
||||
請移至此網址來編輯: http://%3%/translation/details.aspx?id=%4%
|
||||
|
||||
@@ -1127,18 +1068,9 @@
|
||||
|
||||
Umbraco機器人 謹上
|
||||
]]></key>
|
||||
<key alias="mailSubject">[%0%]翻譯任務:%1%</key>
|
||||
<key alias="noTranslators">沒有翻譯員,請創建翻譯員角色的用戶。</key>
|
||||
<key alias="ownedTasks">您創建的任務</key>
|
||||
<key alias="ownedTasksHelp"><![CDATA[ 本清單顯示<strong>由您創建</strong>的頁面。要瀏覽包含回應的詳細檢視畫面,
|
||||
點選「詳情」或頁面名稱。您可以下載此頁面成為XML格式檔案,請點選「下載XML」連結。
|
||||
若要關閉翻譯任務,請至詳情檢視並點選「關閉」按鈕。
|
||||
]]></key>
|
||||
<key alias="pageHasBeenSendToTranslation">頁面'%0%'已經發送給翻譯</key>
|
||||
<key alias="noLanguageSelected">請選擇本內容應該被翻譯成的語言</key>
|
||||
<key alias="sendToTranslate">發送頁面'%0%'以便翻譯</key>
|
||||
<key alias="taskAssignedBy">分配者</key>
|
||||
<key alias="taskOpened">任務開啟</key>
|
||||
<key alias="totalWords">總字數</key>
|
||||
<key alias="translateTo">翻譯到</key>
|
||||
<key alias="translationDone">翻譯完成。</key>
|
||||
@@ -1169,7 +1101,6 @@
|
||||
<key alias="relationTypes">相關類型</key>
|
||||
<key alias="packager">擴展包</key>
|
||||
<key alias="packages">擴展包</key>
|
||||
<key alias="python">Python文件</key>
|
||||
<key alias="repositories">從線上程式庫安裝</key>
|
||||
<key alias="runway">安裝Runway</key>
|
||||
<key alias="runwayModules">Runway模組</key>
|
||||
@@ -1177,7 +1108,9 @@
|
||||
<key alias="scripts">腳本</key>
|
||||
<key alias="stylesheets">樣式表</key>
|
||||
<key alias="templates">範本</key>
|
||||
<key alias="analytics">統計</key>
|
||||
<key alias="settingsGroup"></key>
|
||||
<key alias="templatingGroup"></key>
|
||||
<key alias="thirdPartyGroup"></key>
|
||||
</area>
|
||||
<area alias="update">
|
||||
<key alias="updateAvailable">有可用更新</key>
|
||||
@@ -1222,7 +1155,6 @@
|
||||
<key alias="username">用戶名</key>
|
||||
<key alias="userPermissions">用戶許可權</key>
|
||||
<key alias="writer">撰稿人</key>
|
||||
<key alias="translator">翻譯者</key>
|
||||
<key alias="change">改變</key>
|
||||
<key alias="yourProfile" version="7.0">您的個人檔案</key>
|
||||
<key alias="yourHistory" version="7.0">您的歷程記錄</key>
|
||||
@@ -1340,4 +1272,4 @@
|
||||
<key alias="enabledConfirm">轉址追蹤器已開啟。</key>
|
||||
<key alias="enableError">啟動轉址追蹤器錯誤,更多資訊請參閱您的紀錄檔。</key>
|
||||
</area>
|
||||
</language>
|
||||
</language>
|
||||
@@ -24,7 +24,7 @@ namespace Umbraco.Web.UI.Umbraco.Developer.Macros
|
||||
{
|
||||
public EditMacro()
|
||||
{
|
||||
CurrentApp = Constants.Applications.Developer.ToString();
|
||||
CurrentApp = Constants.Applications.Packages.ToString();
|
||||
}
|
||||
|
||||
protected PlaceHolder Buttons;
|
||||
|
||||
@@ -15,7 +15,7 @@ namespace Umbraco.Web.UI.Umbraco.Developer.Packages
|
||||
{
|
||||
public DirectoryBrowser()
|
||||
{
|
||||
CurrentApp = Constants.Applications.Developer;
|
||||
CurrentApp = Constants.Applications.Packages;
|
||||
}
|
||||
|
||||
string _lsScriptName;
|
||||
|
||||
@@ -1,55 +0,0 @@
|
||||
<%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="../masterpages/umbracoPage.Master" CodeBehind="default.aspx.cs" Inherits="umbraco.presentation.translation._default" %>
|
||||
<%@ Register TagPrefix="cc1" Namespace="Umbraco.Web._Legacy.Controls" Assembly="Umbraco.Web" %>
|
||||
|
||||
<asp:Content ContentPlaceHolderID="head" runat="server">
|
||||
<style type="text/css">
|
||||
.fieldsTable tr{
|
||||
border-color: #D9D7D7 !Important;
|
||||
}
|
||||
</style>
|
||||
</asp:Content>
|
||||
|
||||
<asp:Content ContentPlaceHolderID="body" runat="server">
|
||||
<cc1:UmbracoPanel ID="Panel2" runat="server">
|
||||
|
||||
<cc1:Feedback ID="feedback" runat="server" />
|
||||
|
||||
<cc1:Pane ID="pane_uploadFile" runat="server" Text="Upload translation file">
|
||||
<p>
|
||||
When you have completed the translation. Upload the edited XML file here. The related translation tasks will automatically be closed when a file is uploaded.
|
||||
</p>
|
||||
|
||||
<cc1:PropertyPanel runat="server">
|
||||
<input type="file" runat="server" id="translationFile" size="30" /> <asp:Button ID="uploadFile" runat="server" Text="Upload file" OnClick="uploadFile_Click" />
|
||||
</cc1:PropertyPanel>
|
||||
</cc1:Pane>
|
||||
|
||||
|
||||
<cc1:Pane ID="pane_tasks" runat="server" Text="Your tasks">
|
||||
<p>
|
||||
<asp:Literal ID="lt_tasksHelp" runat="server"></asp:Literal>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<a href="xml.aspx?task=all" target="_blank"><%= Services.TextService.Localize("translation/downloadAllAsXml") %></a>
|
||||
|
||||
<a href="translationTasks.dtd" target="_blank"><%= Services.TextService.Localize("translation/DownloadXmlDTD")%></a>
|
||||
</p>
|
||||
<asp:GridView GridLines="Horizontal" ID="taskList" runat="server" CssClass="fieldsTable" BorderStyle="None" Width="100%"
|
||||
CellPadding="5" AutoGenerateColumns="false">
|
||||
<Columns>
|
||||
<asp:TemplateField>
|
||||
<ItemTemplate>
|
||||
<a href="details.aspx?id=<%#Eval("Id") %>"><%#Eval("NodeName") %></a>
|
||||
</ItemTemplate>
|
||||
</asp:TemplateField>
|
||||
<asp:BoundField DataField="ReferingUser" />
|
||||
<asp:BoundField DataField="Date" />
|
||||
<asp:HyperLinkField DataNavigateUrlFields="Id" DataNavigateUrlFormatString="details.aspx?id={0}" Text="Details" />
|
||||
<asp:HyperLinkField DataNavigateUrlFields="Id" DataNavigateUrlFormatString="xml.aspx?id={0}" Target="_blank" Text="Download Xml" />
|
||||
</Columns>
|
||||
</asp:GridView>
|
||||
</cc1:Pane>
|
||||
|
||||
</cc1:UmbracoPanel>
|
||||
</asp:Content>
|
||||
@@ -1,43 +0,0 @@
|
||||
<%@ Page Title="" Language="C#" MasterPageFile="../masterpages/umbracoPage.Master" AutoEventWireup="true" CodeBehind="details.aspx.cs" Inherits="umbraco.presentation.umbraco.translation.details" %>
|
||||
<%@ Register TagPrefix="ui" Namespace="Umbraco.Web._Legacy.Controls" Assembly="Umbraco.Web" %>
|
||||
|
||||
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
|
||||
|
||||
<style type="text/css">
|
||||
.fieldsTable tr{
|
||||
border-color: #D9D7D7 !Important;
|
||||
}
|
||||
</style>
|
||||
</asp:Content>
|
||||
<asp:Content ID="Content2" ContentPlaceHolderID="body" runat="server">
|
||||
|
||||
<ui:UmbracoPanel ID="panel1" Text="Details" runat="server" hasMenu="false">
|
||||
|
||||
<ui:Pane runat="server" ID="pane_details" Text="Translation details">
|
||||
<ui:PropertyPanel id="pp_date" runat="server" Text="Task opened"></ui:PropertyPanel>
|
||||
<ui:PropertyPanel ID="pp_owner" runat="server" Text="Assigned to you by"></ui:PropertyPanel>
|
||||
<ui:PropertyPanel ID="pp_totalWords" runat="server" Text="Total words"></ui:PropertyPanel>
|
||||
<ui:PropertyPanel ID="pp_comment" runat="server" Text="Task comment"></ui:PropertyPanel>
|
||||
</ui:Pane>
|
||||
|
||||
|
||||
<ui:Pane ID="pane_tasks" runat="server" Text="Tasks">
|
||||
<ui:PropertyPanel ID="pp_xml" runat="server" Text="Translation xml" />
|
||||
<ui:PropertyPanel ID="pp_upload" runat="server" Text="Upload translation"/>
|
||||
<ui:PropertyPanel ID="pp_closeTask" runat="server" Text="Close task">
|
||||
<asp:Button runat="server" ID="bt_close" Text="Close task" OnClick="closeTask"/>
|
||||
</ui:PropertyPanel>
|
||||
</ui:Pane>
|
||||
|
||||
|
||||
<ui:Pane ID="pane_fields" runat="server" Text="Fields">
|
||||
<asp:DataGrid ID="dg_fields" runat="server" GridLines="Horizontal" HeaderStyle-Font-Bold="true" CssClass="fieldsTable" Width="100%" BorderStyle="None" />
|
||||
</ui:Pane>
|
||||
|
||||
|
||||
</ui:UmbracoPanel>
|
||||
|
||||
</asp:Content>
|
||||
<asp:Content ID="Content3" ContentPlaceHolderID="footer" runat="server">
|
||||
</asp:Content>
|
||||
@@ -1,40 +0,0 @@
|
||||
<%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="../masterpages/umbracoPage.Master" CodeBehind="preview.aspx.cs" Inherits="umbraco.presentation.translation.preview" %>
|
||||
|
||||
<asp:Content ContentPlaceHolderID="body" runat="server">
|
||||
|
||||
<table cellpadding="0" cellspacing="0" style="text-align: center;">
|
||||
<tr>
|
||||
<td><h2>Translated version</h2></td>
|
||||
<td><h2>Original</h2></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<div class="notice">
|
||||
<p>
|
||||
<strong>Please notice</strong> that due to templating and unpublished content, the 2 pages can have differences in layout.
|
||||
</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="border-right: 1px solid #ccc; padding-right: 15px;">
|
||||
|
||||
<iframe src="<%= translatedUrl %>" frameborder="0" style="border: none"></iframe>
|
||||
</td>
|
||||
<td style="padding-left: 15px;">
|
||||
|
||||
<iframe src="<%= originalUrl %>" frameborder="0" style="border: none"></iframe>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery(document).ready(function() {
|
||||
var docHeight = jQuery(document).height();
|
||||
var docWidth = jQuery(document).width();
|
||||
|
||||
jQuery("iframe").height(docHeight - 140).width((docWidth / 2) - 31);
|
||||
});
|
||||
</script>
|
||||
|
||||
</asp:Content>
|
||||
@@ -1,39 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--DTD generated by XMLSpy v2007 sp1 (http://www.altova.com)-->
|
||||
<!ELEMENT translationTasks ((task))>
|
||||
<!ATTLIST translationTasks
|
||||
TotalWords CDATA #REQUIRED
|
||||
>
|
||||
<!ELEMENT task ((Comment, PreviewUrl, node, task*))>
|
||||
<!ATTLIST task
|
||||
Date CDATA #REQUIRED
|
||||
Id ID #REQUIRED
|
||||
NodeId CDATA #REQUIRED
|
||||
TotalWords CDATA #REQUIRED
|
||||
>
|
||||
<!ELEMENT node ((data+))>
|
||||
<!ATTLIST node
|
||||
createDate CDATA #REQUIRED
|
||||
creatorID CDATA #REQUIRED
|
||||
creatorName CDATA #REQUIRED
|
||||
id CDATA #REQUIRED
|
||||
level CDATA #REQUIRED
|
||||
nodeName CDATA #REQUIRED
|
||||
nodeType CDATA #REQUIRED
|
||||
nodeTypeAlias CDATA #REQUIRED
|
||||
parentID CDATA #REQUIRED
|
||||
path CDATA #REQUIRED
|
||||
sortOrder CDATA #REQUIRED
|
||||
template CDATA #REQUIRED
|
||||
updateDate CDATA #REQUIRED
|
||||
urlName CDATA #REQUIRED
|
||||
version CDATA #REQUIRED
|
||||
writerID CDATA #REQUIRED
|
||||
writerName CDATA #REQUIRED
|
||||
>
|
||||
<!ELEMENT data (#PCDATA)>
|
||||
<!ATTLIST data
|
||||
alias CDATA #REQUIRED
|
||||
>
|
||||
<!ELEMENT PreviewUrl (#PCDATA)>
|
||||
<!ELEMENT Comment EMPTY>
|
||||
@@ -1,2 +0,0 @@
|
||||
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="xml.aspx.cs" Inherits="umbraco.presentation.translation.xml" %><?xml version="1.0" encoding="UTF-8"?>
|
||||
<asp:literal id="xmlContents" runat="server"></asp:literal>
|
||||
@@ -29,12 +29,7 @@
|
||||
views/dashboard/forms/formsdashboardintro.html
|
||||
</control>
|
||||
</tab>
|
||||
</section>
|
||||
<section alias="StartupDeveloperDashboardSection">
|
||||
<areas>
|
||||
<area>developer</area>
|
||||
</areas>
|
||||
</section>
|
||||
</section>
|
||||
<section alias="StartupMediaDashboardSection">
|
||||
<areas>
|
||||
<area>media</area>
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<applications>
|
||||
<add alias="content" name="Content" icon="traycontent" sortOrder="0" />
|
||||
<add alias="media" name="Media" icon="traymedia" sortOrder="1" />
|
||||
<add alias="settings" name="Settings" icon="traysettings" sortOrder="2" />
|
||||
<add alias="developer" name="Developer" icon="traydeveloper" sortOrder="3" />
|
||||
<add alias="users" name="Users" icon="trayuser" sortOrder="4" />
|
||||
<add alias="member" name="Members" icon="traymember" sortOrder="5" />
|
||||
<add alias="forms" name="Forms" icon="icon-umb-contour" sortOrder="6" />
|
||||
<add alias="translation" name="Translation" icon="traytranslation" sortOrder="7" />
|
||||
</applications>
|
||||
<add alias="content" name="Content" sortOrder="0" />
|
||||
<add alias="media" name="Media" sortOrder="1" />
|
||||
<add alias="settings" name="Settings" sortOrder="2" />
|
||||
<add alias="packages" name="Packages" sortOrder="3" />
|
||||
<add alias="users" name="Users" sortOrder="4" />
|
||||
<add alias="member" name="Members" sortOrder="5" />
|
||||
<add alias="forms" name="Forms" sortOrder="6" />
|
||||
<add alias="translation" name="Translation" sortOrder="7" />
|
||||
</applications>
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<applications>
|
||||
<add alias="content" name="Content" icon="traycontent" sortOrder="0" />
|
||||
<add alias="media" name="Media" icon="traymedia" sortOrder="1" />
|
||||
<add alias="settings" name="Settings" icon="traysettings" sortOrder="2" />
|
||||
<add alias="developer" name="Developer" icon="traydeveloper" sortOrder="3" />
|
||||
<add alias="users" name="Users" icon="trayuser" sortOrder="4" />
|
||||
<add alias="member" name="Members" icon="traymember" sortOrder="5" />
|
||||
<add alias="forms" name="Forms" icon="icon-umb-contour" sortOrder="6" />
|
||||
<add alias="translation" name="Translation" icon="traytranslation" sortOrder="7" />
|
||||
</applications>
|
||||
<add alias="content" name="Content" sortOrder="0" />
|
||||
<add alias="media" name="Media" sortOrder="1" />
|
||||
<add alias="settings" name="Settings" sortOrder="2" />
|
||||
<add alias="packages" name="Packages" sortOrder="3" />
|
||||
<add alias="users" name="Users" sortOrder="4" />
|
||||
<add alias="member" name="Members" sortOrder="5" />
|
||||
<add alias="forms" name="Forms" sortOrder="6" />
|
||||
<add alias="translation" name="Translation" sortOrder="7" />
|
||||
</applications>
|
||||
|
||||
@@ -8,32 +8,31 @@
|
||||
<add initialize="false" sortOrder="0" alias="mediaRecycleBin" application="media" title="Recycle Bin" iconClosed="icon-folder" iconOpen="icon-folder" type="umbraco.cms.presentation.Trees.MediaRecycleBin, Umbraco.Web" />
|
||||
<!--Settings-->
|
||||
<add initialize="true" sortOrder="0" alias="documentTypes" application="settings" title="Document Types" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.ContentTypeTreeController, Umbraco.Web" />
|
||||
<add application="settings" alias="templates" title="Templates" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.TemplatesTreeController, Umbraco.Web" initialize="true" sortOrder="1" />
|
||||
<add application="settings" alias="partialViews" title="Partial Views" silent="false" initialize="true" iconClosed="icon-folder" iconOpen="icon-folder" type="Umbraco.Web.Trees.PartialViewsTreeController, Umbraco.Web" sortOrder="2" />
|
||||
<add application="settings" alias="stylesheets" title="Stylesheets" type="Umbraco.Web.Trees.StylesheetsTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" sortOrder="3" />
|
||||
<add application="settings" alias="scripts" title="Scripts" type="Umbraco.Web.Trees.ScriptsTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" sortOrder="4" />
|
||||
<add application="settings" alias="languages" title="Languages" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.LanguageTreeController, Umbraco.Web" sortOrder="5" />
|
||||
<add initialize="true" sortOrder="7" alias="dataTypes" application="settings" title="Data Types" iconClosed="icon-folder" iconOpen="icon-folder" type="Umbraco.Web.Trees.DataTypeTreeController, Umbraco.Web" />
|
||||
<add application="settings" alias="dictionary" title="Dictionary" type="Umbraco.Web.Trees.DictionaryTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" sortOrder="8" />
|
||||
<add initialize="true" sortOrder="9" alias="mediaTypes" application="settings" title="Media Types" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.MediaTypeTreeController, Umbraco.Web" />
|
||||
<add initialize="true" sortOrder="10" alias="contentBlueprints" application="settings" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.ContentBlueprintTreeController, Umbraco.Web" />
|
||||
<add initialize="true" sortOrder="1" alias="mediaTypes" application="settings" title="Media Types" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.MediaTypeTreeController, Umbraco.Web" />
|
||||
<add initialize="true" sortOrder="2" alias="memberTypes" application="settings" title="Member Types" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.MemberTypeTreeController, Umbraco.Web" />
|
||||
<add initialize="true" sortOrder="3" alias="dataTypes" application="settings" title="Data Types" iconClosed="icon-folder" iconOpen="icon-folder" type="Umbraco.Web.Trees.DataTypeTreeController, Umbraco.Web" />
|
||||
<add application="settings" sortOrder="4" alias="macros" title="Macros" type="Umbraco.Web.Trees.MacrosTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" />
|
||||
<add application="settings" sortOrder="5" alias="relationTypes" title="Relation Types" type="Umbraco.Web.Trees.RelationTypeTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" />
|
||||
<add application="settings" sortOrder="6" alias="templates" title="Templates" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.TemplatesTreeController, Umbraco.Web" initialize="true" />
|
||||
<add application="settings" sortOrder="7" alias="partialViews" title="Partial Views" silent="false" initialize="true" iconClosed="icon-folder" iconOpen="icon-folder" type="Umbraco.Web.Trees.PartialViewsTreeController, Umbraco.Web" />
|
||||
<add application="settings" sortOrder="8" alias="partialViewMacros" type="Umbraco.Web.Trees.PartialViewMacrosTreeController, Umbraco.Web" silent="false" initialize="true" title="Partial View Macro Files" iconClosed="icon-folder" iconOpen="icon-folder" />
|
||||
<add application="settings" sortOrder="9" alias="stylesheets" title="Stylesheets" type="Umbraco.Web.Trees.StylesheetsTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" />
|
||||
<add application="settings" sortOrder="10" alias="scripts" title="Scripts" type="Umbraco.Web.Trees.ScriptsTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" />
|
||||
<add application="settings" sortOrder="11" alias="languages" title="Languages" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.LanguageTreeController, Umbraco.Web" />
|
||||
<add initialize="true" sortOrder="12" alias="contentBlueprints" application="settings" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.ContentBlueprintTreeController, Umbraco.Web" />
|
||||
|
||||
<!--Developer-->
|
||||
<add initialize="true" sortOrder="0" alias="packages" application="developer" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.PackagesTreeController, Umbraco.Web" />
|
||||
<add application="developer" alias="macros" title="Macros" type="Umbraco.Web.Trees.MacrosTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" sortOrder="2" />
|
||||
<add application="developer" alias="relationTypes" title="Relation Types" type="Umbraco.Web.Trees.RelationTypeTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" sortOrder="4" />
|
||||
<add application="developer" alias="partialViewMacros" type="Umbraco.Web.Trees.PartialViewMacrosTreeController, Umbraco.Web" silent="false" initialize="true" sortOrder="6" title="Partial View Macro Files" iconClosed="icon-folder" iconOpen="icon-folder" />
|
||||
<add initialize="true" sortOrder="0" alias="packages" application="packages" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.PackagesTreeController, Umbraco.Web" />
|
||||
<!--Users-->
|
||||
<add initialize="true" sortOrder="0" alias="users" application="users" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.UserTreeController, Umbraco.Web" />
|
||||
|
||||
<!--Members-->
|
||||
<add initialize="true" sortOrder="0" alias="member" application="member" title="Members" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.MemberTreeController, Umbraco.Web" />
|
||||
<add initialize="true" sortOrder="1" alias="memberTypes" application="member" title="Member Types" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.MemberTypeTreeController, Umbraco.Web" />
|
||||
<add initialize="true" sortOrder="2" alias="memberGroups" application="member" title="Member Groups" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.MemberGroupTreeController, Umbraco.Web" />
|
||||
<add initialize="true" sortOrder="1" alias="memberGroups" application="member" title="Member Groups" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.MemberGroupTreeController, Umbraco.Web" />
|
||||
<!--Translation-->
|
||||
<add application="translation" alias="dictionary" title="Dictionary" type="Umbraco.Web.Trees.DictionaryTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" sortOrder="0" />
|
||||
<add silent="false" initialize="true" sortOrder="1" alias="openTasks" application="translation" title="Tasks assigned to you" iconClosed="icon-folder" iconOpen="icon-folder" type="umbraco.loadOpenTasks, Umbraco.Web" />
|
||||
<add silent="false" initialize="true" sortOrder="2" alias="yourTasks" application="translation" title="Tasks created by you" iconClosed="icon-folder" iconOpen="icon-folder" type="umbraco.loadYourTasks, Umbraco.Web" />
|
||||
<add initialize="true" application="translation" alias="dictionary" title="Dictionary" type="Umbraco.Web.Trees.DictionaryTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" sortOrder="0" />
|
||||
<!-- Custom -->
|
||||
<!--<add application="myApplication" alias="myTree" title="Me Tree" type="MyNamespace.myTree, MyAssembly"
|
||||
iconClosed="icon-folder" iconOpen="icon-folder" sortOrder="10" />-->
|
||||
<add initialize="true" sortOrder="2" alias="datasource" application="forms" title="Datasources" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Forms.Web.Trees.DataSourceTreeController, Umbraco.Forms.Web" />
|
||||
<add initialize="true" sortOrder="0" alias="form" application="forms" title="Forms" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Forms.Web.Trees.FormTreeController, Umbraco.Forms.Web" />
|
||||
<add initialize="true" sortOrder="3" alias="prevaluesource" application="forms" title="Prevalue sources" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Forms.Web.Trees.PreValueSourceTreeController, Umbraco.Forms.Web" />
|
||||
<add initialize="true" sortOrder="3" alias="formsecurity" application="users" title="Forms Security" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Forms.Web.Trees.FormSecurityTreeController, Umbraco.Forms.Web" />
|
||||
</trees>
|
||||
|
||||
@@ -8,33 +8,29 @@
|
||||
<add initialize="false" sortOrder="0" alias="mediaRecycleBin" application="media" title="Recycle Bin" iconClosed="icon-folder" iconOpen="icon-folder" type="umbraco.cms.presentation.Trees.MediaRecycleBin, Umbraco.Web" />
|
||||
<!--Settings-->
|
||||
<add initialize="true" sortOrder="0" alias="documentTypes" application="settings" title="Document Types" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.ContentTypeTreeController, Umbraco.Web" />
|
||||
<add application="settings" alias="templates" title="Templates" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.TemplatesTreeController, Umbraco.Web" initialize="true" sortOrder="1" />
|
||||
<add application="settings" alias="partialViews" title="Partial Views" silent="false" initialize="true" iconClosed="icon-folder" iconOpen="icon-folder" type="Umbraco.Web.Trees.PartialViewsTreeController, Umbraco.Web" sortOrder="2" />
|
||||
<add application="settings" alias="stylesheets" title="Stylesheets" type="Umbraco.Web.Trees.StylesheetsTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" sortOrder="3" />
|
||||
<add application="settings" alias="scripts" title="Scripts" type="Umbraco.Web.Trees.ScriptsTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" sortOrder="4" />
|
||||
<add application="settings" alias="languages" title="Languages" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.LanguageTreeController, Umbraco.Web" sortOrder="5" />
|
||||
<add initialize="true" sortOrder="7" alias="dataTypes" application="settings" title="Data Types" iconClosed="icon-folder" iconOpen="icon-folder" type="Umbraco.Web.Trees.DataTypeTreeController, Umbraco.Web" />
|
||||
<add application="settings" alias="dictionary" title="Dictionary" type="Umbraco.Web.Trees.DictionaryTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" sortOrder="8" />
|
||||
<add initialize="true" sortOrder="9" alias="mediaTypes" application="settings" title="Media Types" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.MediaTypeTreeController, Umbraco.Web" />
|
||||
<add initialize="true" sortOrder="10" alias="contentBlueprints" application="settings" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.ContentBlueprintTreeController, Umbraco.Web" />
|
||||
<add initialize="true" sortOrder="1" alias="mediaTypes" application="settings" title="Media Types" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.MediaTypeTreeController, Umbraco.Web" />
|
||||
<add initialize="true" sortOrder="2" alias="memberTypes" application="settings" title="Member Types" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.MemberTypeTreeController, Umbraco.Web" />
|
||||
<add initialize="true" sortOrder="3" alias="dataTypes" application="settings" title="Data Types" iconClosed="icon-folder" iconOpen="icon-folder" type="Umbraco.Web.Trees.DataTypeTreeController, Umbraco.Web" />
|
||||
<add application="settings" sortOrder="4" alias="macros" title="Macros" type="Umbraco.Web.Trees.MacrosTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" />
|
||||
<add application="settings" sortOrder="5" alias="relationTypes" title="Relation Types" type="Umbraco.Web.Trees.RelationTypeTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" />
|
||||
<add application="settings" sortOrder="6" alias="templates" title="Templates" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.TemplatesTreeController, Umbraco.Web" initialize="true" />
|
||||
<add application="settings" sortOrder="7" alias="partialViews" title="Partial Views" silent="false" initialize="true" iconClosed="icon-folder" iconOpen="icon-folder" type="Umbraco.Web.Trees.PartialViewsTreeController, Umbraco.Web" />
|
||||
<add application="settings" sortOrder="8" alias="partialViewMacros" type="Umbraco.Web.Trees.PartialViewMacrosTreeController, Umbraco.Web" silent="false" initialize="true" title="Partial View Macro Files" iconClosed="icon-folder" iconOpen="icon-folder" />
|
||||
<add application="settings" sortOrder="9" alias="stylesheets" title="Stylesheets" type="Umbraco.Web.Trees.StylesheetsTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" />
|
||||
<add application="settings" sortOrder="10" alias="scripts" title="Scripts" type="Umbraco.Web.Trees.ScriptsTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" />
|
||||
<add application="settings" sortOrder="11" alias="languages" title="Languages" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.LanguageTreeController, Umbraco.Web" />
|
||||
<add initialize="true" sortOrder="12" alias="contentBlueprints" application="settings" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.ContentBlueprintTreeController, Umbraco.Web" />
|
||||
|
||||
<!--Developer-->
|
||||
<add initialize="true" sortOrder="0" alias="packages" application="developer" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.PackagesTreeController, Umbraco.Web" />
|
||||
<add application="developer" alias="macros" title="Macros" type="Umbraco.Web.Trees.MacrosTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" sortOrder="2" />
|
||||
<add application="developer" alias="relationTypes" title="Relation Types" type="Umbraco.Web.Trees.RelationTypeTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" sortOrder="4" />
|
||||
<add application="developer" alias="partialViewMacros" type="Umbraco.Web.Trees.PartialViewMacrosTreeController, Umbraco.Web" silent="false" initialize="true" sortOrder="6" title="Partial View Macro Files" iconClosed="icon-folder" iconOpen="icon-folder" />
|
||||
<add initialize="true" sortOrder="0" alias="packages" application="packages" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.PackagesTreeController, Umbraco.Web" />
|
||||
<!--Users-->
|
||||
<add initialize="true" sortOrder="0" alias="users" application="users" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.UserTreeController, Umbraco.Web" />
|
||||
<!--Members-->
|
||||
<add initialize="true" sortOrder="0" alias="member" application="member" title="Members" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.MemberTreeController, Umbraco.Web" />
|
||||
<add initialize="true" sortOrder="1" alias="memberTypes" application="member" title="Member Types" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.MemberTypeTreeController, Umbraco.Web" />
|
||||
<add initialize="true" sortOrder="2" alias="memberGroups" application="member" title="Member Groups" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.MemberGroupTreeController, Umbraco.Web" />
|
||||
<add initialize="true" sortOrder="1" alias="memberGroups" application="member" title="Member Groups" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Web.Trees.MemberGroupTreeController, Umbraco.Web" />
|
||||
<!--Translation-->
|
||||
|
||||
<add silent="false" initialize="true" sortOrder="1" alias="openTasks" application="translation" title="Tasks assigned to you" iconClosed="icon-folder" iconOpen="icon-folder" type="umbraco.loadOpenTasks, Umbraco.Web" />
|
||||
<add silent="false" initialize="true" sortOrder="2" alias="yourTasks" application="translation" title="Tasks created by you" iconClosed="icon-folder" iconOpen="icon-folder" type="umbraco.loadYourTasks, Umbraco.Web" />
|
||||
<add initialize="true" application="translation" alias="dictionary" title="Dictionary" type="Umbraco.Web.Trees.DictionaryTreeController, Umbraco.Web" iconClosed="icon-folder" iconOpen="icon-folder" sortOrder="0" />
|
||||
<!-- Custom -->
|
||||
<!--<add application="myApplication" alias="myTree" title="Me Tree" type="MyNamespace.myTree, MyAssembly"
|
||||
iconClosed="icon-folder" iconOpen="icon-folder" sortOrder="10" />-->
|
||||
<add initialize="true" sortOrder="2" alias="datasource" application="forms" title="Datasources" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Forms.Web.Trees.DataSourceTreeController, Umbraco.Forms.Web" />
|
||||
<add initialize="true" sortOrder="0" alias="form" application="forms" title="Forms" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Forms.Web.Trees.FormTreeController, Umbraco.Forms.Web" />
|
||||
<add initialize="true" sortOrder="3" alias="prevaluesource" application="forms" title="Prevalue sources" iconClosed="icon-folder" iconOpen="icon-folder-open" type="Umbraco.Forms.Web.Trees.PreValueSourceTreeController, Umbraco.Forms.Web" />
|
||||
|
||||
@@ -290,7 +290,7 @@ namespace Umbraco.Web.Editors
|
||||
/// </remarks>
|
||||
[UmbracoApplicationAuthorize(
|
||||
Constants.Applications.Content, Constants.Applications.Media, Constants.Applications.Members,
|
||||
Constants.Applications.Settings, Constants.Applications.Developer)]
|
||||
Constants.Applications.Settings, Constants.Applications.Packages)]
|
||||
public IEnumerable<DataTypeBasic> GetAll()
|
||||
{
|
||||
return Services.DataTypeService
|
||||
@@ -307,7 +307,7 @@ namespace Umbraco.Web.Editors
|
||||
/// </remarks>
|
||||
[UmbracoTreeAuthorize(
|
||||
Constants.Applications.Content, Constants.Applications.Media, Constants.Applications.Members,
|
||||
Constants.Applications.Settings, Constants.Applications.Developer)]
|
||||
Constants.Applications.Settings, Constants.Applications.Packages)]
|
||||
public IDictionary<string, IEnumerable<DataTypeBasic>> GetGroupedDataTypes()
|
||||
{
|
||||
var dataTypes = Services.DataTypeService
|
||||
@@ -340,7 +340,7 @@ namespace Umbraco.Web.Editors
|
||||
/// </remarks>
|
||||
[UmbracoTreeAuthorize(
|
||||
Constants.Applications.Content, Constants.Applications.Media, Constants.Applications.Members,
|
||||
Constants.Applications.Settings, Constants.Applications.Developer)]
|
||||
Constants.Applications.Settings, Constants.Applications.Packages)]
|
||||
public IDictionary<string, IEnumerable<DataTypeBasic>> GetGroupedPropertyEditors()
|
||||
{
|
||||
var datatypes = new List<DataTypeBasic>();
|
||||
@@ -373,7 +373,7 @@ namespace Umbraco.Web.Editors
|
||||
/// </remarks>
|
||||
[UmbracoTreeAuthorize(
|
||||
Constants.Applications.Content, Constants.Applications.Media, Constants.Applications.Members,
|
||||
Constants.Applications.Settings, Constants.Applications.Developer)]
|
||||
Constants.Applications.Settings, Constants.Applications.Packages)]
|
||||
public IEnumerable<PropertyEditorBasic> GetAllPropertyEditors()
|
||||
{
|
||||
return Current.PropertyEditors
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace Umbraco.Web.Editors
|
||||
/// A controller used for installing packages and managing all of the data in the packages section in the back office
|
||||
/// </summary>
|
||||
[PluginController("UmbracoApi")]
|
||||
[UmbracoApplicationAuthorize(Core.Constants.Applications.Developer)]
|
||||
[UmbracoApplicationAuthorize(Core.Constants.Applications.Packages)]
|
||||
public class PackageInstallController : UmbracoAuthorizedJsonController
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -13,22 +13,18 @@ namespace Umbraco.Web.Models.Trees
|
||||
/// </summary>
|
||||
/// <param name="alias">The alias.</param>
|
||||
/// <param name="name">The name.</param>
|
||||
/// <param name="icon">The icon.</param>
|
||||
/// <param name="sortOrder">The sort order.</param>
|
||||
public ApplicationAttribute(string alias,
|
||||
string name,
|
||||
string icon,
|
||||
int sortOrder = 0)
|
||||
{
|
||||
Alias = alias;
|
||||
Name = name;
|
||||
Icon = icon;
|
||||
SortOrder = sortOrder;
|
||||
}
|
||||
|
||||
public string Alias { get; private set; }
|
||||
public string Name { get; private set; }
|
||||
public string Icon { get; private set; }
|
||||
public int SortOrder { get; private set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,31 +7,31 @@ namespace Umbraco.Web.Models.Trees
|
||||
// the application.config. On app startup, Umbraco will look for any
|
||||
// unregistered classes with an ApplicationAttribute and add them to the cache
|
||||
|
||||
[Application(Constants.Applications.Content, "Content", ".traycontent")]
|
||||
[Application(Constants.Applications.Content, "Content")]
|
||||
public class ContentApplicationDefinition : IApplication
|
||||
{ }
|
||||
|
||||
[Application(Constants.Applications.Media, "Media", ".traymedia", sortOrder: 1)]
|
||||
[Application(Constants.Applications.Media, "Media", sortOrder: 1)]
|
||||
public class MediaApplicationDefinition : IApplication
|
||||
{ }
|
||||
|
||||
[Application(Constants.Applications.Settings, "Settings", ".traysettings", sortOrder: 2)]
|
||||
[Application(Constants.Applications.Settings, "Settings", sortOrder: 2)]
|
||||
public class SettingsApplicationDefinition : IApplication
|
||||
{ }
|
||||
|
||||
[Application(Constants.Applications.Developer, "Developer", ".traydeveloper", sortOrder: 3)]
|
||||
public class DeveloperApplicationDefinition : IApplication
|
||||
[Application(Constants.Applications.Packages, "Packages", sortOrder: 3)]
|
||||
public class PackagesApplicationDefinition : IApplication
|
||||
{ }
|
||||
|
||||
[Application(Constants.Applications.Users, "Users", ".trayusers", sortOrder: 4)]
|
||||
[Application(Constants.Applications.Users, "Users", sortOrder: 4)]
|
||||
public class UsersApplicationDefinition : IApplication
|
||||
{ }
|
||||
|
||||
[Application(Constants.Applications.Members, "Members", ".traymember", sortOrder: 5)]
|
||||
[Application(Constants.Applications.Members, "Members", sortOrder: 5)]
|
||||
public class MembersApplicationDefinition : IApplication
|
||||
{ }
|
||||
|
||||
[Application(Constants.Applications.Translation, "Translation", ".traytranslation", sortOrder: 6)]
|
||||
[Application(Constants.Applications.Translation, "Translation", sortOrder: 6)]
|
||||
public class TranslationApplicationDefinition : IApplication
|
||||
{ }
|
||||
}
|
||||
|
||||
@@ -92,7 +92,6 @@ namespace Umbraco.Web.Services
|
||||
doc.Root.Add(new XElement("add",
|
||||
new XAttribute("alias", attr.Alias),
|
||||
new XAttribute("name", attr.Name),
|
||||
new XAttribute("icon", attr.Icon),
|
||||
new XAttribute("sortOrder", attr.SortOrder)));
|
||||
count++;
|
||||
}
|
||||
@@ -201,7 +200,7 @@ namespace Umbraco.Web.Services
|
||||
}, true);
|
||||
|
||||
//raise event
|
||||
OnNew(new Section(name, alias, icon, sortOrder), new EventArgs());
|
||||
OnNew(new Section(name, alias, sortOrder), new EventArgs());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -255,7 +254,6 @@ namespace Umbraco.Web.Services
|
||||
var sortOrderAttr = addElement.Attribute("sortOrder");
|
||||
tmp.Add(new Section(addElement.Attribute("name").Value,
|
||||
addElement.Attribute("alias").Value,
|
||||
addElement.Attribute("icon").Value,
|
||||
sortOrderAttr != null ? Convert.ToInt32(sortOrderAttr.Value) : 0));
|
||||
}
|
||||
return false;
|
||||
@@ -300,7 +298,7 @@ namespace Umbraco.Web.Services
|
||||
//we need to interrogate the attributes for the data. Would be better to have a base class that contains
|
||||
//metadata populated by the attribute. Oh well i guess.
|
||||
var attrs = types.Select(x => x.GetCustomAttributes<ApplicationAttribute>(false).Single());
|
||||
return Enumerable.ToArray<Section>(attrs.Select(x => new Section(x.Name, x.Alias, x.Icon, x.SortOrder)));
|
||||
return Enumerable.ToArray<Section>(attrs.Select(x => new Section(x.Name, x.Alias, x.SortOrder)));
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ namespace Umbraco.Web.Trees
|
||||
/// This authorizes based on access to the content section even though it exists in the settings
|
||||
/// </remarks>
|
||||
[UmbracoApplicationAuthorize(Constants.Applications.Content)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.ContentBlueprints, null, sortOrder: 10)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.ContentBlueprints, null, sortOrder: 12)]
|
||||
[PluginController("UmbracoTrees")]
|
||||
[CoreTree(TreeGroup = Constants.Trees.Groups.Settings)]
|
||||
public class ContentBlueprintTreeController : TreeController
|
||||
@@ -30,7 +30,7 @@ namespace Umbraco.Web.Trees
|
||||
var root = base.CreateRootNode(queryStrings);
|
||||
|
||||
//this will load in a custom UI instead of the dashboard for the root node
|
||||
root.RoutePath = string.Format("{0}/{1}/{2}", Constants.Applications.Settings, Constants.Trees.ContentBlueprints, "intro");
|
||||
root.RoutePath = $"{Constants.Applications.Settings}/{Constants.Trees.ContentBlueprints}/intro";
|
||||
|
||||
return root;
|
||||
}
|
||||
@@ -58,7 +58,7 @@ namespace Umbraco.Web.Trees
|
||||
.Select(entity =>
|
||||
{
|
||||
var treeNode = CreateTreeNode(entity, Constants.ObjectTypes.DocumentBlueprint, id, queryStrings, "icon-item-arrangement", true);
|
||||
treeNode.Path = string.Format("-1,{0}", entity.Id);
|
||||
treeNode.Path = $"-1,{entity.Id}";
|
||||
treeNode.NodeType = "document-type-blueprints";
|
||||
//TODO: This isn't the best way to ensure a noop process for clicking a node but it works for now.
|
||||
treeNode.AdditionalData["jsClickCallback"] = "javascript:void(0);";
|
||||
@@ -92,8 +92,9 @@ namespace Umbraco.Web.Trees
|
||||
if (id == Constants.System.Root.ToInvariantString())
|
||||
{
|
||||
// root actions
|
||||
menu.Items.Add<ActionNew>(Services.TextService.Localize(string.Format("actions/{0}", ActionNew.Instance.Alias)));
|
||||
menu.Items.Add<RefreshNode, ActionRefresh>(Services.TextService.Localize(string.Format("actions/{0}", ActionRefresh.Instance.Alias)), true);
|
||||
menu.Items.Add<ActionNew>(Services.TextService.Localize($"actions/{ActionNew.Instance.Alias}"));
|
||||
menu.Items.Add<RefreshNode, ActionRefresh>(Services.TextService.Localize(
|
||||
$"actions/{ActionRefresh.Instance.Alias}"), true);
|
||||
return menu;
|
||||
}
|
||||
var cte = Services.EntityService.Get(int.Parse(id), UmbracoObjectTypes.DocumentType);
|
||||
|
||||
@@ -26,7 +26,7 @@ namespace Umbraco.Web.Trees
|
||||
Constants.Applications.Media,
|
||||
Constants.Applications.Users,
|
||||
Constants.Applications.Settings,
|
||||
Constants.Applications.Developer,
|
||||
Constants.Applications.Packages,
|
||||
Constants.Applications.Members)]
|
||||
[Tree(Constants.Applications.Content, Constants.Trees.Content)]
|
||||
[PluginController("UmbracoTrees")]
|
||||
|
||||
@@ -20,6 +20,14 @@ namespace Umbraco.Web.Trees
|
||||
[CoreTree(TreeGroup = Constants.Trees.Groups.Settings)]
|
||||
public class ContentTypeTreeController : TreeController, ISearchableTree
|
||||
{
|
||||
protected override TreeNode CreateRootNode(FormDataCollection queryStrings)
|
||||
{
|
||||
var root = base.CreateRootNode(queryStrings);
|
||||
//check if there are any types
|
||||
root.HasChildren = Services.ContentTypeService.GetAll().Any();
|
||||
return root;
|
||||
}
|
||||
|
||||
protected override TreeNodeCollection GetTreeNodes(string id, FormDataCollection queryStrings)
|
||||
{
|
||||
var intId = id.TryConvertTo<int>();
|
||||
|
||||
@@ -17,7 +17,7 @@ using Constants = Umbraco.Core.Constants;
|
||||
namespace Umbraco.Web.Trees
|
||||
{
|
||||
[UmbracoTreeAuthorize(Constants.Trees.DataTypes)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.DataTypes, null, sortOrder:7)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.DataTypes, null, sortOrder:3)]
|
||||
[PluginController("UmbracoTrees")]
|
||||
[CoreTree(TreeGroup = Constants.Trees.Groups.Settings)]
|
||||
public class DataTypeTreeController : TreeController, ISearchableTree
|
||||
@@ -126,7 +126,8 @@ namespace Umbraco.Web.Trees
|
||||
//can delete data type
|
||||
menu.Items.Add<ActionDelete>(Services.TextService.Localize($"actions/{ActionDelete.Instance.Alias}"));
|
||||
}
|
||||
menu.Items.Add<RefreshNode, ActionRefresh>(Services.TextService.Localize($"actions/{ActionRefresh.Instance.Alias}"), hasSeparator: true);
|
||||
menu.Items.Add<RefreshNode, ActionRefresh>(Services.TextService.Localize(
|
||||
$"actions/{ActionRefresh.Instance.Alias}"), hasSeparator: true);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -9,10 +9,11 @@ using Umbraco.Web.WebApi.Filters;
|
||||
|
||||
namespace Umbraco.Web.Trees
|
||||
{
|
||||
|
||||
[UmbracoTreeAuthorize(Constants.Trees.Dictionary)]
|
||||
[Mvc.PluginController("UmbracoTrees")]
|
||||
[CoreTree(TreeGroup = Constants.Trees.Groups.Settings)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.Dictionary, null, sortOrder: 3)]
|
||||
[Tree(Constants.Applications.Translation, Constants.Trees.Dictionary, null, sortOrder: 0)]
|
||||
public class DictionaryTreeController : TreeController
|
||||
{
|
||||
protected override TreeNode CreateRootNode(FormDataCollection queryStrings)
|
||||
@@ -21,7 +22,7 @@ namespace Umbraco.Web.Trees
|
||||
|
||||
// the default section is settings, falling back to this if we can't
|
||||
// figure out where we are from the querystring parameters
|
||||
var section = Constants.Applications.Settings;
|
||||
var section = Constants.Applications.Translation;
|
||||
if (queryStrings["application"] != null)
|
||||
section = queryStrings["application"];
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ using Constants = Umbraco.Core.Constants;
|
||||
namespace Umbraco.Web.Trees
|
||||
{
|
||||
[UmbracoTreeAuthorize(Constants.Trees.Languages)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.Languages, null, sortOrder: 5)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.Languages, null, sortOrder: 11)]
|
||||
[PluginController("UmbracoTrees")]
|
||||
[CoreTree(TreeGroup = Constants.Trees.Groups.Settings)]
|
||||
public class LanguageTreeController : TreeController
|
||||
@@ -33,7 +33,7 @@ namespace Umbraco.Web.Trees
|
||||
var root = base.CreateRootNode(queryStrings);
|
||||
|
||||
//this will load in a custom UI instead of the dashboard for the root node
|
||||
root.RoutePath = string.Format("{0}/{1}/{2}", Constants.Applications.Settings, Constants.Trees.Languages, "overview");
|
||||
root.RoutePath = $"{Constants.Applications.Settings}/{Constants.Trees.Languages}/overview";
|
||||
root.Icon = "icon-globe";
|
||||
root.HasChildren = false;
|
||||
root.MenuUrl = null;
|
||||
|
||||
@@ -13,10 +13,11 @@ using Constants = Umbraco.Core.Constants;
|
||||
namespace Umbraco.Web.Trees
|
||||
{
|
||||
[UmbracoTreeAuthorize(Constants.Trees.Macros)]
|
||||
[Tree(Constants.Applications.Developer, Constants.Trees.Macros, "Macros", sortOrder: 2)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.Macros, "Macros", sortOrder: 4)]
|
||||
[PluginController("UmbracoTrees")]
|
||||
[CoreTree]
|
||||
public class MacrosTreeController : TreeController
|
||||
public class
|
||||
MacrosTreeController : TreeController
|
||||
{
|
||||
protected override TreeNodeCollection GetTreeNodes(string id, FormDataCollection queryStrings)
|
||||
{
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace Umbraco.Web.Trees
|
||||
Constants.Applications.Content,
|
||||
Constants.Applications.Media,
|
||||
Constants.Applications.Settings,
|
||||
Constants.Applications.Developer,
|
||||
Constants.Applications.Packages,
|
||||
Constants.Applications.Members)]
|
||||
[Tree(Constants.Applications.Media, Constants.Trees.Media)]
|
||||
[PluginController("UmbracoTrees")]
|
||||
|
||||
@@ -16,7 +16,7 @@ using Umbraco.Web.Search;
|
||||
namespace Umbraco.Web.Trees
|
||||
{
|
||||
[UmbracoTreeAuthorize(Constants.Trees.MediaTypes)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.MediaTypes, null, sortOrder:9)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.MediaTypes, null, sortOrder:1)]
|
||||
[Mvc.PluginController("UmbracoTrees")]
|
||||
[CoreTree(TreeGroup = Constants.Trees.Groups.Settings)]
|
||||
public class MediaTypeTreeController : TreeController, ISearchableTree
|
||||
@@ -73,8 +73,9 @@ namespace Umbraco.Web.Trees
|
||||
menu.DefaultMenuAlias = ActionNew.Instance.Alias;
|
||||
|
||||
// root actions
|
||||
menu.Items.Add<ActionNew>(Services.TextService.Localize(string.Format("actions/{0}", ActionNew.Instance.Alias)));
|
||||
menu.Items.Add<RefreshNode, ActionRefresh>(Services.TextService.Localize(string.Format("actions/{0}", ActionRefresh.Instance.Alias)));
|
||||
menu.Items.Add<ActionNew>(Services.TextService.Localize($"actions/{ActionNew.Instance.Alias}"));
|
||||
menu.Items.Add<RefreshNode, ActionRefresh>(Services.TextService.Localize(
|
||||
$"actions/{ActionRefresh.Instance.Alias}"));
|
||||
return menu;
|
||||
}
|
||||
|
||||
@@ -84,9 +85,9 @@ namespace Umbraco.Web.Trees
|
||||
//set the default to create
|
||||
menu.DefaultMenuAlias = ActionNew.Instance.Alias;
|
||||
|
||||
menu.Items.Add<ActionNew>(Services.TextService.Localize(string.Format("actions/{0}", ActionNew.Instance.Alias)));
|
||||
menu.Items.Add<ActionNew>(Services.TextService.Localize($"actions/{ActionNew.Instance.Alias}"));
|
||||
|
||||
menu.Items.Add(new MenuItem("rename", Services.TextService.Localize(String.Format("actions/{0}", "rename")))
|
||||
menu.Items.Add(new MenuItem("rename", Services.TextService.Localize("actions/rename"))
|
||||
{
|
||||
Icon = "icon icon-edit"
|
||||
});
|
||||
@@ -94,9 +95,10 @@ namespace Umbraco.Web.Trees
|
||||
if (container.HasChildren == false)
|
||||
{
|
||||
//can delete doc type
|
||||
menu.Items.Add<ActionDelete>(Services.TextService.Localize(string.Format("actions/{0}", ActionDelete.Instance.Alias)));
|
||||
menu.Items.Add<ActionDelete>(Services.TextService.Localize($"actions/{ActionDelete.Instance.Alias}"));
|
||||
}
|
||||
menu.Items.Add<RefreshNode, ActionRefresh>(Services.TextService.Localize(string.Format("actions/{0}", ActionRefresh.Instance.Alias)), hasSeparator: true);
|
||||
menu.Items.Add<RefreshNode, ActionRefresh>(Services.TextService.Localize(
|
||||
$"actions/{ActionRefresh.Instance.Alias}"), hasSeparator: true);
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -105,28 +107,29 @@ namespace Umbraco.Web.Trees
|
||||
|
||||
if (enableInheritedMediaTypes)
|
||||
{
|
||||
menu.Items.Add<ActionNew>(Services.TextService.Localize(string.Format("actions/{0}", ActionNew.Instance.Alias)));
|
||||
menu.Items.Add<ActionNew>(Services.TextService.Localize($"actions/{ActionNew.Instance.Alias}"));
|
||||
|
||||
//no move action if this is a child doc type
|
||||
if (parent == null)
|
||||
{
|
||||
menu.Items.Add<ActionMove>(Services.TextService.Localize(string.Format("actions/{0}", ActionMove.Instance.Alias)), true);
|
||||
menu.Items.Add<ActionMove>(Services.TextService.Localize($"actions/{ActionMove.Instance.Alias}"), true);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
menu.Items.Add<ActionMove>(Services.TextService.Localize(string.Format("actions/{0}", ActionMove.Instance.Alias)));
|
||||
menu.Items.Add<ActionMove>(Services.TextService.Localize($"actions/{ActionMove.Instance.Alias}"));
|
||||
//no move action if this is a child doc type
|
||||
if (parent == null)
|
||||
{
|
||||
menu.Items.Add<ActionMove>(Services.TextService.Localize(string.Format("actions/{0}", ActionMove.Instance.Alias)), true);
|
||||
menu.Items.Add<ActionMove>(Services.TextService.Localize($"actions/{ActionMove.Instance.Alias}"), true);
|
||||
}
|
||||
}
|
||||
|
||||
menu.Items.Add<ActionCopy>(Services.TextService.Localize(string.Format("actions/{0}", ActionCopy.Instance.Alias)));
|
||||
menu.Items.Add<ActionDelete>(Services.TextService.Localize(string.Format("actions/{0}", ActionDelete.Instance.Alias)));
|
||||
menu.Items.Add<ActionCopy>(Services.TextService.Localize($"actions/{ActionCopy.Instance.Alias}"));
|
||||
menu.Items.Add<ActionDelete>(Services.TextService.Localize($"actions/{ActionDelete.Instance.Alias}"));
|
||||
if (enableInheritedMediaTypes)
|
||||
menu.Items.Add<RefreshNode, ActionRefresh>(Services.TextService.Localize(string.Format("actions/{0}", ActionRefresh.Instance.Alias)), true);
|
||||
menu.Items.Add<RefreshNode, ActionRefresh>(Services.TextService.Localize(
|
||||
$"actions/{ActionRefresh.Instance.Alias}"), true);
|
||||
}
|
||||
|
||||
return menu;
|
||||
|
||||
@@ -8,7 +8,7 @@ using Umbraco.Web.WebApi.Filters;
|
||||
namespace Umbraco.Web.Trees
|
||||
{
|
||||
[UmbracoTreeAuthorize(Constants.Trees.MemberGroups)]
|
||||
[Tree(Constants.Applications.Members, Constants.Trees.MemberGroups, null, sortOrder: 2)]
|
||||
[Tree(Constants.Applications.Members, Constants.Trees.MemberGroups, null, sortOrder: 1)]
|
||||
[Mvc.PluginController("UmbracoTrees")]
|
||||
[CoreTree]
|
||||
public class MemberGroupTreeController : MemberTypeAndGroupTreeControllerBase
|
||||
|
||||
@@ -8,7 +8,7 @@ using Umbraco.Web.WebApi.Filters;
|
||||
namespace Umbraco.Web.Trees
|
||||
{
|
||||
[UmbracoTreeAuthorize(Constants.Trees.MemberTypes)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.MemberTypes, null, sortOrder: 1)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.MemberTypes, null, sortOrder: 2)]
|
||||
public class MemberTypeTreeController : MemberTypeAndGroupTreeControllerBase
|
||||
{
|
||||
protected override IEnumerable<TreeNode> GetTreeNodesFromService(string id, FormDataCollection queryStrings)
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Net.Http.Formatting;
|
||||
using Umbraco.Web.Models.Trees;
|
||||
@@ -13,7 +14,7 @@ using Constants = Umbraco.Core.Constants;
|
||||
namespace Umbraco.Web.Trees
|
||||
{
|
||||
[UmbracoTreeAuthorize(Constants.Trees.Packages)]
|
||||
[Tree(Constants.Applications.Developer, Constants.Trees.Packages, null, sortOrder: 0)]
|
||||
[Tree(Constants.Applications.Packages, Constants.Trees.Packages, null, sortOrder: 0)]
|
||||
[PluginController("UmbracoTrees")]
|
||||
[CoreTree]
|
||||
public class PackagesTreeController : TreeController
|
||||
@@ -26,10 +27,10 @@ namespace Umbraco.Web.Trees
|
||||
{
|
||||
var root = base.CreateRootNode(queryStrings);
|
||||
|
||||
root.RoutePath = string.Format("{0}/{1}/{2}", Constants.Applications.Developer, Constants.Trees.Packages, "overview");
|
||||
root.RoutePath = $"{Constants.Applications.Packages}/{Constants.Trees.Packages}/overview";
|
||||
|
||||
root.Icon = "icon-box";
|
||||
|
||||
|
||||
return root;
|
||||
}
|
||||
protected override TreeNodeCollection GetTreeNodes(string id, FormDataCollection queryStrings)
|
||||
@@ -46,9 +47,7 @@ namespace Umbraco.Web.Trees
|
||||
.Select(dt =>
|
||||
{
|
||||
var node = CreateTreeNode(dt.Data.Id.ToString(), id, queryStrings, dt.Data.Name, "icon-inbox", false,
|
||||
string.Format("/{0}/framed/{1}",
|
||||
queryStrings.GetValue<string>("application"),
|
||||
Uri.EscapeDataString("developer/Packages/EditPackage.aspx?id=" + dt.Data.Id)));
|
||||
$"/{queryStrings.GetValue<string>("application")}/framed/{Uri.EscapeDataString("developer/Packages/EditPackage.aspx?id=" + dt.Data.Id)}");
|
||||
return node;
|
||||
}));
|
||||
}
|
||||
@@ -84,16 +83,16 @@ namespace Umbraco.Web.Trees
|
||||
// Root actions
|
||||
if (id == "-1")
|
||||
{
|
||||
menu.Items.Add<ActionNew>(Services.TextService.Localize(string.Format("actions/{0}", ActionNew.Instance.Alias)))
|
||||
menu.Items.Add<ActionNew>(Services.TextService.Localize($"actions/{ActionNew.Instance.Alias}"))
|
||||
.ConvertLegacyMenuItem(null, Constants.Trees.Packages, queryStrings.GetValue<string>("application"));
|
||||
}
|
||||
else if (id == "created")
|
||||
{
|
||||
menu.Items.Add<ActionNew>(Services.TextService.Localize(string.Format("actions/{0}", ActionNew.Instance.Alias)))
|
||||
menu.Items.Add<ActionNew>(Services.TextService.Localize($"actions/{ActionNew.Instance.Alias}"))
|
||||
.ConvertLegacyMenuItem(null, Constants.Trees.Packages, queryStrings.GetValue<string>("application"));
|
||||
|
||||
menu.Items.Add<RefreshNode, ActionRefresh>(
|
||||
Services.TextService.Localize(string.Format("actions/{0}", ActionRefresh.Instance.Alias)), true);
|
||||
Services.TextService.Localize($"actions/{ActionRefresh.Instance.Alias}"), true);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace Umbraco.Web.Trees
|
||||
/// <summary>
|
||||
/// Tree for displaying partial view macros in the developer app
|
||||
/// </summary>
|
||||
[Tree(Constants.Applications.Developer, Constants.Trees.PartialViewMacros, null, sortOrder: 6)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.PartialViewMacros, null, sortOrder: 8)]
|
||||
[UmbracoTreeAuthorize(Constants.Trees.PartialViewMacros)]
|
||||
[PluginController("UmbracoTrees")]
|
||||
[CoreTree]
|
||||
|
||||
@@ -11,7 +11,7 @@ namespace Umbraco.Web.Trees
|
||||
/// <summary>
|
||||
/// Tree for displaying partial views in the settings app
|
||||
/// </summary>
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.PartialViews, null, sortOrder: 2)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.PartialViews, null, sortOrder: 7)]
|
||||
[UmbracoTreeAuthorize(Constants.Trees.PartialViews)]
|
||||
[PluginController("UmbracoTrees")]
|
||||
[CoreTree(TreeGroup = Constants.Trees.Groups.Templating)]
|
||||
|
||||
@@ -12,7 +12,7 @@ using Umbraco.Core.Models.Entities;
|
||||
namespace Umbraco.Web.Trees
|
||||
{
|
||||
[UmbracoTreeAuthorize(Constants.Trees.RelationTypes)]
|
||||
[Tree(Constants.Applications.Developer, Constants.Trees.RelationTypes, null, sortOrder: 4)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.RelationTypes, null, sortOrder: 5)]
|
||||
[Mvc.PluginController("UmbracoTrees")]
|
||||
[CoreTree]
|
||||
public class RelationTypeTreeController : TreeController
|
||||
|
||||
@@ -6,7 +6,7 @@ using Umbraco.Web.Models.Trees;
|
||||
|
||||
namespace Umbraco.Web.Trees
|
||||
{
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.Scripts, "Scripts", "icon-folder", "icon-folder", sortOrder: 4)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.Scripts, "Scripts", "icon-folder", "icon-folder", sortOrder: 10)]
|
||||
public class ScriptsTreeController : FileSystemTreeController
|
||||
{
|
||||
protected override IFileSystem FileSystem => Current.FileSystems.ScriptsFileSystem; // fixme inject
|
||||
|
||||
@@ -4,7 +4,7 @@ using Umbraco.Web.Composing;
|
||||
|
||||
namespace Umbraco.Web.Trees
|
||||
{
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.Stylesheets, "Stylesheets", "icon-folder", "icon-folder", sortOrder: 3)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.Stylesheets, "Stylesheets", "icon-folder", "icon-folder", sortOrder: 9)]
|
||||
public class StylesheetsTreeController : FileSystemTreeController
|
||||
{
|
||||
protected override IFileSystem FileSystem => Current.FileSystems.StylesheetsFileSystem; // fixme inject
|
||||
|
||||
@@ -19,7 +19,7 @@ using Constants = Umbraco.Core.Constants;
|
||||
namespace Umbraco.Web.Trees
|
||||
{
|
||||
[UmbracoTreeAuthorize(Constants.Trees.Templates)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.Templates, null, sortOrder:1)]
|
||||
[Tree(Constants.Applications.Settings, Constants.Trees.Templates, null, sortOrder:6)]
|
||||
[PluginController("UmbracoTrees")]
|
||||
[CoreTree(TreeGroup = Constants.Trees.Groups.Templating)]
|
||||
public class TemplatesTreeController : TreeController, ISearchableTree
|
||||
@@ -70,7 +70,7 @@ namespace Umbraco.Web.Trees
|
||||
|
||||
//Create the normal create action
|
||||
var item = menu.Items.Add<ActionNew>(Services.TextService.Localize("actions", ActionNew.Instance.Alias));
|
||||
item.NavigateToRoute(string.Format("{0}/templates/edit/{1}?create=true", queryStrings.GetValue<string>("application"), id));
|
||||
item.NavigateToRoute($"{queryStrings.GetValue<string>("application")}/templates/edit/{id}?create=true");
|
||||
|
||||
if (id == Constants.System.Root.ToInvariantString())
|
||||
{
|
||||
|
||||
@@ -1139,9 +1139,6 @@
|
||||
<Compile Include="Trees\PartialViewMacrosTreeController.cs" />
|
||||
<Compile Include="Trees\PartialViewsTreeController.cs" />
|
||||
<Compile Include="UI\IAssignedApp.cs" />
|
||||
<Compile Include="_Legacy\BusinessLogic\Task.cs" />
|
||||
<Compile Include="_Legacy\BusinessLogic\Tasks.cs" />
|
||||
<Compile Include="_Legacy\BusinessLogic\TaskType.cs" />
|
||||
<Compile Include="_Legacy\Controls\BaseTreePicker.cs" />
|
||||
<Compile Include="_Legacy\Controls\DataAttributes.cs" />
|
||||
<Compile Include="_Legacy\Controls\feedback.cs" />
|
||||
@@ -1349,13 +1346,6 @@
|
||||
<Compile Include="umbraco.presentation\umbraco\dialogs\rollBack.aspx.designer.cs">
|
||||
<DependentUpon>rollBack.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="umbraco.presentation\umbraco\dialogs\sendToTranslation.aspx.cs">
|
||||
<DependentUpon>sendToTranslation.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="umbraco.presentation\umbraco\dialogs\sendToTranslation.aspx.designer.cs">
|
||||
<DependentUpon>sendToTranslation.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="umbraco.presentation\umbraco\Trees\ITreeService.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
@@ -1367,36 +1357,7 @@
|
||||
<Compile Include="umbraco.presentation\umbraco\templateControls\ItemRenderer.cs" />
|
||||
<Compile Include="umbraco.presentation\umbraco\templateControls\Macro.cs" />
|
||||
<Compile Include="umbraco.presentation\umbraco\templateControls\ContentType.cs" />
|
||||
<Compile Include="umbraco.presentation\umbraco\translation\default.aspx.cs">
|
||||
<DependentUpon>default.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="umbraco.presentation\umbraco\translation\default.aspx.designer.cs">
|
||||
<DependentUpon>default.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="umbraco.presentation\umbraco\translation\details.aspx.cs">
|
||||
<DependentUpon>details.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="umbraco.presentation\umbraco\translation\details.aspx.designer.cs">
|
||||
<DependentUpon>details.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="umbraco.presentation\umbraco\translation\preview.aspx.cs">
|
||||
<DependentUpon>preview.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="umbraco.presentation\umbraco\translation\preview.aspx.designer.cs">
|
||||
<DependentUpon>preview.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="umbraco.presentation\umbraco\translation\xml.aspx.cs">
|
||||
<DependentUpon>xml.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="umbraco.presentation\umbraco\translation\xml.aspx.designer.cs">
|
||||
<DependentUpon>xml.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="umbraco.presentation\umbraco\Trees\BaseTree.cs" />
|
||||
<Compile Include="umbraco.presentation\umbraco\Trees\loadTranslationTasks.cs" />
|
||||
<Compile Include="umbraco.presentation\umbraco\Trees\NullTree.cs" />
|
||||
<Compile Include="umbraco.presentation\umbraco\Trees\TreeDefinitionCollection.cs" />
|
||||
<Compile Include="umbraco.presentation\umbraco\Trees\TreeDefinition.cs" />
|
||||
@@ -1456,11 +1417,6 @@
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="UI\JavaScript\PreviewInitialize.js" />
|
||||
<Content Include="umbraco.presentation\umbraco\webservices\CheckForUpgrade.asmx" />
|
||||
<Content Include="umbraco.presentation\umbraco\translation\default.aspx">
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Content>
|
||||
<Content Include="umbraco.presentation\umbraco\translation\preview.aspx" />
|
||||
<Content Include="umbraco.presentation\umbraco\translation\xml.aspx" />
|
||||
<!--<Content Include="umbraco.presentation\umbraco\users\PermissionEditor.aspx" />-->
|
||||
<Content Include="umbraco.presentation\umbraco\webservices\legacyAjaxCalls.asmx" />
|
||||
<Content Include="umbraco.presentation\umbraco\webservices\nodeSorter.asmx" />
|
||||
@@ -1485,14 +1441,12 @@
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Content>
|
||||
<Content Include="umbraco.presentation\umbraco\dialogs\SendPublish.aspx" />
|
||||
<Content Include="umbraco.presentation\umbraco\translation\details.aspx" />
|
||||
<Content Include="umbraco.presentation\umbraco\developer\Packages\editPackage.aspx">
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Content>
|
||||
<Content Include="umbraco.presentation\umbraco\dialogs\rollBack.aspx">
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Content>
|
||||
<Content Include="umbraco.presentation\umbraco\dialogs\sendToTranslation.aspx" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Web References\org.umbraco.update\checkforupgrade.disco" />
|
||||
@@ -1548,6 +1502,7 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="umbraco.presentation\umbraco\settings\" />
|
||||
<Folder Include="umbraco.presentation\umbraco\translation\" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||
<!--
|
||||
|
||||
@@ -1,264 +0,0 @@
|
||||
using System;
|
||||
using Umbraco.Core.Composing;
|
||||
using Umbraco.Core.Models.Entities;
|
||||
using Umbraco.Core.Models.Membership;
|
||||
|
||||
namespace Umbraco.Web._Legacy.BusinessLogic
|
||||
{
|
||||
/// <summary>
|
||||
/// An umbraco task is currently only used with the translation workflow in umbraco. But is extendable to cover other taskbased system as well.
|
||||
/// A task represent a simple job, it will always be assigned to a user, related to a node, and contain a comment about the task.
|
||||
/// The user attached to the task can complete the task, and the author of the task can reopen tasks that are not complete correct.
|
||||
///
|
||||
/// Tasks can in umbraco be used for setting up simple workflows, and contains basic controls structures to determine if the task is completed or not.
|
||||
/// </summary>
|
||||
[Obsolete("Use Umbraco.Core.Service.ITaskService instead")]
|
||||
public class Task
|
||||
{
|
||||
#region Properties
|
||||
|
||||
public Umbraco.Core.Models.Task TaskEntity { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the id.
|
||||
/// </summary>
|
||||
/// <value>The id.</value>
|
||||
public int Id
|
||||
{
|
||||
get { return TaskEntity.Id; }
|
||||
set
|
||||
{
|
||||
TaskEntity.Id = value;
|
||||
_entityEntity = null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether this <see cref="Task"/> is closed.
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if closed; otherwise, <c>false</c>.</value>
|
||||
public bool Closed
|
||||
{
|
||||
get { return TaskEntity.Closed; }
|
||||
set { TaskEntity.Closed = value; }
|
||||
}
|
||||
|
||||
/*
|
||||
private CMSNode _node;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the node.
|
||||
/// </summary>
|
||||
/// <value>The node.</value>
|
||||
public CMSNode Node
|
||||
{
|
||||
get { return _node ?? (_node = new CMSNode(TaskEntity.EntityId)); }
|
||||
set
|
||||
{
|
||||
_node = value;
|
||||
TaskEntity.EntityId = value.Id;
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
private IUmbracoEntity _entityEntity;
|
||||
|
||||
public IUmbracoEntity TaskEntityEntity => _entityEntity ?? (_entityEntity = Current.Services.EntityService.Get(TaskEntity.EntityId));
|
||||
|
||||
private TaskType _type;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the type.
|
||||
/// </summary>
|
||||
/// <value>The type.</value>
|
||||
public TaskType Type
|
||||
{
|
||||
get { return _type ?? (_type = new TaskType(TaskEntity.TaskType)); }
|
||||
set
|
||||
{
|
||||
_type = value;
|
||||
TaskEntity.TaskType = new Umbraco.Core.Models.TaskType(_type.Alias)
|
||||
{
|
||||
Id = _type.Id
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private IUser _parentUser;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the parent user.
|
||||
/// </summary>
|
||||
/// <value>The parent user.</value>
|
||||
public IUser ParentUser
|
||||
{
|
||||
get { return _parentUser ?? (_parentUser = Current.Services.UserService.GetUserById(TaskEntity.OwnerUserId)); }
|
||||
set
|
||||
{
|
||||
_parentUser = value;
|
||||
TaskEntity.OwnerUserId = _parentUser.Id;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the comment.
|
||||
/// </summary>
|
||||
/// <value>The comment.</value>
|
||||
public string Comment
|
||||
{
|
||||
get { return TaskEntity.Comment; }
|
||||
set { TaskEntity.Comment = value; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the date.
|
||||
/// </summary>
|
||||
/// <value>The date.</value>
|
||||
public DateTime Date
|
||||
{
|
||||
get { return TaskEntity.CreateDate; }
|
||||
set { TaskEntity.CreateDate = value; }
|
||||
}
|
||||
|
||||
private IUser _user;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the user.
|
||||
/// </summary>
|
||||
/// <value>The user.</value>
|
||||
public IUser User
|
||||
{
|
||||
get { return _user ?? (_user = Current.Services.UserService.GetUserById(TaskEntity.AssigneeUserId)); }
|
||||
set
|
||||
{
|
||||
_user = value;
|
||||
TaskEntity.AssigneeUserId = _user.Id;
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="Task"/> class.
|
||||
/// </summary>
|
||||
public Task()
|
||||
{ }
|
||||
|
||||
internal Task(Umbraco.Core.Models.Task task)
|
||||
{
|
||||
TaskEntity = task;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="Task"/> class.
|
||||
/// </summary>
|
||||
/// <param name="TaskId">The task id.</param>
|
||||
public Task(int TaskId)
|
||||
{
|
||||
TaskEntity = Current.Services.TaskService.GetTaskById(TaskId);
|
||||
if (TaskEntity == null) throw new NullReferenceException("No task found with id " + TaskId);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Public Methods
|
||||
|
||||
/// <summary>
|
||||
/// Deletes the current task.
|
||||
/// Generally tasks should not be deleted and closed instead.
|
||||
/// </summary>
|
||||
public void Delete()
|
||||
{
|
||||
Current.Services.TaskService.Delete(TaskEntity);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Saves this instance.
|
||||
/// </summary>
|
||||
public void Save()
|
||||
{
|
||||
Current.Services.TaskService.Save(TaskEntity);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region static methods
|
||||
|
||||
/// <summary>
|
||||
/// Returns all tasks by type
|
||||
/// </summary>
|
||||
/// <param name="taskType"></param>
|
||||
/// <returns></returns>
|
||||
public static Tasks GetTasksByType(int taskType)
|
||||
{
|
||||
var foundTaskType = Current.Services.TaskService.GetTaskTypeById(taskType);
|
||||
if (foundTaskType == null) return null;
|
||||
|
||||
var result = new Tasks();
|
||||
var tasks = Current.Services.TaskService.GetTasks(taskTypeAlias: foundTaskType.Alias);
|
||||
foreach (var task in tasks)
|
||||
{
|
||||
result.Add(new Task(task));
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get all tasks assigned to a node
|
||||
/// </summary>
|
||||
/// <param name="nodeId"></param>
|
||||
/// <returns></returns>
|
||||
public static Tasks GetTasks(int nodeId)
|
||||
{
|
||||
var result = new Tasks();
|
||||
var tasks = Current.Services.TaskService.GetTasks(itemId:nodeId);
|
||||
foreach (var task in tasks)
|
||||
{
|
||||
result.Add(new Task(task));
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves a collection of open tasks assigned to the user
|
||||
/// </summary>
|
||||
/// <param name="User">The User who have the tasks assigned</param>
|
||||
/// <param name="IncludeClosed">If true both open and closed tasks will be returned</param>
|
||||
/// <returns>A collections of tasks</returns>
|
||||
public static Tasks GetTasks(IUser User, bool IncludeClosed)
|
||||
{
|
||||
var result = new Tasks();
|
||||
var tasks = Current.Services.TaskService.GetTasks(assignedUser:User.Id, includeClosed:IncludeClosed);
|
||||
foreach (var task in tasks)
|
||||
{
|
||||
result.Add(new Task(task));
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves a collection of open tasks assigned to the user
|
||||
/// </summary>
|
||||
/// <param name="User">The User who have the tasks assigned</param>
|
||||
/// <param name="IncludeClosed">If true both open and closed tasks will be returned</param>
|
||||
/// <returns>A collections of tasks</returns>
|
||||
public static Tasks GetOwnedTasks(IUser User, bool IncludeClosed)
|
||||
{
|
||||
var result = new Tasks();
|
||||
var tasks = Current.Services.TaskService.GetTasks(ownerUser:User.Id, includeClosed: IncludeClosed);
|
||||
foreach (var task in tasks)
|
||||
{
|
||||
result.Add(new Task(task));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
@@ -1,107 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Umbraco.Core.Composing;
|
||||
|
||||
|
||||
namespace Umbraco.Web._Legacy.BusinessLogic
|
||||
{
|
||||
[Obsolete("Use Umbraco.Core.Service.ITaskService instead")]
|
||||
public class TaskType
|
||||
{
|
||||
internal Umbraco.Core.Models.TaskType TaskTypeEntity;
|
||||
|
||||
#region Public Properties
|
||||
|
||||
public int Id
|
||||
{
|
||||
get { return TaskTypeEntity.Id; }
|
||||
set { TaskTypeEntity.Id = value; }
|
||||
}
|
||||
|
||||
public string Alias
|
||||
{
|
||||
get { return TaskTypeEntity.Alias; }
|
||||
set { TaskTypeEntity.Alias = value; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// All tasks associated with this task type
|
||||
/// </summary>
|
||||
public Tasks Tasks
|
||||
{
|
||||
get
|
||||
{
|
||||
//lazy load the tasks
|
||||
if (_tasks == null)
|
||||
{
|
||||
_tasks = Task.GetTasksByType(this.Id);
|
||||
}
|
||||
return _tasks;
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Private/protected members
|
||||
|
||||
private Tasks _tasks;
|
||||
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
|
||||
internal TaskType(Umbraco.Core.Models.TaskType tt)
|
||||
{
|
||||
TaskTypeEntity = tt;
|
||||
}
|
||||
|
||||
public TaskType()
|
||||
{
|
||||
}
|
||||
|
||||
public TaskType(string TypeAlias)
|
||||
{
|
||||
TaskTypeEntity = Current.Services.TaskService.GetTaskTypeByAlias(TypeAlias);
|
||||
if (TaskTypeEntity == null) throw new NullReferenceException("No task type found by alias " + TypeAlias);
|
||||
}
|
||||
|
||||
public TaskType(int TaskTypeId)
|
||||
{
|
||||
TaskTypeEntity = Current.Services.TaskService.GetTaskTypeById(TaskTypeId);
|
||||
if (TaskTypeEntity == null) throw new NullReferenceException("No task type found by alias " + TaskTypeId);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Public methods
|
||||
|
||||
public void Save()
|
||||
{
|
||||
Current.Services.TaskService.Save(TaskTypeEntity);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Deletes the current task type.
|
||||
/// This will remove all tasks associated with this type
|
||||
/// </summary>
|
||||
public void Delete()
|
||||
{
|
||||
Current.Services.TaskService.Delete(TaskTypeEntity);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Static methods
|
||||
/// <summary>
|
||||
/// Returns all task types stored in the database
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public static IEnumerable<TaskType> GetAll()
|
||||
{
|
||||
return Current.Services.TaskService.GetAllTaskTypes()
|
||||
.Select(x => new TaskType(x));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,28 +0,0 @@
|
||||
using System.Collections;
|
||||
|
||||
namespace Umbraco.Web._Legacy.BusinessLogic
|
||||
{
|
||||
/// <summary>
|
||||
/// A collection of tasks.
|
||||
/// </summary>
|
||||
public class Tasks : CollectionBase
|
||||
{
|
||||
/// <summary>
|
||||
/// Adds the specified new task.
|
||||
/// </summary>
|
||||
/// <param name="NewTask">The new task.</param>
|
||||
public virtual void Add(Task NewTask)
|
||||
{
|
||||
this.List.Add(NewTask);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the <see cref="umbraco.cms.businesslogic.task.Task"/> at the specified index.
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
public virtual Task this[int Index]
|
||||
{
|
||||
get { return (Task)this.List[Index]; }
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,120 +0,0 @@
|
||||
using Umbraco.Core.Services;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using umbraco.cms.presentation.Trees;
|
||||
using Umbraco.Core.Models.Membership;
|
||||
using Umbraco.Web;
|
||||
using Umbraco.Web._Legacy.Actions;
|
||||
using Umbraco.Web._Legacy.BusinessLogic;
|
||||
|
||||
namespace umbraco {
|
||||
public class loadOpenTasks : BaseTree {
|
||||
|
||||
public loadOpenTasks(string application) : base(application) { }
|
||||
|
||||
protected override void CreateRootNode(ref XmlTreeNode rootNode) {
|
||||
rootNode.Action = "javascript:openTranslationOverview(" + CurrentUser().Id + ",'open');";
|
||||
rootNode.Text = Services.TextService.Localize("translation/assignedTasks");
|
||||
}
|
||||
|
||||
protected override void CreateRootNodeActions(ref List<IAction> actions) {
|
||||
actions.Clear();
|
||||
actions.Add(ActionRefresh.Instance);
|
||||
}
|
||||
|
||||
public override void RenderJS(ref StringBuilder Javascript) {
|
||||
Javascript.Append(@"
|
||||
function openTranslationTask(id) {
|
||||
UmbClientMgr.contentFrame('translation/details.aspx?id=' + id);
|
||||
}
|
||||
function openTranslationOverview(id, mode) {
|
||||
UmbClientMgr.contentFrame('translation/default.aspx?id=' + id + '&mode=' + mode);
|
||||
}
|
||||
");
|
||||
}
|
||||
|
||||
private IUser CurrentUser()
|
||||
{
|
||||
return UmbracoContext.Current.Security.CurrentUser;
|
||||
}
|
||||
|
||||
public override void Render(ref XmlTree tree) {
|
||||
foreach (Task t in Task.GetTasks(CurrentUser(), false)) {
|
||||
|
||||
if (t.Type.Alias == "toTranslate") {
|
||||
XmlTreeNode xNode = XmlTreeNode.Create(this);
|
||||
xNode.Menu.Clear();
|
||||
|
||||
xNode.NodeID = t.Id.ToString();
|
||||
xNode.Text = t.TaskEntityEntity.Name;
|
||||
xNode.Action = "javascript:openTranslationTask(" + t.Id.ToString() + ")";
|
||||
xNode.Icon = ".sprTreeSettingLanguage";
|
||||
xNode.OpenIcon = ".sprTreeSettingLanguage";
|
||||
|
||||
OnBeforeNodeRender(ref tree, ref xNode, EventArgs.Empty);
|
||||
if (xNode != null)
|
||||
{
|
||||
tree.Add(xNode);
|
||||
OnAfterNodeRender(ref tree, ref xNode, EventArgs.Empty);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public class loadYourTasks : BaseTree {
|
||||
|
||||
public loadYourTasks(string application) : base(application) { }
|
||||
|
||||
protected override void CreateRootNode(ref XmlTreeNode rootNode) {
|
||||
rootNode.Action = "javascript:openTranslationOverview(" + CurrentUser().Id + ", 'owned');";
|
||||
rootNode.Text = Services.TextService.Localize("translation/ownedTasks");
|
||||
}
|
||||
|
||||
protected override void CreateRootNodeActions(ref List<IAction> actions) {
|
||||
actions.Clear();
|
||||
actions.Add(ActionRefresh.Instance);
|
||||
}
|
||||
|
||||
public override void RenderJS(ref StringBuilder Javascript) {
|
||||
Javascript.Append(@"
|
||||
function openTranslationTask(id) {
|
||||
UmbClientMgr.contentFrame('translation/details.aspx?id=' + id);
|
||||
}");
|
||||
}
|
||||
|
||||
private IUser CurrentUser()
|
||||
{
|
||||
return UmbracoContext.Current.Security.CurrentUser;
|
||||
}
|
||||
|
||||
public override void Render(ref XmlTree tree) {
|
||||
foreach (Task t in Task.GetOwnedTasks(CurrentUser(), false)) {
|
||||
|
||||
if (t.Type.Alias == "toTranslate") {
|
||||
XmlTreeNode xNode = XmlTreeNode.Create(this);
|
||||
xNode.Menu.Clear();
|
||||
xNode.NodeID = t.Id.ToString();
|
||||
xNode.Text = t.TaskEntityEntity.Name;
|
||||
xNode.Action = "javascript:openTranslationTask(" + t.Id.ToString() + ")";
|
||||
xNode.Icon = ".sprTreeSettingLanguage";
|
||||
xNode.OpenIcon = ".sprTreeSettingLanguage";
|
||||
|
||||
OnBeforeNodeRender(ref tree, ref xNode, EventArgs.Empty);
|
||||
if (xNode != null)
|
||||
{
|
||||
tree.Add(xNode);
|
||||
OnAfterNodeRender(ref tree, ref xNode, EventArgs.Empty);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -39,7 +39,7 @@ namespace Umbraco.Web
|
||||
|
||||
public override string AssignedApp
|
||||
{
|
||||
get { return Constants.Applications.Developer.ToString(); }
|
||||
get { return Constants.Applications.Packages.ToString(); }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Umbraco.Web
|
||||
|
||||
public override string AssignedApp
|
||||
{
|
||||
get { return Constants.Applications.Developer.ToString(); }
|
||||
get { return Constants.Applications.Packages.ToString(); }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user