@ -0,0 +1,285 @@ |
|||
# ABP Platform 5.0 Beta 1 Has Been Released |
|||
|
|||
Today, we are excited to release the [ABP Framework](https://abp.io/) and the [ABP Commercial](https://commercial.abp.io/) version **5.0 Beta 1**. This blog post introduces the new features and important changes in this new version. |
|||
|
|||
> **The planned release date for the [5.0.0 Release Candidate](https://github.com/abpframework/abp/milestone/51) version is November, 2021**. |
|||
|
|||
Please try the beta 1 version and provide feedback for a more stable ABP version 5.0! Thank you all. |
|||
|
|||
## Get Started with the 5.0 Beta 1 |
|||
|
|||
follow the steps below to try the version 5.0.0 beta 1 today; |
|||
|
|||
1) **Upgrade** the ABP CLI to the version `5.0.0-beta.1` using a command line terminal: |
|||
|
|||
````bash |
|||
dotnet tool update Volo.Abp.Cli -g --version 5.0.0-beta.1 |
|||
```` |
|||
|
|||
**or install** if you haven't installed before: |
|||
|
|||
````bash |
|||
dotnet tool install Volo.Abp.Cli -g --version 5.0.0-beta.1 |
|||
```` |
|||
|
|||
2) Create a **new application** with the `--preview` option: |
|||
|
|||
````bash |
|||
abp new BookStore --preview |
|||
```` |
|||
|
|||
See the [ABP CLI documentation](https://docs.abp.io/en/abp/latest/CLI) for all the available options. |
|||
|
|||
> You can also use the *Direct Download* tab on the [Get Started](https://abp.io/get-started) page by selecting the **Preview checkbox**. |
|||
|
|||
### Visual Studio Upgrade |
|||
|
|||
As .NET 6 is a preview version you need to make changes on your current Visual Studio. If you want to run a .NET 6 project on Visual Studio 2019, you need to enable the `Use Previews of the .NET SDK` option from Visual Studio 2019 options. See the screenshot: |
|||
|
|||
 |
|||
|
|||
Alternatively you can download the latest Visual Studio 2022 preview to run/create the .NET 6 projects. We have tested the ABP solution with the Visual Studio 2022 `17.0.0 Preview 4.1`. Check out https://visualstudio.microsoft.com/vs/preview/ for more information. |
|||
|
|||
### Migration Notes & Breaking Changes |
|||
|
|||
This is a major version and there are some breaking changes and upgrade steps. Here, a list of important breaking changes in this version: |
|||
|
|||
* Upgraded to .NET 6.0-rc.1, so you need to move your solution to .NET 6.0 if you want to use the ABP 5.0. |
|||
* `IRepository` doesn't inherit from `IQueryable` anymore. It was already made obsolete in 4.2. |
|||
* Removed NGXS and states from the Angular UI. |
|||
* Removed gulp dependency from the MVC / Razor Pages UI in favor of `abp install-libs` command of ABP CLI. |
|||
|
|||
Please see the [migration document](https://docs.abp.io/en/abp/5.0/Migration-Guides/Abp-5_0) for all the details. You can also see all [the closed issues and pull request](https://github.com/abpframework/abp/releases/tag/5.0.0-beta.1) on GitHub. |
|||
|
|||
## What's new with Beta 1? |
|||
|
|||
In this section, I will introduce some major features released with beta 1. |
|||
|
|||
### Static (Generated) Client Proxies for C# and JavaScript |
|||
|
|||
Dynamic C# ([see](https://docs.abp.io/en/abp/latest/API/Dynamic-CSharp-API-Clients)) and JavaScript ([see](https://docs.abp.io/en/abp/latest/UI/AspNetCore/Dynamic-JavaScript-Proxies)) client proxy system is one of the most loved features of the ABP Framework. It generates the proxy code on runtime and makes client-to-server calls a breeze. With ABP 5.0, we are providing an alternative approach: You can generate the client proxy code on development-time. |
|||
|
|||
Development-time client proxy generation has a performance advantage since it doesn't need to obtain the HTTP API definition on runtime. It also makes it easier to consume a (micro)service behind an API Gateway. With dynamic proxies, we should return a combined HTTP API definition from the API Gateway and need to add HTTP API layers of the microservices to the gateway. Static proxies removes this requirement. One disadvantage is that you should re-generate the client proxy code whenever you change your API endpoint definition. Yes, software development always has tradeoffs :) |
|||
|
|||
Working with static client proxy generation is simple with the ABP CLI. You first need to run the server application, open a command-line terminal, locate to the root folder of your client application, then run the `generate-proxy` command of the ABP CLI. |
|||
|
|||
#### Creating C# client proxies |
|||
|
|||
C# client proxies are useful to consume APIs from Blazor WebAssembly applications. It is also useful for microservice to microservice HTTP API calls. Notice that the client application need to have a reference to the application service contracts (typically, the `.Application.Contracts` project in your solution) in order to consume the services. |
|||
|
|||
**Example usage:** |
|||
|
|||
````bash |
|||
abp generate-proxy -t csharp -u https://localhost:44305 |
|||
```` |
|||
|
|||
`-t` indicates the client type, C# here. `-u` is the URL of the server application. It creates the proxies for the application (the app module) by default. You can specify the module name as `-m <module-name>` if you are building a modular system. The following figure shows the generated files: |
|||
|
|||
 |
|||
|
|||
Once the proxies are generated, you can inject and use the application service interfaces of these proxies, like `IProductAppService` in this example. Usage is same of the [dynamic C# client proxies](https://docs.abp.io/en/abp/latest/API/Dynamic-CSharp-API-Clients). |
|||
|
|||
#### Creating JavaScript client proxies |
|||
|
|||
JavaScript proxies are useful to consume APIs from MVC / Razor Pages UI. It works on JQuery AJAX API, just like the [dynamic JavaScript proxies](https://docs.abp.io/en/abp/latest/UI/AspNetCore/Dynamic-JavaScript-Proxies). |
|||
|
|||
**Example usage:** |
|||
|
|||
````bash |
|||
abp generate-proxy -t js -u https://localhost:44305 |
|||
```` |
|||
|
|||
The following figure shows the generated file: |
|||
|
|||
 |
|||
|
|||
Then you can consume the server-side APIs from your JavaScript code just like the [dynamic JavaScript proxies](https://docs.abp.io/en/abp/latest/UI/AspNetCore/Dynamic-JavaScript-Proxies). |
|||
|
|||
#### Creating Angular client proxies |
|||
|
|||
Angular developers knows that the generate-proxy command was already available in ABP's previous versions to create client-side proxy services in the Angular UI. The same functionality continues to be available and already [documented here](https://docs.abp.io/en/abp/latest/UI/Angular/Service-Proxies). |
|||
|
|||
**Example usage:** |
|||
|
|||
````bash |
|||
abp generate-proxy -t ng -u https://localhost:44305 |
|||
```` |
|||
|
|||
### Transactional Outbox & Inbox for the Distributed Event Bus |
|||
|
|||
This was one of the most awaited features by distributed software developers. |
|||
|
|||
The [transactional outbox pattern](https://microservices.io/patterns/data/transactional-outbox.html) is used to publishing distributed events within the same transaction that manipulates the application database. Distributed events are saved into the database inside the same transaction with your data changes, then sent to the message broker (like RabbitMQ or Kafka) by a separate background worker with a re-try system. In this way, it ensures the consistency between your database state and the published events. |
|||
|
|||
The transactional inbox pattern, on the other hand, saves incoming events into database first, then executes the event handler in a transactional manner and removes the event from the inbox queue in the same transaction. It also ensures that the event is only executed one time by keeping the processed messages for a while and discarding the duplicate events received from the message broker. |
|||
|
|||
Enabling the inbox and outbox patterns requires a few manual steps for your application. We've created a simple [console application example](https://github.com/abpframework/abp/tree/dev/test/DistEvents), but I will also explain all the steps here. |
|||
|
|||
#### Pre-requirements |
|||
|
|||
First of all, you need to have EF Core or MongoDB installed into your solution. It should be already installed if you'd created a solution from the ABP startup template. |
|||
|
|||
#### Install the package |
|||
|
|||
Install the new [Volo.Abp.EventBus.Boxes](https://www.nuget.org/packages/Volo.Abp.EventBus.Boxes) NuGet package to your database layer (to `EntityFrameworkCore` or `MongoDB` project) or to the host application. Open a command-line terminal at the root directory of your database (or host) project and execute the following command: |
|||
|
|||
````csharp |
|||
abp add-package Volo.Abp.EventBus.Boxes |
|||
```` |
|||
|
|||
This will install the package and setup the ABP module dependency. |
|||
|
|||
#### Configure the DbContext |
|||
|
|||
Open your `DbContext` class, implement the `IHasEventInbox` and the `IHasEventOutbox` interfaces. You should end up by adding two `DbSet` properties into your `DbContext` class: |
|||
|
|||
````csharp |
|||
public DbSet<IncomingEventRecord> IncomingEvents { get; set; } |
|||
public DbSet<OutgoingEventRecord> OutgoingEvents { get; set; } |
|||
```` |
|||
|
|||
Add the following lines inside the `OnModelCreating` method of your `DbContext` class: |
|||
|
|||
````csharp |
|||
builder.ConfigureEventInbox(); |
|||
builder.ConfigureEventOutbox(); |
|||
```` |
|||
|
|||
It is similar for MongoDB; implement the `IHasEventInbox` and the `IHasEventOutbox` interfaces. There is no `Configure...` method for MongoDB. |
|||
|
|||
Now, we've added inbox/outbox related tables to our database schema. Now, for EF Core, use the standard `Add-Migration` and `Update-Database` commands to apply changes into your database (you can skip this step for MongoDB). If you want to use the command-line terminal, run the following commands in the root directory of the database integration project: |
|||
|
|||
````bash |
|||
dotnet ef migrations add "Added_Event_Boxes" |
|||
dotnet ef database update |
|||
```` |
|||
|
|||
#### Configure the distributed event bus options |
|||
|
|||
As the last step, write the following configuration code inside the `ConfigureServices` method of your module class: |
|||
|
|||
````csharp |
|||
Configure<AbpDistributedEventBusOptions>(options => |
|||
{ |
|||
options.Outboxes.Configure(config => |
|||
{ |
|||
config.UseDbContext<YourDbContext>(); |
|||
}); |
|||
|
|||
options.Inboxes.Configure(config => |
|||
{ |
|||
config.UseDbContext<YourDbContext>(); |
|||
}); |
|||
}); |
|||
```` |
|||
|
|||
Replace `YourDbContext` with your `DbContext` class. |
|||
|
|||
That's all. You can continue to publishing and consuming events just as before. See the [distributed event bus documentation](https://docs.abp.io/en/abp/latest/Distributed-Event-Bus) if you don't know how to use it. |
|||
|
|||
### Publishing events in transaction |
|||
|
|||
The previous feature (outbox & inbox) solves the transactional event publishing problem for distributed systems. This feature, publishing events in transaction, solves the problem of executing event handlers in the same transaction that the events are published in for non-distributed applications. With 5.0, all events (local or distributed) are handled in the same transaction. If any handler fails, the transaction is rolled back. If you don't want that, you should use try/catch and ignore the exception inside your event handler. |
|||
|
|||
Remember that if you don't install a real distributed event provider (like [RabbitMQ](https://docs.abp.io/en/abp/latest/Distributed-Event-Bus-RabbitMQ-Integration) or [Kafka](https://docs.abp.io/en/abp/latest/Distributed-Event-Bus-Kafka-Integration)), the [distributed events](https://docs.abp.io/en/abp/latest/Distributed-Event-Bus) are actually executed in-process, just like the [local events](https://docs.abp.io/en/abp/latest/Local-Event-Bus). So, with this development, all the events become transactional, even if your system is distributed or not. |
|||
|
|||
No action needed to take. It will just work by default. There is a [deprecation note](https://github.com/abpframework/abp/issues/9897) related to this change (some pre-defined events [will be removed](https://github.com/abpframework/abp/issues/9908) in the next major version since they are not needed anymore) |
|||
|
|||
### Inactivating a user |
|||
|
|||
The [Identity module](https://docs.abp.io/en/abp/latest/Modules/Identity) has a new feature to make a user active or inactive. Inactive users can not login to the system. In this way, you can disable a user account without deleting it. An *Active* checkbox is added to the user create/edit dialog to control it on the UI: |
|||
|
|||
 |
|||
|
|||
EF Core developers should add a new database migration since this brings a new field to the `AbpUsers` table. |
|||
|
|||
### Overriding email settings per tenant |
|||
|
|||
If you're building a multi-tenant application, it is now possible to override email sending settings per tenant. To make this possible, you should first enable that [feature](https://docs.abp.io/en/abp/latest/Features) to the tenant you want, by clicking the *Actions -> Features* for the tenant. |
|||
|
|||
 |
|||
|
|||
Enable the feature using the checkbox as shown in the following modal: |
|||
|
|||
 |
|||
|
|||
Then the tenant admin can open the email settings page under the Administration -> Settings menu (on development environment, logout, switch to the tenant and re-login with the tenant admin): |
|||
|
|||
 |
|||
|
|||
### Hangfire dashboard permission |
|||
|
|||
ABP allows to use Hangfire as the background job manager when you install the integration package [as documented](https://docs.abp.io/en/abp/5.0/Background-Jobs-Hangfire). Hangfire's dashboard is used to monitor and control the background job queues. Here, a screenshot from the dashboard: |
|||
|
|||
 |
|||
|
|||
Hangfire's dashboard is not authorized by default, so any user can navigate to the `/hangfire` URL and see/control the jobs. With the ABP version 5.0, we've added a built-in authorization implementation for the Hangfire dashboard. Instead of `app.UseHangfireDashboard();`, you can use the following middleware configuration: |
|||
|
|||
````csharp |
|||
app.UseHangfireDashboard("/hangfire", new DashboardOptions |
|||
{ |
|||
AsyncAuthorization = new[] { new AbpHangfireAuthorizationFilter() } |
|||
}); |
|||
```` |
|||
|
|||
In this way, only the authenticated users can see the dashboard. However, we suggest to set a permission name, so only the users with that permission can see the dashboard: |
|||
|
|||
````csharp |
|||
app.UseHangfireDashboard("/hangfire", new DashboardOptions |
|||
{ |
|||
AsyncAuthorization = new[] { |
|||
new AbpHangfireAuthorizationFilter("MyPermissionName") |
|||
} |
|||
}); |
|||
```` |
|||
|
|||
You can define the permission (`MyPermissionName` in this example) using the standard [permission system](https://docs.abp.io/en/abp/5.0/Authorization#permission-system). |
|||
|
|||
### Introducing AbpControllerBase |
|||
|
|||
ABP provides an `AbpController` class that you can inherit your MVC controllers from. It provides some pre-injected services to simplify your controllers. With v5.0, we are adding a second base controller class, `AbpControllerBase`, which is more proper to create API controllers (without view features). It is suggested to inherit from the `AbpControllerBase` class to create API controllers, instead of the `AbpController` class. |
|||
|
|||
**Example:** |
|||
|
|||
````csharp |
|||
[Route("api/products")] |
|||
public class ProductController : AbpControllerBase |
|||
{ |
|||
// TODO: ... |
|||
} |
|||
```` |
|||
|
|||
## Ongoing Works & Next Release |
|||
|
|||
We'd published important features and changes with this beta 1 release. However, there are still some major works in development. The most important work is the **Bootstrap 5 upgrade**. ABP 5.0 will work on Bootstrap 5, which is an important change for existing applications. We suggest to prepare for this change from now. |
|||
|
|||
The next release will be 5.0.0-beta.2. It will include the Bootstrap 5 upgrade. We don't plan make another big work for the version 5.0. After the beta.2, we will work on tests, feedbacks and documentation to prepare a stable final release. |
|||
|
|||
## Community News |
|||
|
|||
### ABP was on ASP.NET Community Startup! |
|||
|
|||
It was great for us to be invited to Microsoft's [ASP.NET Community Weekly Standup](https://dotnet.microsoft.com/live/community-standup) show, at September 28. There was a very high attention and that made us very happy. Thanks to the ABP Community and all the watchers :) If you've missed the talk, [you can watch it here](https://www.youtube.com/watch?v=vMWM-_ihjwM). |
|||
|
|||
### Upcoming ABP Book! |
|||
|
|||
I am currently authoring the first official book for the ABP Framework and it is on [pre-sale on Amazon](https://www.amazon.com/Mastering-ABP-Framework-maintainable-implementing-dp-1801079242/dp/1801079242) now. |
|||
|
|||
 |
|||
|
|||
This books is a complete guide to start working with the ABP Framework, explore the ABP features and concepts. It also contains chapters for DDD, modular application development and multi-tenancy to learn and practically work with the ABP architecture to build maintainable software solutions and create SaaS applications. The book will be based on ABP 5.0 and published in the beginning of 2022. You can [pre-order now](https://www.amazon.com/Mastering-ABP-Framework-maintainable-implementing-dp-1801079242/dp/1801079242)! |
|||
|
|||
### New ABP Community posts |
|||
|
|||
Here, the latest posts added to the [ABP community](https://community.abp.io/): |
|||
|
|||
* [Deploy ABP Framework .NET Core tiered application to docker swarm](https://community.abp.io/articles/deploy-abp-framework-dotnet-core-tiered-app-to-docker-swarm-kcrjbjec) |
|||
* [How to override localization strings of depending modules](https://community.abp.io/articles/how-to-override-localization-strings-of-depending-modules-ba1oy03l) |
|||
* [Centralized logging for .NET Core ABP microservices application using Seq](https://community.abp.io/articles/centralized-logging-for-.net-core-abp-microservices-app-using-seq-g1xe7e7y) |
|||
* [Extend Tenant management and add custom host to your ABP application](https://community.abp.io/articles/extend-tenant-management-and-add-custom-host-to-your-abp-app-lwmi9lr5) |
|||
|
|||
Thanks to the ABP Community for all the contents they have published. You can also post your ABP and .NET related (text or video) contents to the ABP Community. |
|||
|
|||
## Conclusion |
|||
|
|||
The ABP version 5.0 is coming with important changes (like .NET 6 and Bootstrap 5) and features. In this blog post, I summarized the news about that new version. Please try it and provide feedback by opening issues on [the GitHub repository](https://github.com/abpframework/abp). Thank you all! |
|||
|
After Width: | Height: | Size: 125 KiB |
|
After Width: | Height: | Size: 4.8 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 5.6 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 28 KiB |
@ -1,7 +1,7 @@ |
|||
<Button Color="@Color" Clicked="@Clicked" Disabled="@Disabled"> |
|||
@if (Icon != null) |
|||
{ |
|||
<Icon Name="IconName.Add" Class="mr-1"></Icon> |
|||
<Icon Name="Icon" Class="mr-1"></Icon> |
|||
} |
|||
@Text |
|||
</Button> |
|||
|
|||
@ -0,0 +1,18 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace Volo.Abp.Http.Client.ClientProxying |
|||
{ |
|||
public class AbpHttpClientProxyingOptions |
|||
{ |
|||
public Dictionary<Type, Type> QueryStringConverts { get; set; } |
|||
|
|||
public Dictionary<Type, Type> FormDataConverts { get; set; } |
|||
|
|||
public AbpHttpClientProxyingOptions() |
|||
{ |
|||
QueryStringConverts = new Dictionary<Type, Type>(); |
|||
FormDataConverts = new Dictionary<Type, Type>(); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,11 @@ |
|||
using System.Collections.Generic; |
|||
using System.Net.Http; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Volo.Abp.Http.Client.ClientProxying |
|||
{ |
|||
public interface IObjectToFormData<in TValue> |
|||
{ |
|||
Task<List<KeyValuePair<string, HttpContent>>> ConvertAsync(TValue value); |
|||
} |
|||
} |
|||
@ -0,0 +1,9 @@ |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Volo.Abp.Http.Client.ClientProxying |
|||
{ |
|||
public interface IObjectToQueryString<in TValue> |
|||
{ |
|||
Task<string> ConvertAsync(TValue value); |
|||
} |
|||
} |
|||
@ -0,0 +1,30 @@ |
|||
using System.Collections.Generic; |
|||
using System.Net.Http; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp.DependencyInjection; |
|||
using Volo.Abp.Http.Client.ClientProxying; |
|||
using Volo.Abp.TestApp.Application.Dto; |
|||
|
|||
namespace Volo.Abp.Http.DynamicProxying |
|||
{ |
|||
public class TestObjectToFormData : IObjectToFormData<List<GetParamsNameValue>>, ITransientDependency |
|||
{ |
|||
public Task<List<KeyValuePair<string, HttpContent>>> ConvertAsync(List<GetParamsNameValue> values) |
|||
{ |
|||
if (values.IsNullOrEmpty()) |
|||
{ |
|||
return null; |
|||
} |
|||
|
|||
var formDataContents = new List<KeyValuePair<string, HttpContent>>(); |
|||
for (var i = 0; i < values.Count; i++) |
|||
{ |
|||
formDataContents.Add(new KeyValuePair<string, HttpContent>($"NameValues[{i}].Name", new StringContent(values[i].Name, Encoding.UTF8))); |
|||
formDataContents.Add(new KeyValuePair<string, HttpContent>($"NameValues[{i}].Value", new StringContent(values[i].Value, Encoding.UTF8))); |
|||
} |
|||
|
|||
return Task.FromResult(formDataContents); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,30 @@ |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp.DependencyInjection; |
|||
using Volo.Abp.Http.Client.ClientProxying; |
|||
using Volo.Abp.TestApp.Application.Dto; |
|||
|
|||
namespace Volo.Abp.Http.DynamicProxying |
|||
{ |
|||
public class TestObjectToQueryString : IObjectToQueryString<List<GetParamsNameValue>>, ITransientDependency |
|||
{ |
|||
public Task<string> ConvertAsync(List<GetParamsNameValue> values) |
|||
{ |
|||
if (values.IsNullOrEmpty()) |
|||
{ |
|||
return null; |
|||
} |
|||
|
|||
var sb = new StringBuilder(); |
|||
|
|||
for (var i = 0; i < values.Count; i++) |
|||
{ |
|||
sb.Append($"NameValues[{i}].Name={values[i].Name}&NameValues[{i}].Value={values[i].Value}&"); |
|||
} |
|||
|
|||
sb.Remove(sb.Length - 1, 1); |
|||
return Task.FromResult(sb.ToString()); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,18 @@ |
|||
using System.Collections.Generic; |
|||
|
|||
namespace Volo.Abp.TestApp.Application.Dto |
|||
{ |
|||
public class GetParamsInput |
|||
{ |
|||
public List<GetParamsNameValue> NameValues { get; set; } |
|||
|
|||
public GetParamsNameValue NameValue { get; set; } |
|||
} |
|||
|
|||
public class GetParamsNameValue |
|||
{ |
|||
public string Name { get; set; } |
|||
|
|||
public string Value { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,67 @@ |
|||
{ |
|||
"culture": "da", |
|||
"texts": { |
|||
"UserName": "Brugernavn", |
|||
"EmailAddress": "Email", |
|||
"UserNameOrEmailAddress": "Brugernavn eller email", |
|||
"Password": "Kodeord", |
|||
"RememberMe": "Husk mig", |
|||
"UseAnotherServiceToLogin": "Brug en anden service til at logge ind", |
|||
"UserLockedOutMessage": "Brugerkontoen er blevet låst grundet forkerte login forsøg. Vent venligst og prøv igen.", |
|||
"InvalidUserNameOrPassword": "Forkert brugernavn eller kodeord!", |
|||
"LoginIsNotAllowed": "Du kan ikke logge ind! Du skal bekræfte den angivne email/telefonnummer.", |
|||
"SelfRegistrationDisabledMessage": "Selvregistrering er deaktiveret for denne applikation. Kontakt venligst applikationens administrator for at registrere en ny bruger.", |
|||
"LocalLoginDisabledMessage": "Lokalt login er deaktiveret for denne appliaktion.", |
|||
"Login": "Login", |
|||
"Cancel": "Annullér", |
|||
"Register": "Registrér", |
|||
"AreYouANewUser": "Er du ny bruger?", |
|||
"AlreadyRegistered": "Allerede registreret?", |
|||
"InvalidLoginRequest": "Forkert login forespørgsel", |
|||
"ThereAreNoLoginSchemesConfiguredForThisClient": "Der er ingen konfigurerede login skemaer for denne klient.", |
|||
"LogInUsingYourProviderAccount": "Login med din {0} konto", |
|||
"DisplayName:CurrentPassword": "Nuværende kodeord", |
|||
"DisplayName:NewPassword": "Nyt kodeord", |
|||
"DisplayName:NewPasswordConfirm": "Bekræft nyt kodeord", |
|||
"PasswordChangedMessage": "Dit kodeord er blevet ændret.", |
|||
"DisplayName:UserName": "Brugernavn", |
|||
"DisplayName:Email": "Email", |
|||
"DisplayName:Name": "Fornavn", |
|||
"DisplayName:Surname": "Efternavn", |
|||
"DisplayName:Password": "Kodeord", |
|||
"DisplayName:EmailAddress": "Email", |
|||
"DisplayName:PhoneNumber": "Telefonnummer", |
|||
"PersonalSettings": "Personlige indstillinger", |
|||
"PersonalSettingsSaved": "Personlige indstillinger gemt", |
|||
"PasswordChanged": "Kodeord gemt", |
|||
"NewPasswordConfirmFailed": "Bekræft venligst det nye kodeord.", |
|||
"Manage": "Administrer", |
|||
"MyAccount": "Min konto", |
|||
"DisplayName:Abp.Account.IsSelfRegistrationEnabled": "Er registrering aktiveret", |
|||
"Description:Abp.Account.IsSelfRegistrationEnabled": "Om en bruger kan registrere kontoen selv.", |
|||
"DisplayName:Abp.Account.EnableLocalLogin": "Godkende med en lokal konto", |
|||
"Description:Abp.Account.EnableLocalLogin": "Indikerer om serveren vil tillade brugere at logge ind med lokal konto.", |
|||
"LoggedOutTitle": "Logget ud", |
|||
"LoggedOutText": "Du er blevet logget ud og vil blive videresendt snarest.", |
|||
"ReturnToText": "Klik her for at returnere til applikationen", |
|||
"OrLoginWith": "Eller login med:", |
|||
"ForgotPassword": "Glemt kodeord?", |
|||
"SendPasswordResetLink_Information": "Et link til at nulstille dit kodeord vil blive sendt til din email. Hvis du ikke modtager en email indenfor et par minutter, venligst prøv igen.", |
|||
"PasswordResetMailSentMessage": "Gendannelse af konto er sendt til din email. Hvis du ikke har modtaget emailen indenfor 15 minutter, kig i din spam folder. Hvis du finder den dér, venligst markér den som -Ikke Spam-. ", |
|||
"ResetPassword": "Nulstil Kodeord", |
|||
"ConfirmPassword": "Bekræft (gentag) kodeordet", |
|||
"ResetPassword_Information": "Venligst indtast dit nye kodeord.", |
|||
"YourPasswordIsSuccessfullyReset": "Dit kodeord blev ændret.", |
|||
"GoToTheApplication": "Gå til applikationen", |
|||
"BackToLogin": "Tilbage til login", |
|||
"ProfileTab:Password": "Skift kodeord", |
|||
"ProfileTab:PersonalInfo": "Personlig info", |
|||
"ReturnToApplication": "Gå tilbage til applikationen", |
|||
"Volo.Account:InvalidEmailAddress": "Kan ikke finde den angivne email: {0}", |
|||
"PasswordReset": "Nulstil kodeord", |
|||
"PasswordResetInfoInEmail": "Vi har modtaget en forespørgsel for gendannelse af konto! Hvis du har lavet denne forespørgsel, klik på det efterfølgende link for at nulstille dit kodeord.", |
|||
"ResetMyPassword": "Nulstil mit kodeord", |
|||
"AccessDenied": "Adgang nægtet!", |
|||
"AccessDeniedMessage": "Du har ikke adgang til denne ressource." |
|||
} |
|||
} |
|||
@ -1,171 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 1); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ([ |
|||
/* 0 */ |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
/* 1 */ |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for Arabic |
|||
* @author Amira Salah <amira.salah@itworx.com> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage('ar', { |
|||
Markdown: 'لغة ترميز', |
|||
WYSIWYG: 'ما تراه هو ما تحصل عليه', |
|||
Write: 'يكتب', |
|||
Preview: 'عرض مسبق', |
|||
Headings: 'العناوين', |
|||
Paragraph: 'فقرة', |
|||
Bold: 'خط عريض', |
|||
Italic: 'خط مائل', |
|||
Strike: 'إضراب', |
|||
Code: 'رمز', |
|||
Line: 'خط', |
|||
Blockquote: 'فقرة مقتبسة', |
|||
'Unordered list': 'قائمة غير مرتبة', |
|||
'Ordered list': 'قائمة مرتبة', |
|||
Task: 'مهمة', |
|||
Indent: 'المسافة البادئة', |
|||
Outdent: 'المسافة الخارجة', |
|||
'Insert link': 'أدخل الرابط', |
|||
'Insert CodeBlock': 'أدخل الكود', |
|||
'Insert table': 'أدخل جدول', |
|||
'Insert image': 'أدخل صورة', |
|||
Heading: 'عنوان', |
|||
'Image URL': 'رابط الصورة', |
|||
'Select image file': 'حدد ملف الصورة', |
|||
Description: 'وصف', |
|||
OK: 'موافقة', |
|||
More: 'أكثر', |
|||
Cancel: 'إلغاء', |
|||
File: 'ملف', |
|||
URL: 'رابط', |
|||
'Link text': 'نص الرابط', |
|||
'Add row': 'ضف سطر', |
|||
'Add col': 'ضف عمود', |
|||
'Remove row': 'حذف سطر', |
|||
'Remove col': 'حذف عمود', |
|||
'Align left': 'محاذاة اليسار', |
|||
'Align center': 'محاذاة الوسط', |
|||
'Align right': 'محاذاة اليمين', |
|||
'Remove table': 'حذف الجدول', |
|||
'Would you like to paste as table?': 'هل تريد اللصق كجدول', |
|||
'Text color': 'لون النص', |
|||
'Auto scroll enabled': 'التحريك التلقائي ممكّن', |
|||
'Auto scroll disabled': 'التحريك التلقائي معطّل', |
|||
'Choose language': 'اختر اللغة' |
|||
}); |
|||
|
|||
/***/ }) |
|||
/******/ ]); |
|||
}); |
|||
@ -1,172 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 2); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ([ |
|||
/* 0 */ |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
/* 1 */, |
|||
/* 2 */ |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for Czech |
|||
* @author Dmitrij Tkačenko <dmitrij.tkacenko@scalesoft.cz> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['cs', 'cs-CZ'], { |
|||
Markdown: 'Markdown', |
|||
WYSIWYG: 'WYSIWYG', |
|||
Write: 'Napsat', |
|||
Preview: 'Náhled', |
|||
Headings: 'Nadpisy', |
|||
Paragraph: 'Odstavec', |
|||
Bold: 'Tučné', |
|||
Italic: 'Kurzíva', |
|||
Strike: 'Přeškrtnuté', |
|||
Code: 'Kód', |
|||
Line: 'Vodorovná čára', |
|||
Blockquote: 'Citace', |
|||
'Unordered list': 'Seznam s odrážkami', |
|||
'Ordered list': 'Číslovaný seznam', |
|||
Task: 'Úkol', |
|||
Indent: 'Zvětšit odsazení', |
|||
Outdent: 'Zmenšit odsazení', |
|||
'Insert link': 'Vložit odkaz', |
|||
'Insert CodeBlock': 'Vložit blok kódu', |
|||
'Insert table': 'Vložit tabulku', |
|||
'Insert image': 'Vložit obrázek', |
|||
Heading: 'Nadpis', |
|||
'Image URL': 'URL obrázku', |
|||
'Select image file': 'Vybrat obrázek', |
|||
Description: 'Popis', |
|||
OK: 'OK', |
|||
More: 'Více', |
|||
Cancel: 'Zrušit', |
|||
File: 'Soubor', |
|||
URL: 'URL', |
|||
'Link text': 'Text odkazu', |
|||
'Add row': 'Přidat řádek', |
|||
'Add col': 'Přidat sloupec', |
|||
'Remove row': 'Odebrat řádek', |
|||
'Remove col': 'Odebrat sloupec', |
|||
'Align left': 'Zarovnat vlevo', |
|||
'Align center': 'Zarovnat na střed', |
|||
'Align right': 'Zarovnat vpravo', |
|||
'Remove table': 'Odstranit tabulku', |
|||
'Would you like to paste as table?': 'Chcete vložit jako tabulku?', |
|||
'Text color': 'Barva textu', |
|||
'Auto scroll enabled': 'Automatické rolování zapnuto', |
|||
'Auto scroll disabled': 'Automatické rolování vypnuto', |
|||
'Choose language': 'Vybrat jazyk' |
|||
}); |
|||
|
|||
/***/ }) |
|||
/******/ ]); |
|||
}); |
|||
@ -1,173 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 3); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ([ |
|||
/* 0 */ |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
/* 1 */, |
|||
/* 2 */, |
|||
/* 3 */ |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for German |
|||
* @author Jann-Niklas Kiepert <jannkiepert@vivaldi.net> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['de', 'de-DE'], { |
|||
Markdown: 'Markdown', |
|||
WYSIWYG: 'WYSIWYG', |
|||
Write: 'Verfassen', |
|||
Preview: 'Vorschau', |
|||
Headings: 'Überschriften', |
|||
Paragraph: 'Text', |
|||
Bold: 'Fett', |
|||
Italic: 'Kursiv', |
|||
Strike: 'Durchgestrichen', |
|||
Code: 'Code', |
|||
Line: 'Trennlinie', |
|||
Blockquote: 'Blocktext', |
|||
'Unordered list': 'Aufzählung', |
|||
'Ordered list': 'Nummerierte Aufzählung', |
|||
Task: 'Aufgabe', |
|||
Indent: 'Einrücken', |
|||
Outdent: 'Ausrücken', |
|||
'Insert link': 'Link einfügen', |
|||
'Insert CodeBlock': 'Codeblock einfügen', |
|||
'Insert table': 'Tabelle einfügen', |
|||
'Insert image': 'Grafik einfügen', |
|||
Heading: 'Titel', |
|||
'Image URL': 'Bild URL', |
|||
'Select image file': 'Grafik auswählen', |
|||
Description: 'Beschreibung', |
|||
OK: 'OK', |
|||
More: 'Mehr', |
|||
Cancel: 'Abbrechen', |
|||
File: 'Datei', |
|||
URL: 'URL', |
|||
'Link text': 'Anzuzeigender Text', |
|||
'Add row': 'Zeile hinzufügen', |
|||
'Add col': 'Spalte hinzufügen', |
|||
'Remove row': 'Zeile entfernen', |
|||
'Remove col': 'Spalte entfernen', |
|||
'Align left': 'Links ausrichten', |
|||
'Align center': 'Zentrieren', |
|||
'Align right': 'Rechts ausrichten', |
|||
'Remove table': 'Tabelle entfernen', |
|||
'Would you like to paste as table?': 'Möchten Sie eine Tabelle einfügen?', |
|||
'Text color': 'Textfarbe', |
|||
'Auto scroll enabled': 'Autoscrollen aktiviert', |
|||
'Auto scroll disabled': 'Autoscrollen deaktiviert', |
|||
'Choose language': 'Sprache auswählen' |
|||
}); |
|||
|
|||
/***/ }) |
|||
/******/ ]); |
|||
}); |
|||
@ -1,174 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 4); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ([ |
|||
/* 0 */ |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
/* 1 */, |
|||
/* 2 */, |
|||
/* 3 */, |
|||
/* 4 */ |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for Spanish |
|||
* @author Enrico Lamperti <oss@elamperti.com> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['es', 'es-ES'], { |
|||
Markdown: 'Markdown', |
|||
WYSIWYG: 'WYSIWYG', |
|||
Write: 'Escribir', |
|||
Preview: 'Vista previa', |
|||
Headings: 'Encabezados', |
|||
Paragraph: 'Párrafo', |
|||
Bold: 'Negrita', |
|||
Italic: 'Itálica', |
|||
Strike: 'Tachado', |
|||
Code: 'Código', |
|||
Line: 'Línea', |
|||
Blockquote: 'Cita', |
|||
'Unordered list': 'Lista desordenada', |
|||
'Ordered list': 'Lista ordenada', |
|||
Task: 'Tarea', |
|||
Indent: 'Sangría', |
|||
Outdent: 'Saliendo', |
|||
'Insert link': 'Insertar enlace', |
|||
'Insert CodeBlock': 'Insertar bloque de código', |
|||
'Insert table': 'Insertar tabla', |
|||
'Insert image': 'Insertar imagen', |
|||
Heading: 'Encabezado', |
|||
'Image URL': 'URL de la imagen', |
|||
'Select image file': 'Seleccionar archivo de imagen', |
|||
Description: 'Descripción', |
|||
OK: 'Aceptar', |
|||
More: 'Más', |
|||
Cancel: 'Cancelar', |
|||
File: 'Archivo', |
|||
URL: 'URL', |
|||
'Link text': 'Texto del enlace', |
|||
'Add row': 'Agregar fila', |
|||
'Add col': 'Agregar columna', |
|||
'Remove row': 'Eliminar fila', |
|||
'Remove col': 'Eliminar columna', |
|||
'Align left': 'Alinear a la izquierda', |
|||
'Align center': 'Centrar', |
|||
'Align right': 'Alinear a la derecha', |
|||
'Remove table': 'Eliminar tabla', |
|||
'Would you like to paste as table?': '¿Desea pegar como tabla?', |
|||
'Text color': 'Color del texto', |
|||
'Auto scroll enabled': 'Desplazamiento automático habilitado', |
|||
'Auto scroll disabled': 'Desplazamiento automático deshabilitado', |
|||
'Choose language': 'Elegir idioma' |
|||
}); |
|||
|
|||
/***/ }) |
|||
/******/ ]); |
|||
}); |
|||
@ -1,174 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 5); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ({ |
|||
|
|||
/***/ 0: |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
|
|||
/***/ 5: |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for Finnish |
|||
* @author Tomi Mynttinen <pikseli@iki.fi> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['fi', 'fi-FI'], { |
|||
Markdown: 'Markdown', |
|||
WYSIWYG: 'WYSIWYG', |
|||
Write: 'Kirjoita', |
|||
Preview: 'Esikatselu', |
|||
Headings: 'Otsikot', |
|||
Paragraph: 'Kappale', |
|||
Bold: 'Lihavointi', |
|||
Italic: 'Kursivointi', |
|||
Strike: 'Yliviivaus', |
|||
Code: 'Koodi', |
|||
Line: 'Vaakaviiva', |
|||
Blockquote: 'Lainaus', |
|||
'Unordered list': 'Luettelo', |
|||
'Ordered list': 'Numeroitu luettelo', |
|||
Task: 'Tehtävä', |
|||
Indent: 'Suurenna sisennystä', |
|||
Outdent: 'Pienennä sisennystä', |
|||
'Insert link': 'Lisää linkki', |
|||
'Insert CodeBlock': 'Lisää koodia', |
|||
'Insert table': 'Lisää taulukko', |
|||
'Insert image': 'Lisää kuva', |
|||
Heading: 'Otsikko', |
|||
'Image URL': 'Kuvan URL', |
|||
'Select image file': 'Valitse kuvatiedosto', |
|||
Description: 'Kuvaus', |
|||
OK: 'OK', |
|||
More: 'Lisää', |
|||
Cancel: 'Peruuta', |
|||
File: 'Tiedosto', |
|||
URL: 'URL', |
|||
'Link text': 'Linkkiteksti', |
|||
'Add row': 'Lisää rivi', |
|||
'Add col': 'Lisää sarake', |
|||
'Remove row': 'Poista rivi', |
|||
'Remove col': 'Poista sarake', |
|||
'Align left': 'Tasaus vasemmalle', |
|||
'Align center': 'Keskitä', |
|||
'Align right': 'Tasaus oikealle', |
|||
'Remove table': 'Poista taulukko', |
|||
'Would you like to paste as table?': 'Haluatko liittää taulukkomuodossa?', |
|||
'Text color': 'Tekstin väri', |
|||
'Auto scroll enabled': 'Automaattinen skrollaus käytössä', |
|||
'Auto scroll disabled': 'Automaattinen skrollaus pois käytöstä', |
|||
'Choose language': 'Valitse kieli' |
|||
}); |
|||
|
|||
/***/ }) |
|||
|
|||
/******/ }); |
|||
}); |
|||
@ -1,174 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 6); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ({ |
|||
|
|||
/***/ 0: |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
|
|||
/***/ 6: |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for French |
|||
* @author Stanislas Michalak <stanislas.michalak@gmail.com> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['fr', 'fr-FR'], { |
|||
Markdown: 'Markdown', |
|||
WYSIWYG: 'WYSIWYG', |
|||
Write: 'Écrire', |
|||
Preview: 'Aperçu', |
|||
Headings: 'En-têtes', |
|||
Paragraph: 'Paragraphe', |
|||
Bold: 'Gras', |
|||
Italic: 'Italique', |
|||
Strike: 'Barré', |
|||
Code: 'Code en ligne', |
|||
Line: 'Ligne', |
|||
Blockquote: 'Citation', |
|||
'Unordered list': 'Liste non-ordonnée', |
|||
'Ordered list': 'Liste ordonnée', |
|||
Task: 'Tâche', |
|||
Indent: 'Retrait', |
|||
Outdent: 'Sortir', |
|||
'Insert link': 'Insérer un lien', |
|||
'Insert CodeBlock': 'Insérer un bloc de code', |
|||
'Insert table': 'Insérer un tableau', |
|||
'Insert image': 'Insérer une image', |
|||
Heading: 'En-tête', |
|||
'Image URL': "URL de l'image", |
|||
'Select image file': 'Sélectionnez un fichier image', |
|||
Description: 'Description', |
|||
OK: 'OK', |
|||
More: 'de plus', |
|||
Cancel: 'Annuler', |
|||
File: 'Fichier', |
|||
URL: 'URL', |
|||
'Link text': 'Texte du lien', |
|||
'Add row': 'Ajouter une ligne', |
|||
'Add col': 'Ajouter une colonne', |
|||
'Remove row': 'Supprimer une ligne', |
|||
'Remove col': 'Supprimer une colonne', |
|||
'Align left': 'Aligner à gauche', |
|||
'Align center': 'Aligner au centre', |
|||
'Align right': 'Aligner à droite', |
|||
'Remove table': 'Supprimer le tableau', |
|||
'Would you like to paste as table?': 'Voulez-vous coller ce contenu en tant que tableau ?', |
|||
'Text color': 'Couleur du texte', |
|||
'Auto scroll enabled': 'Défilement automatique activé', |
|||
'Auto scroll disabled': 'Défilement automatique désactivé', |
|||
'Choose language': 'Choix de la langue' |
|||
}); |
|||
|
|||
/***/ }) |
|||
|
|||
/******/ }); |
|||
}); |
|||
@ -1,174 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 7); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ({ |
|||
|
|||
/***/ 0: |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
|
|||
/***/ 7: |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for Spanish |
|||
* @author Aida Vidal <avidal@emapic.es> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['gl', 'gl-ES'], { |
|||
Markdown: 'Markdown', |
|||
WYSIWYG: 'WYSIWYG', |
|||
Write: 'Escribir', |
|||
Preview: 'Vista previa', |
|||
Headings: 'Encabezados', |
|||
Paragraph: 'Parágrafo', |
|||
Bold: 'Negriña', |
|||
Italic: 'Cursiva', |
|||
Strike: 'Riscado', |
|||
Code: 'Código', |
|||
Line: 'Liña', |
|||
Blockquote: 'Cita', |
|||
'Unordered list': 'Lista desordenada', |
|||
'Ordered list': 'Lista ordenada', |
|||
Task: 'Tarefa', |
|||
Indent: 'Sangría', |
|||
Outdent: 'Anular sangría', |
|||
'Insert link': 'Inserir enlace', |
|||
'Insert CodeBlock': 'Inserir bloque de código', |
|||
'Insert table': 'Inserir táboa', |
|||
'Insert image': 'Inserir imaxe', |
|||
Heading: 'Encabezado', |
|||
'Image URL': 'URL da imaxe', |
|||
'Select image file': 'Seleccionar arquivo da imaxe', |
|||
Description: 'Descrición', |
|||
OK: 'Aceptar', |
|||
More: 'Máis', |
|||
Cancel: 'Cancelar', |
|||
File: 'Arquivo', |
|||
URL: 'URL', |
|||
'Link text': 'Texto do enlace', |
|||
'Add row': 'Agregar fila', |
|||
'Add col': 'Agregar columna', |
|||
'Remove row': 'Eliminar fila', |
|||
'Remove col': 'Eliminar columna', |
|||
'Align left': 'Aliñar á esquerda', |
|||
'Align center': 'Centrar', |
|||
'Align right': 'Aliñar á dereita', |
|||
'Remove table': 'Eliminar táboa', |
|||
'Would you like to paste as table?': 'Desexa pegar como táboa?', |
|||
'Text color': 'Cor do texto', |
|||
'Auto scroll enabled': 'Desprazamento automático habilitado', |
|||
'Auto scroll disabled': 'Desprazamento automático deshabilitado', |
|||
'Choose language': 'Elixir idioma' |
|||
}); |
|||
|
|||
/***/ }) |
|||
|
|||
/******/ }); |
|||
}); |
|||
@ -1,174 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 8); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ({ |
|||
|
|||
/***/ 0: |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
|
|||
/***/ 8: |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for Croatian |
|||
* @author Hrvoje A. <hrvoj3e@gmail.com> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['hr', 'hr-HR'], { |
|||
Markdown: 'Markdown', |
|||
WYSIWYG: 'WYSIWYG', |
|||
Write: 'Piši', |
|||
Preview: 'Pregled', |
|||
Headings: 'Naslovi', |
|||
Paragraph: 'Paragraf', |
|||
Bold: 'podebljano', |
|||
Italic: 'kurziv', |
|||
Strike: 'prcrtano', |
|||
Code: 'Uklopljeni kôd', |
|||
Line: 'Linija', |
|||
Blockquote: 'Blok citat', |
|||
'Unordered list': 'Neporedana lista', |
|||
'Ordered list': 'Poredana lista', |
|||
Task: 'Task', |
|||
Indent: 'Povećaj uvlaku', |
|||
Outdent: 'Smanji uvlaku', |
|||
'Insert link': 'Umetni link', |
|||
'Insert CodeBlock': 'Umetni blok kôda', |
|||
'Insert table': 'Umetni tablicu', |
|||
'Insert image': 'Umetni sliku', |
|||
Heading: 'Naslov', |
|||
'Image URL': 'URL slike', |
|||
'Select image file': 'Odaberi slikovnu datoteku', |
|||
Description: 'Opis', |
|||
OK: 'OK', |
|||
More: 'Više', |
|||
Cancel: 'Odustani', |
|||
File: 'Datoteka', |
|||
URL: 'URL', |
|||
'Link text': 'Tekst linka', |
|||
'Add row': 'Dodaj redak', |
|||
'Add col': 'Dodaj stupac', |
|||
'Remove row': 'Ukloni redak', |
|||
'Remove col': 'Remove stupac', |
|||
'Align left': 'Poravnaj lijevo', |
|||
'Align center': 'Poravnaj centrirano', |
|||
'Align right': 'Poravnaj desno', |
|||
'Remove table': 'Ukloni tablicu', |
|||
'Would you like to paste as table?': 'Zalite li zalijepiti kao tablicu?', |
|||
'Text color': 'Boja teksta', |
|||
'Auto scroll enabled': 'Omogući auto klizanje', |
|||
'Auto scroll disabled': 'Onemogući auto klizanje', |
|||
'Choose language': 'Odabir jezika' |
|||
}); |
|||
|
|||
/***/ }) |
|||
|
|||
/******/ }); |
|||
}); |
|||
@ -1,174 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 9); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ({ |
|||
|
|||
/***/ 0: |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
|
|||
/***/ 9: |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for Italian |
|||
* @author Massimo Redaelli <massimo@typish.io> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['it', 'it-IT'], { |
|||
Markdown: 'Markdown', |
|||
WYSIWYG: 'WYSIWYG', |
|||
Write: 'Scrivere', |
|||
Preview: 'Anteprima', |
|||
Headings: 'Intestazioni', |
|||
Paragraph: 'Paragrafo', |
|||
Bold: 'Grassetto', |
|||
Italic: 'Corsivo', |
|||
Strike: 'Barrato', |
|||
Code: 'Codice', |
|||
Line: 'Linea', |
|||
Blockquote: 'Blocco citazione', |
|||
'Unordered list': 'Lista puntata', |
|||
'Ordered list': 'Lista numerata', |
|||
Task: 'Attività', |
|||
Indent: 'Aggiungi indentazione', |
|||
Outdent: 'Rimuovi indentazione', |
|||
'Insert link': 'Inserisci link', |
|||
'Insert CodeBlock': 'Inserisci blocco di codice', |
|||
'Insert table': 'Inserisci tabella', |
|||
'Insert image': 'Inserisci immagine', |
|||
Heading: 'Intestazione', |
|||
'Image URL': 'URL immagine', |
|||
'Select image file': 'Seleziona file immagine', |
|||
Description: 'Descrizione', |
|||
OK: 'OK', |
|||
More: 'Più', |
|||
Cancel: 'Cancella', |
|||
File: 'File', |
|||
URL: 'URL', |
|||
'Link text': 'Testo del collegamento', |
|||
'Add row': 'Aggiungi riga', |
|||
'Add col': 'Aggiungi colonna', |
|||
'Remove row': 'Rimuovi riga', |
|||
'Remove col': 'Rimuovi colonna', |
|||
'Align left': 'Allinea a sinistra', |
|||
'Align center': 'Allinea al centro', |
|||
'Align right': 'Allinea a destra', |
|||
'Remove table': 'Rimuovi tabella', |
|||
'Would you like to paste as table?': 'Desideri incollare sotto forma di tabella?', |
|||
'Text color': 'Colore del testo', |
|||
'Auto scroll enabled': 'Scrolling automatico abilitato', |
|||
'Auto scroll disabled': 'Scrolling automatico disabilitato', |
|||
'Choose language': 'Scegli la lingua' |
|||
}); |
|||
|
|||
/***/ }) |
|||
|
|||
/******/ }); |
|||
}); |
|||
@ -1,174 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 10); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ({ |
|||
|
|||
/***/ 0: |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
|
|||
/***/ 10: |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for Japanese |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['ja', 'ja-JP'], { |
|||
Markdown: 'マークダウン', |
|||
WYSIWYG: 'WYSIWYG', |
|||
Write: '編集する', |
|||
Preview: 'プレビュー', |
|||
Headings: '見出し', |
|||
Paragraph: '本文', |
|||
Bold: '太字', |
|||
Italic: 'イタリック', |
|||
Strike: 'ストライク', |
|||
Code: 'インラインコード', |
|||
Line: 'ライン', |
|||
Blockquote: '引用', |
|||
'Unordered list': '番号なしリスト', |
|||
'Ordered list': '順序付きリスト', |
|||
Task: 'タスク', |
|||
Indent: 'インデント', |
|||
Outdent: 'アウトデント', |
|||
'Insert link': 'リンク挿入', |
|||
'Insert CodeBlock': 'コードブロック挿入', |
|||
'Insert table': 'テーブル挿入', |
|||
'Insert image': '画像挿入', |
|||
Heading: '見出し', |
|||
'Image URL': 'イメージURL', |
|||
'Select image file': '画像ファイル選択', |
|||
Description: 'ディスクリプション ', |
|||
OK: 'はい', |
|||
More: 'もっと', |
|||
Cancel: 'キャンセル', |
|||
File: 'ファイル', |
|||
URL: 'URL', |
|||
'Link text': 'リンクテキスト', |
|||
'Add row': '行追加', |
|||
'Add col': '列追加', |
|||
'Remove row': '行削除', |
|||
'Remove col': '列削除', |
|||
'Align left': '左揃え', |
|||
'Align center': '中央揃え', |
|||
'Align right': '右揃え', |
|||
'Remove table': 'テーブル削除', |
|||
'Would you like to paste as table?': 'テーブルを貼り付けますか?', |
|||
'Text color': '文字色相', |
|||
'Auto scroll enabled': '自動スクロールが有効', |
|||
'Auto scroll disabled': '自動スクロールを無効に', |
|||
'Choose language': '言語選択' |
|||
}); |
|||
|
|||
/***/ }) |
|||
|
|||
/******/ }); |
|||
}); |
|||
@ -1,174 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 11); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ({ |
|||
|
|||
/***/ 0: |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
|
|||
/***/ 11: |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for Korean |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['ko', 'ko-KR'], { |
|||
Markdown: '마크다운', |
|||
WYSIWYG: '위지윅', |
|||
Write: '편집하기', |
|||
Preview: '미리보기', |
|||
Headings: '제목크기', |
|||
Paragraph: '본문', |
|||
Bold: '굵게', |
|||
Italic: '기울임꼴', |
|||
Strike: '취소선', |
|||
Code: '인라인 코드', |
|||
Line: '문단나눔', |
|||
Blockquote: '인용구', |
|||
'Unordered list': '글머리 기호', |
|||
'Ordered list': '번호 매기기', |
|||
Task: '체크박스', |
|||
Indent: '들여쓰기', |
|||
Outdent: '내어쓰기', |
|||
'Insert link': '링크 삽입', |
|||
'Insert CodeBlock': '코드블럭 삽입', |
|||
'Insert table': '표 삽입', |
|||
'Insert image': '이미지 삽입', |
|||
Heading: '제목', |
|||
'Image URL': '이미지 주소', |
|||
'Select image file': '이미지 파일을 선택하세요.', |
|||
Description: '설명', |
|||
OK: '확인', |
|||
More: '더 보기', |
|||
Cancel: '취소', |
|||
File: '파일', |
|||
URL: '주소', |
|||
'Link text': '링크 텍스트', |
|||
'Add row': '행 추가', |
|||
'Add col': '열 추가', |
|||
'Remove row': '행 삭제', |
|||
'Remove col': '열 삭제', |
|||
'Align left': '왼쪽 정렬', |
|||
'Align center': '가운데 정렬', |
|||
'Align right': '오른쪽 정렬', |
|||
'Remove table': '표 삭제', |
|||
'Would you like to paste as table?': '표형태로 붙여 넣겠습니까?', |
|||
'Text color': '글자 색상', |
|||
'Auto scroll enabled': '자동 스크롤 켜짐', |
|||
'Auto scroll disabled': '자동 스크롤 꺼짐', |
|||
'Choose language': '언어 선택' |
|||
}); |
|||
|
|||
/***/ }) |
|||
|
|||
/******/ }); |
|||
}); |
|||
@ -1,174 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 12); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ({ |
|||
|
|||
/***/ 0: |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
|
|||
/***/ 12: |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for Norwegian |
|||
* @author Anton Reytarovskiy <reitarovskii.toh@gmail.com> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['nb', 'nb-NO'], { |
|||
Markdown: 'Markdown', |
|||
WYSIWYG: 'WYSIWYG', |
|||
Write: 'Skriv', |
|||
Preview: 'Forhåndsvis', |
|||
Headings: 'Overskrifter', |
|||
Paragraph: 'Avsnitt', |
|||
Bold: 'Fet skrift', |
|||
Italic: 'Kursiv', |
|||
Strike: 'Gjennomstrek', |
|||
Code: 'Kode', |
|||
Line: 'Linje', |
|||
Blockquote: 'Blokksitat', |
|||
'Unordered list': 'Usortert liste', |
|||
'Ordered list': 'Sortert liste', |
|||
Task: 'Task', |
|||
Indent: 'Indent', |
|||
Outdent: 'Outdent', |
|||
'Insert link': 'Sett inn lenke', |
|||
'Insert CodeBlock': 'Sett inn CodeStreng', |
|||
'Insert table': 'Sett inn diagram', |
|||
'Insert image': 'Sett inn bilde', |
|||
Heading: 'Overskrift', |
|||
'Image URL': 'BildeURL', |
|||
'Select image file': 'Velg bildefil', |
|||
Description: 'Beskrivelse', |
|||
OK: 'OK', |
|||
More: 'Mer', |
|||
Cancel: 'Angre', |
|||
File: 'Fil', |
|||
URL: 'URL', |
|||
'Link text': 'Lenketekst', |
|||
'Add row': 'Legg til rad', |
|||
'Add col': 'Legg til kolonne', |
|||
'Remove row': 'Fjern rad', |
|||
'Remove col': 'Fjern kolonne', |
|||
'Align left': 'Venstreorienter', |
|||
'Align center': 'Senterorienter', |
|||
'Align right': 'Høyreorienter', |
|||
'Remove table': 'Fjern diagram', |
|||
'Would you like to paste as table?': 'Ønsker du å lime inn som en tabell?', |
|||
'Text color': 'Tekstfarge', |
|||
'Auto scroll enabled': 'Auto-scroll aktivert', |
|||
'Auto scroll disabled': 'Auto-scroll deaktivert', |
|||
'Choose language': 'Velg språk' |
|||
}); |
|||
|
|||
/***/ }) |
|||
|
|||
/******/ }); |
|||
}); |
|||
@ -1,174 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 13); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ({ |
|||
|
|||
/***/ 0: |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
|
|||
/***/ 13: |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for Dutch |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['nl', 'nl-NL'], { |
|||
Markdown: 'Markdown', |
|||
WYSIWYG: 'WYSIWYG', |
|||
Write: 'Opslaan', |
|||
Preview: 'Voorbeeld', |
|||
Headings: 'Koppen', |
|||
Paragraph: 'Alinea', |
|||
Bold: 'Vet', |
|||
Italic: 'Cursief', |
|||
Strike: 'Doorhalen', |
|||
Code: 'Inline code', |
|||
Line: 'Regel', |
|||
Blockquote: 'Citaatblok', |
|||
'Unordered list': 'Opsomming', |
|||
'Ordered list': 'Genummerde opsomming', |
|||
Task: 'Taak', |
|||
Indent: 'Niveau verhogen', |
|||
Outdent: 'Niveau verlagen', |
|||
'Insert link': 'Link invoegen', |
|||
'Insert CodeBlock': 'Codeblok toevoegen', |
|||
'Insert table': 'Tabel invoegen', |
|||
'Insert image': 'Afbeelding invoegen', |
|||
Heading: 'Kop', |
|||
'Image URL': 'Afbeelding URL', |
|||
'Select image file': 'Selecteer een afbeelding', |
|||
Description: 'Omschrijving', |
|||
OK: 'OK', |
|||
More: 'Meer', |
|||
Cancel: 'Annuleren', |
|||
File: 'Bestand', |
|||
URL: 'URL', |
|||
'Link text': 'Link tekst', |
|||
'Add row': 'Rij toevoegen', |
|||
'Add col': 'Kolom toevoegen', |
|||
'Remove row': 'Rij verwijderen', |
|||
'Remove col': 'Kolom verwijderen', |
|||
'Align left': 'Links uitlijnen', |
|||
'Align center': 'Centreren', |
|||
'Align right': 'Rechts uitlijnen', |
|||
'Remove table': 'Verwijder tabel', |
|||
'Would you like to paste as table?': 'Wil je dit als tabel plakken?', |
|||
'Text color': 'Tekstkleur', |
|||
'Auto scroll enabled': 'Autoscroll ingeschakeld', |
|||
'Auto scroll disabled': 'Autoscroll uitgeschakeld', |
|||
'Choose language': 'Kies een taal' |
|||
}); |
|||
|
|||
/***/ }) |
|||
|
|||
/******/ }); |
|||
}); |
|||
@ -1,174 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 14); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ({ |
|||
|
|||
/***/ 0: |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
|
|||
/***/ 14: |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for Polish |
|||
* @author Marcin Mikołajczak <me@m4sk.in> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['pl', 'pl-PL'], { |
|||
Markdown: 'Markdown', |
|||
WYSIWYG: 'WYSIWYG', |
|||
Write: 'Napisz', |
|||
Preview: 'Podgląd', |
|||
Headings: 'Nagłówki', |
|||
Paragraph: 'Akapit', |
|||
Bold: 'Pogrubienie', |
|||
Italic: 'Kursywa', |
|||
Strike: 'Przekreślenie', |
|||
Code: 'Fragment kodu', |
|||
Line: 'Linia', |
|||
Blockquote: 'Cytat', |
|||
'Unordered list': 'Lista nieuporządkowana', |
|||
'Ordered list': 'Lista uporządkowana', |
|||
Task: 'Zadanie', |
|||
Indent: 'Utwórz wcięcie', |
|||
Outdent: 'Usuń wcięcie', |
|||
'Insert link': 'Umieść odnośnik', |
|||
'Insert CodeBlock': 'Umieść blok kodu', |
|||
'Insert table': 'Umieść tabelę', |
|||
'Insert image': 'Umieść obraz', |
|||
Heading: 'Nagłówek', |
|||
'Image URL': 'Adres URL obrazu', |
|||
'Select image file': 'Wybierz plik obrazu', |
|||
Description: 'Opis', |
|||
OK: 'OK', |
|||
More: 'Więcej', |
|||
Cancel: 'Anuluj', |
|||
File: 'Plik', |
|||
URL: 'URL', |
|||
'Link text': 'Tekst odnośnika', |
|||
'Add row': 'Dodaj rząd', |
|||
'Add col': 'Dodaj kolumnę', |
|||
'Remove row': 'Usuń rząd', |
|||
'Remove col': 'Usuń kolumnę', |
|||
'Align left': 'Wyrównaj do lewej', |
|||
'Align center': 'Wyśrodkuj', |
|||
'Align right': 'Wyrównaj do prawej', |
|||
'Remove table': 'Usuń tabelę', |
|||
'Would you like to paste as table?': 'Czy chcesz wkleić tekst jako tabelę?', |
|||
'Text color': 'Kolor tekstu', |
|||
'Auto scroll enabled': 'Włączono automatyczne przewijanie', |
|||
'Auto scroll disabled': 'Wyłączono automatyczne przewijanie', |
|||
'Choose language': 'Wybierz język' |
|||
}); |
|||
|
|||
/***/ }) |
|||
|
|||
/******/ }); |
|||
}); |
|||
@ -1,174 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 15); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ({ |
|||
|
|||
/***/ 0: |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
|
|||
/***/ 15: |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for Português |
|||
* @author Nícolas Huber <nicolasluishuber@gmail.com> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['pt', 'pt-BR'], { |
|||
Markdown: 'Markdown', |
|||
WYSIWYG: 'WYSIWYG', |
|||
Write: 'Escrever', |
|||
Preview: 'Pré-visualizar', |
|||
Headings: 'Cabeçalhos', |
|||
Paragraph: 'Parágrafo', |
|||
Bold: 'Negrito', |
|||
Italic: 'Itálico', |
|||
Strike: 'Traçado', |
|||
Code: 'Código', |
|||
Line: 'Linha', |
|||
Blockquote: 'Bloco de citação', |
|||
'Unordered list': 'Lista não ordenada', |
|||
'Ordered list': 'Lista ordenada', |
|||
Task: 'Tarefa', |
|||
Indent: 'Recuo à esquerda', |
|||
Outdent: 'Recuo à direita', |
|||
'Insert link': 'Inserir link', |
|||
'Insert CodeBlock': 'Inserir bloco de código', |
|||
'Insert table': 'Inserir tabela', |
|||
'Insert image': 'Inserir imagem', |
|||
Heading: 'Título', |
|||
'Image URL': 'URL da imagem', |
|||
'Select image file': 'Selecione um arquivo de imagem', |
|||
Description: 'Descrição', |
|||
OK: 'OK', |
|||
More: 'Mais', |
|||
Cancel: 'Cancelar', |
|||
File: 'Arquivo', |
|||
URL: 'URL', |
|||
'Link text': 'Link de texto', |
|||
'Add row': 'Adicionar linha', |
|||
'Add col': 'Adicionar coluna', |
|||
'Remove row': 'Remover linha', |
|||
'Remove col': 'Remover coluna', |
|||
'Align left': 'Alinhar à esquerda', |
|||
'Align center': 'Alinhar ao centro', |
|||
'Align right': 'Alinhar à direita', |
|||
'Remove table': 'Remover tabela', |
|||
'Would you like to paste as table?': 'Você gostaria de colar como mesa?', |
|||
'Text color': 'Cor do texto', |
|||
'Auto scroll enabled': 'Rolagem automática habilitada', |
|||
'Auto scroll disabled': 'Rolagem automática desabilitada', |
|||
'Choose language': 'Escolher linguagem' |
|||
}); |
|||
|
|||
/***/ }) |
|||
|
|||
/******/ }); |
|||
}); |
|||
@ -1,174 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 16); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ({ |
|||
|
|||
/***/ 0: |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
|
|||
/***/ 16: |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for Russian |
|||
* @author Stepan Samko <stpnsamko@gmail.com> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['ru', 'ru-RU'], { |
|||
Markdown: 'Markdown', |
|||
WYSIWYG: 'WYSIWYG', |
|||
Write: 'Написать', |
|||
Preview: 'Предварительный просмотр', |
|||
Headings: 'Заголовки', |
|||
Paragraph: 'Абзац', |
|||
Bold: 'Жирный', |
|||
Italic: 'Курсив', |
|||
Strike: 'Зачеркнутый', |
|||
Code: 'Встроенный код', |
|||
Line: 'Строка', |
|||
Blockquote: 'Блок цитирования', |
|||
'Unordered list': 'Неупорядоченный список', |
|||
'Ordered list': 'Упорядоченный список', |
|||
Task: 'Задача', |
|||
Indent: 'отступ', |
|||
Outdent: 'Выступ', |
|||
'Insert link': 'Вставить ссылку', |
|||
'Insert CodeBlock': 'Вставить код', |
|||
'Insert table': 'Вставить таблицу', |
|||
'Insert image': 'Вставить изображение', |
|||
Heading: 'Заголовок', |
|||
'Image URL': 'URL изображения', |
|||
'Select image file': 'Выбрать файл изображения', |
|||
Description: 'Описание', |
|||
OK: 'Хорошо', |
|||
More: 'еще', |
|||
Cancel: 'Отмена', |
|||
File: 'Файл', |
|||
URL: 'URL', |
|||
'Link text': 'Текст ссылки', |
|||
'Add row': 'Добавить ряд', |
|||
'Add col': 'Добавить столбец', |
|||
'Remove row': 'Удалить ряд', |
|||
'Remove col': 'Удалить столбец', |
|||
'Align left': 'Выровнять по левому краю', |
|||
'Align center': 'Выровнять по центру', |
|||
'Align right': 'Выровнять по правому краю', |
|||
'Remove table': 'Удалить таблицу', |
|||
'Would you like to paste as table?': 'Вы хотите вставить в виде таблицы?', |
|||
'Text color': 'Цвет текста', |
|||
'Auto scroll enabled': 'Автоматическая прокрутка включена', |
|||
'Auto scroll disabled': 'Автоматическая прокрутка отключена', |
|||
'Choose language': 'Выбрать язык' |
|||
}); |
|||
|
|||
/***/ }) |
|||
|
|||
/******/ }); |
|||
}); |
|||
@ -1,174 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 17); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ({ |
|||
|
|||
/***/ 0: |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
|
|||
/***/ 17: |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for Swedish |
|||
* @author Magnus Aspling <magnus@yug.se> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['sv', 'sv-SE'], { |
|||
Markdown: 'Markdown', |
|||
WYSIWYG: 'WYSIWYG', |
|||
Write: 'Skriv', |
|||
Preview: 'Förhandsgranska', |
|||
Headings: 'Överskrifter', |
|||
Paragraph: 'Paragraf', |
|||
Bold: 'Fet', |
|||
Italic: 'Kursiv', |
|||
Strike: 'Genomstruken', |
|||
Code: 'Kodrad', |
|||
Line: 'Linje', |
|||
Blockquote: 'Citatblock', |
|||
'Unordered list': 'Punktlista', |
|||
'Ordered list': 'Numrerad lista', |
|||
Task: 'Att göra', |
|||
Indent: 'Öka indrag', |
|||
Outdent: 'Minska indrag', |
|||
'Insert link': 'Infoga länk', |
|||
'Insert CodeBlock': 'Infoga kodblock', |
|||
'Insert table': 'Infoga tabell', |
|||
'Insert image': 'Infoga bild', |
|||
Heading: 'Överskrift', |
|||
'Image URL': 'Bildadress', |
|||
'Select image file': 'Välj en bildfil', |
|||
Description: 'Beskrivning', |
|||
OK: 'OK', |
|||
More: 'Mer', |
|||
Cancel: 'Avbryt', |
|||
File: 'Fil', |
|||
URL: 'Adress', |
|||
'Link text': 'Länktext', |
|||
'Add row': 'Infoga rad', |
|||
'Add col': 'Infoga kolumn', |
|||
'Remove row': 'Radera rad', |
|||
'Remove col': 'Radera kolumn', |
|||
'Align left': 'Vänsterjustera', |
|||
'Align center': 'Centrera', |
|||
'Align right': 'Högerjustera', |
|||
'Remove table': 'Radera tabell', |
|||
'Would you like to paste as table?': 'Vill du klistra in som en tabell?', |
|||
'Text color': 'Textfärg', |
|||
'Auto scroll enabled': 'Automatisk scroll aktiverad', |
|||
'Auto scroll disabled': 'Automatisk scroll inaktiverad', |
|||
'Choose language': 'Välj språk' |
|||
}); |
|||
|
|||
/***/ }) |
|||
|
|||
/******/ }); |
|||
}); |
|||
@ -1,174 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 18); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ({ |
|||
|
|||
/***/ 0: |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
|
|||
/***/ 18: |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for Turkish |
|||
* @author Mesut Gölcük <mesutgolcuk@gmail.com> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['tr', 'tr-TR'], { |
|||
Markdown: 'Markdown', |
|||
WYSIWYG: 'WYSIWYG', |
|||
Write: 'Düzenle', |
|||
Preview: 'Ön izleme', |
|||
Headings: 'Başlıklar', |
|||
Paragraph: 'Paragraf', |
|||
Bold: 'Kalın', |
|||
Italic: 'İtalik', |
|||
Strike: 'Altı çizgili', |
|||
Code: 'Satır içi kod', |
|||
Line: 'Çizgi', |
|||
Blockquote: 'Alıntı', |
|||
'Unordered list': 'Sıralanmamış liste', |
|||
'Ordered list': 'Sıralı liste', |
|||
Task: 'Görev kutusu', |
|||
Indent: 'Girintiyi arttır', |
|||
Outdent: 'Girintiyi azalt', |
|||
'Insert link': 'Bağlantı ekle', |
|||
'Insert CodeBlock': 'Kod bloku ekle', |
|||
'Insert table': 'Tablo ekle', |
|||
'Insert image': 'İmaj ekle', |
|||
Heading: 'Başlık', |
|||
'Image URL': 'İmaj URL', |
|||
'Select image file': 'İmaj dosyası seç', |
|||
Description: 'Açıklama', |
|||
OK: 'Onay', |
|||
More: 'Daha Fazla', |
|||
Cancel: 'İptal', |
|||
File: 'Dosya', |
|||
URL: 'URL', |
|||
'Link text': 'Bağlantı yazısı', |
|||
'Add row': 'Satır ekle', |
|||
'Add col': 'Sütun ekle', |
|||
'Remove row': 'Satır sil', |
|||
'Remove col': 'Sütun sil', |
|||
'Align left': 'Sola hizala', |
|||
'Align center': 'Merkeze hizala', |
|||
'Align right': 'Sağa hizala', |
|||
'Remove table': 'Tabloyu kaldır', |
|||
'Would you like to paste as table?': 'Tablo olarak yapıştırmak ister misiniz?', |
|||
'Text color': 'Metin rengi', |
|||
'Auto scroll enabled': 'Otomatik kaydırma açık', |
|||
'Auto scroll disabled': 'Otomatik kaydırma kapalı', |
|||
'Choose language': 'Dil seçiniz' |
|||
}); |
|||
|
|||
/***/ }) |
|||
|
|||
/******/ }); |
|||
}); |
|||
@ -1,174 +0,0 @@ |
|||
/*! |
|||
* TOAST UI Editor : i18n |
|||
* @version 2.5.1 |
|||
* @author NHN FE Development Lab <dl_javascript@nhn.com> |
|||
* @license MIT |
|||
*/ |
|||
(function webpackUniversalModuleDefinition(root, factory) { |
|||
if(typeof exports === 'object' && typeof module === 'object') |
|||
module.exports = factory(require("@toast-ui/editor")); |
|||
else if(typeof define === 'function' && define.amd) |
|||
define(["@toast-ui/editor"], factory); |
|||
else { |
|||
var a = typeof exports === 'object' ? factory(require("@toast-ui/editor")) : factory(root["toastui"]["Editor"]); |
|||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; |
|||
} |
|||
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) { |
|||
return /******/ (function(modules) { // webpackBootstrap
|
|||
/******/ // The module cache
|
|||
/******/ var installedModules = {}; |
|||
/******/ |
|||
/******/ // The require function
|
|||
/******/ function __webpack_require__(moduleId) { |
|||
/******/ |
|||
/******/ // Check if module is in cache
|
|||
/******/ if(installedModules[moduleId]) { |
|||
/******/ return installedModules[moduleId].exports; |
|||
/******/ } |
|||
/******/ // Create a new module (and put it into the cache)
|
|||
/******/ var module = installedModules[moduleId] = { |
|||
/******/ i: moduleId, |
|||
/******/ l: false, |
|||
/******/ exports: {} |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Execute the module function
|
|||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
|||
/******/ |
|||
/******/ // Flag the module as loaded
|
|||
/******/ module.l = true; |
|||
/******/ |
|||
/******/ // Return the exports of the module
|
|||
/******/ return module.exports; |
|||
/******/ } |
|||
/******/ |
|||
/******/ |
|||
/******/ // expose the modules object (__webpack_modules__)
|
|||
/******/ __webpack_require__.m = modules; |
|||
/******/ |
|||
/******/ // expose the module cache
|
|||
/******/ __webpack_require__.c = installedModules; |
|||
/******/ |
|||
/******/ // define getter function for harmony exports
|
|||
/******/ __webpack_require__.d = function(exports, name, getter) { |
|||
/******/ if(!__webpack_require__.o(exports, name)) { |
|||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
|||
/******/ } |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // define __esModule on exports
|
|||
/******/ __webpack_require__.r = function(exports) { |
|||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
|||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
|||
/******/ } |
|||
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // create a fake namespace object
|
|||
/******/ // mode & 1: value is a module id, require it
|
|||
/******/ // mode & 2: merge all properties of value into the ns
|
|||
/******/ // mode & 4: return value when already ns object
|
|||
/******/ // mode & 8|1: behave like require
|
|||
/******/ __webpack_require__.t = function(value, mode) { |
|||
/******/ if(mode & 1) value = __webpack_require__(value); |
|||
/******/ if(mode & 8) return value; |
|||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
|||
/******/ var ns = Object.create(null); |
|||
/******/ __webpack_require__.r(ns); |
|||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
|||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
|||
/******/ return ns; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|||
/******/ __webpack_require__.n = function(module) { |
|||
/******/ var getter = module && module.__esModule ? |
|||
/******/ function getDefault() { return module['default']; } : |
|||
/******/ function getModuleExports() { return module; }; |
|||
/******/ __webpack_require__.d(getter, 'a', getter); |
|||
/******/ return getter; |
|||
/******/ }; |
|||
/******/ |
|||
/******/ // Object.prototype.hasOwnProperty.call
|
|||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
|||
/******/ |
|||
/******/ // __webpack_public_path__
|
|||
/******/ __webpack_require__.p = ""; |
|||
/******/ |
|||
/******/ |
|||
/******/ // Load entry module and return exports
|
|||
/******/ return __webpack_require__(__webpack_require__.s = 19); |
|||
/******/ }) |
|||
/************************************************************************/ |
|||
/******/ ({ |
|||
|
|||
/***/ 0: |
|||
/***/ (function(module, exports) { |
|||
|
|||
module.exports = __WEBPACK_EXTERNAL_MODULE__0__; |
|||
|
|||
/***/ }), |
|||
|
|||
/***/ 19: |
|||
/***/ (function(module, __webpack_exports__, __webpack_require__) { |
|||
|
|||
"use strict"; |
|||
__webpack_require__.r(__webpack_exports__); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0); |
|||
/* harmony import */ var _editor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editor__WEBPACK_IMPORTED_MODULE_0__); |
|||
/** |
|||
* @fileoverview I18N for Ukrainian |
|||
* @author Nikolya <k_m_i@i.ua> |
|||
*/ |
|||
|
|||
_editor__WEBPACK_IMPORTED_MODULE_0___default.a.setLanguage(['uk', 'uk-UA'], { |
|||
Markdown: 'Markdown', |
|||
WYSIWYG: 'WYSIWYG', |
|||
Write: 'Написати', |
|||
Preview: 'Попередній перегляд', |
|||
Headings: 'Заголовки', |
|||
Paragraph: 'Абзац', |
|||
Bold: 'Жирний', |
|||
Italic: 'Курсив', |
|||
Strike: 'Закреслений', |
|||
Code: 'Вбудований код', |
|||
Line: 'Лінія', |
|||
Blockquote: 'Блок цитування', |
|||
'Unordered list': 'Невпорядкований список', |
|||
'Ordered list': 'Упорядкований список', |
|||
Task: 'Завдання', |
|||
Indent: 'відступ', |
|||
Outdent: 'застарілий', |
|||
'Insert link': 'Вставити посилання', |
|||
'Insert CodeBlock': 'Вставити код', |
|||
'Insert table': 'Вставити таблицю', |
|||
'Insert image': 'Вставити зображення', |
|||
Heading: 'Заголовок', |
|||
'Image URL': 'URL зображення', |
|||
'Select image file': 'Вибрати файл зображення', |
|||
Description: 'Опис', |
|||
OK: 'OK', |
|||
More: 'ще', |
|||
Cancel: 'Скасувати', |
|||
File: 'Файл', |
|||
URL: 'URL', |
|||
'Link text': 'Текст посилання', |
|||
'Add row': 'Додати ряд', |
|||
'Add col': 'Додати стовпчик', |
|||
'Remove row': 'Видалити ряд', |
|||
'Remove col': 'Видалити стовпчик', |
|||
'Align left': 'Вирівняти по лівому краю', |
|||
'Align center': 'Вирівняти по центру', |
|||
'Align right': 'Вирівняти по правому краю', |
|||
'Remove table': 'Видалити таблицю', |
|||
'Would you like to paste as table?': 'Ви хочете вставити у вигляді таблиці?', |
|||
'Text color': 'Колір тексту', |
|||
'Auto scroll enabled': 'Автоматична прокрутка включена', |
|||
'Auto scroll disabled': 'Автоматична прокрутка відключена', |
|||
'Choose language': 'Вибрати мову' |
|||
}); |
|||
|
|||
/***/ }) |
|||
|
|||
/******/ }); |
|||
}); |
|||