cleanup duplicate translation ids (#3001)
This commit is contained in:
@@ -43,6 +43,7 @@ class TranslationCommand extends Command
|
|||||||
->setDescription('Translation adjustments')
|
->setDescription('Translation adjustments')
|
||||||
->addOption('resname', null, InputOption::VALUE_NONE, 'Fix the resname vs. id attribute')
|
->addOption('resname', null, InputOption::VALUE_NONE, 'Fix the resname vs. id attribute')
|
||||||
->addOption('duplicates', null, InputOption::VALUE_NONE, 'Find duplicate translation keys')
|
->addOption('duplicates', null, InputOption::VALUE_NONE, 'Find duplicate translation keys')
|
||||||
|
->addOption('delete-resname', null, InputOption::VALUE_REQUIRED, 'Deletes the translation by resname')
|
||||||
->addOption('extension', null, InputOption::VALUE_NONE, 'Find translation files with wrong extensions')
|
->addOption('extension', null, InputOption::VALUE_NONE, 'Find translation files with wrong extensions')
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
@@ -61,6 +62,13 @@ class TranslationCommand extends Command
|
|||||||
'plugins' => $this->projectDirectory . Kernel::PLUGIN_DIRECTORY . '/*/Resources/translations',
|
'plugins' => $this->projectDirectory . Kernel::PLUGIN_DIRECTORY . '/*/Resources/translations',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
if ($input->getOption('delete-resname')) {
|
||||||
|
$files = glob($bases['core'] . '/*.xlf');
|
||||||
|
foreach ($files as $file) {
|
||||||
|
$this->removeKey($file, $input->getOption('delete-resname'));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ($input->getOption('resname')) {
|
if ($input->getOption('resname')) {
|
||||||
foreach ($bases as $id => $directory) {
|
foreach ($bases as $id => $directory) {
|
||||||
$files = glob($directory . '/*.xlf');
|
$files = glob($directory . '/*.xlf');
|
||||||
@@ -132,4 +140,29 @@ class TranslationCommand extends Command
|
|||||||
|
|
||||||
file_put_contents($file, $xmlDocument->saveXML());
|
file_put_contents($file, $xmlDocument->saveXML());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function removeKey(string $file, string $key): void
|
||||||
|
{
|
||||||
|
$xml = simplexml_load_file($file);
|
||||||
|
|
||||||
|
/** @var \SimpleXMLElement $unit */
|
||||||
|
foreach ($xml->file->body->{'trans-unit'} as $unit) {
|
||||||
|
if (!isset($unit['resname'])) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((string) $unit['resname'] === $key) {
|
||||||
|
$dom = dom_import_simplexml($unit);
|
||||||
|
$dom->parentNode->removeChild($dom);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$xmlDocument = new \DOMDocument('1.0');
|
||||||
|
$xmlDocument->preserveWhiteSpace = false;
|
||||||
|
$xmlDocument->formatOutput = true;
|
||||||
|
$xmlDocument->loadXML($xml->asXML());
|
||||||
|
|
||||||
|
file_put_contents($file, $xmlDocument->saveXML());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ class ActivitySubscriber extends AbstractActionsSubscriber
|
|||||||
$parameters['customers[]'] = $activity->getProject()->getCustomer()->getId();
|
$parameters['customers[]'] = $activity->getProject()->getCustomer()->getId();
|
||||||
$parameters['projects[]'] = $activity->getProject()->getId();
|
$parameters['projects[]'] = $activity->getProject()->getId();
|
||||||
}
|
}
|
||||||
$event->addActionToSubmenu('filter', 'timesheet', ['title' => 'timesheet', 'translation_domain' => 'actions', 'url' => $this->path('admin_timesheet', $parameters)]);
|
$event->addActionToSubmenu('filter', 'timesheet', ['title' => 'timesheet.filter', 'translation_domain' => 'actions', 'url' => $this->path('admin_timesheet', $parameters)]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($event->hasSubmenu('filter')) {
|
if ($event->hasSubmenu('filter')) {
|
||||||
|
|||||||
@@ -49,15 +49,15 @@ class CustomerSubscriber extends AbstractActionsSubscriber
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($this->isGranted('view_project') || $this->isGranted('view_teamlead_project') || $this->isGranted('view_team_project')) {
|
if ($this->isGranted('view_project') || $this->isGranted('view_teamlead_project') || $this->isGranted('view_team_project')) {
|
||||||
$event->addActionToSubmenu('filter', 'project', ['title' => 'project', 'translation_domain' => 'actions', 'url' => $this->path('admin_project', ['customers[]' => $customer->getId()])]);
|
$event->addActionToSubmenu('filter', 'project', ['title' => 'project.filter', 'translation_domain' => 'actions', 'url' => $this->path('admin_project', ['customers[]' => $customer->getId()])]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($this->isGranted('view_activity')) {
|
if ($this->isGranted('view_activity')) {
|
||||||
$event->addActionToSubmenu('filter', 'activity', ['title' => 'activity', 'translation_domain' => 'actions', 'url' => $this->path('admin_activity', ['customers[]' => $customer->getId()])]);
|
$event->addActionToSubmenu('filter', 'activity', ['title' => 'activity.filter', 'translation_domain' => 'actions', 'url' => $this->path('admin_activity', ['customers[]' => $customer->getId()])]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($this->isGranted('view_other_timesheet')) {
|
if ($this->isGranted('view_other_timesheet')) {
|
||||||
$event->addActionToSubmenu('filter', 'timesheet', ['title' => 'timesheet', 'translation_domain' => 'actions', 'url' => $this->path('admin_timesheet', ['customers[]' => $customer->getId()])]);
|
$event->addActionToSubmenu('filter', 'timesheet', ['title' => 'timesheet.filter', 'translation_domain' => 'actions', 'url' => $this->path('admin_timesheet', ['customers[]' => $customer->getId()])]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($event->hasSubmenu('filter')) {
|
if ($event->hasSubmenu('filter')) {
|
||||||
|
|||||||
@@ -49,11 +49,11 @@ class ProjectSubscriber extends AbstractActionsSubscriber
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($this->isGranted('view_activity')) {
|
if ($this->isGranted('view_activity')) {
|
||||||
$event->addActionToSubmenu('filter', 'activity', ['title' => 'activity', 'translation_domain' => 'actions', 'url' => $this->path('admin_activity', ['customers[]' => $project->getCustomer()->getId(), 'projects[]' => $project->getId()])]);
|
$event->addActionToSubmenu('filter', 'activity', ['title' => 'activity.filter', 'translation_domain' => 'actions', 'url' => $this->path('admin_activity', ['customers[]' => $project->getCustomer()->getId(), 'projects[]' => $project->getId()])]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($this->isGranted('view_other_timesheet')) {
|
if ($this->isGranted('view_other_timesheet')) {
|
||||||
$event->addActionToSubmenu('filter', 'timesheet', ['title' => 'timesheet', 'translation_domain' => 'actions', 'url' => $this->path('admin_timesheet', ['customers[]' => $project->getCustomer()->getId(), 'projects[]' => $project->getId()])]);
|
$event->addActionToSubmenu('filter', 'timesheet', ['title' => 'timesheet.filter', 'translation_domain' => 'actions', 'url' => $this->path('admin_timesheet', ['customers[]' => $project->getCustomer()->getId(), 'projects[]' => $project->getId()])]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($event->hasSubmenu('filter')) {
|
if ($event->hasSubmenu('filter')) {
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ class TagSubscriber extends AbstractActionsSubscriber
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($this->isGranted('view_other_timesheet')) {
|
if ($this->isGranted('view_other_timesheet')) {
|
||||||
$event->addActionToSubmenu('filter', 'timesheet', ['title' => 'timesheet', 'translation_domain' => 'actions', 'url' => $this->path('admin_timesheet', ['tags' => $name])]);
|
$event->addActionToSubmenu('filter', 'timesheet', ['title' => 'timesheet.filter', 'translation_domain' => 'actions', 'url' => $this->path('admin_timesheet', ['tags' => $name])]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($event->isIndexView() && $this->isGranted('delete_tag')) {
|
if ($event->isIndexView() && $this->isGranted('delete_tag')) {
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ class UserSubscriber extends AbstractActionsSubscriber
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($viewOther && $user->isEnabled()) {
|
if ($viewOther && $user->isEnabled()) {
|
||||||
$event->addAction('timesheet', ['url' => $this->path('admin_timesheet', ['users[]' => $user->getId()])]);
|
$event->addAction('timesheet', ['title' => 'timesheet.filter', 'translation_domain' => 'actions', 'url' => $this->path('admin_timesheet', ['users[]' => $user->getId()])]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($event->isIndexView() && $this->isGranted('delete', $user)) {
|
if ($event->isIndexView() && $this->isGranted('delete', $user)) {
|
||||||
|
|||||||
@@ -97,26 +97,26 @@ final class MenuSubscriber implements EventSubscriberInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($auth->isGranted('view_customer') || $auth->isGranted('view_teamlead_customer') || $auth->isGranted('view_team_customer')) {
|
if ($auth->isGranted('view_customer') || $auth->isGranted('view_teamlead_customer') || $auth->isGranted('view_team_customer')) {
|
||||||
$customers = new MenuItemModel('customer_admin', 'menu.admin_customer', 'admin_customer', [], $icons->icon('customer'));
|
$customers = new MenuItemModel('customer_admin', 'customers', 'admin_customer', [], $icons->icon('customer'));
|
||||||
$customers->setChildRoutes(['admin_customer_create', 'admin_customer_permissions', 'customer_details', 'admin_customer_edit', 'admin_customer_delete']);
|
$customers->setChildRoutes(['admin_customer_create', 'admin_customer_permissions', 'customer_details', 'admin_customer_edit', 'admin_customer_delete']);
|
||||||
$menu->addChild($customers);
|
$menu->addChild($customers);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($auth->isGranted('view_project') || $auth->isGranted('view_teamlead_project') || $auth->isGranted('view_team_project')) {
|
if ($auth->isGranted('view_project') || $auth->isGranted('view_teamlead_project') || $auth->isGranted('view_team_project')) {
|
||||||
$projects = new MenuItemModel('project_admin', 'menu.admin_project', 'admin_project', [], $icons->icon('project'));
|
$projects = new MenuItemModel('project_admin', 'projects', 'admin_project', [], $icons->icon('project'));
|
||||||
$projects->setChildRoutes(['admin_project_permissions', 'admin_project_create', 'project_details', 'admin_project_edit', 'admin_project_delete']);
|
$projects->setChildRoutes(['admin_project_permissions', 'admin_project_create', 'project_details', 'admin_project_edit', 'admin_project_delete']);
|
||||||
$menu->addChild($projects);
|
$menu->addChild($projects);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($auth->isGranted('view_activity') || $auth->isGranted('view_teamlead_activity') || $auth->isGranted('view_team_activity')) {
|
if ($auth->isGranted('view_activity') || $auth->isGranted('view_teamlead_activity') || $auth->isGranted('view_team_activity')) {
|
||||||
$activities = new MenuItemModel('activity_admin', 'menu.admin_activity', 'admin_activity', [], $icons->icon('activity'));
|
$activities = new MenuItemModel('activity_admin', 'activities', 'admin_activity', [], $icons->icon('activity'));
|
||||||
$activities->setChildRoutes(['admin_activity_create', 'activity_details', 'admin_activity_edit', 'admin_activity_delete']);
|
$activities->setChildRoutes(['admin_activity_create', 'activity_details', 'admin_activity_edit', 'admin_activity_delete']);
|
||||||
$menu->addChild($activities);
|
$menu->addChild($activities);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($auth->isGranted('view_tag')) {
|
if ($auth->isGranted('view_tag')) {
|
||||||
$menu->addChild(
|
$menu->addChild(
|
||||||
new MenuItemModel('tags', 'menu.tags', 'tags', [], 'fas fa-tags')
|
new MenuItemModel('tags', 'tags', 'tags', [], 'fas fa-tags')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -124,7 +124,7 @@ final class MenuSubscriber implements EventSubscriberInterface
|
|||||||
$menu = $event->getSystemMenu();
|
$menu = $event->getSystemMenu();
|
||||||
|
|
||||||
if ($auth->isGranted('view_user')) {
|
if ($auth->isGranted('view_user')) {
|
||||||
$users = new MenuItemModel('user_admin', 'menu.admin_user', 'admin_user', [], $icons->icon('users'));
|
$users = new MenuItemModel('user_admin', 'users', 'admin_user', [], $icons->icon('users'));
|
||||||
$users->setChildRoutes(['admin_user_create', 'admin_user_delete', 'user_profile', 'user_profile_edit', 'user_profile_password', 'user_profile_api_token', 'user_profile_roles', 'user_profile_teams', 'user_profile_preferences']);
|
$users->setChildRoutes(['admin_user_create', 'admin_user_delete', 'user_profile', 'user_profile_edit', 'user_profile_password', 'user_profile_api_token', 'user_profile_roles', 'user_profile_teams', 'user_profile_preferences']);
|
||||||
$menu->addChild($users);
|
$menu->addChild($users);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -33,10 +33,10 @@ class InitialViewType extends AbstractType
|
|||||||
'my_profile' => 'profile.title',
|
'my_profile' => 'profile.title',
|
||||||
'admin_timesheet' => 'menu.admin_timesheet',
|
'admin_timesheet' => 'menu.admin_timesheet',
|
||||||
'invoice' => 'menu.invoice',
|
'invoice' => 'menu.invoice',
|
||||||
'admin_user' => 'menu.admin_user',
|
'admin_user' => 'users',
|
||||||
'admin_customer' => 'menu.admin_customer',
|
'admin_customer' => 'customers',
|
||||||
'admin_project' => 'menu.admin_project',
|
'admin_project' => 'projects',
|
||||||
'admin_activity' => 'menu.admin_activity',
|
'admin_activity' => 'activities',
|
||||||
];
|
];
|
||||||
|
|
||||||
private const ROUTE_PERMISSION = [
|
private const ROUTE_PERMISSION = [
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
||||||
{% import "activity/actions.html.twig" as actions %}
|
{% import "activity/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_activity.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'activities'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.activity(activity, 'delete') }}{% endblock %}
|
{% block page_actions %}{{ actions.activity(activity, 'delete') }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
{% import "macros/widgets.html.twig" as widgets %}
|
{% import "macros/widgets.html.twig" as widgets %}
|
||||||
{% import "activity/actions.html.twig" as actions %}
|
{% import "activity/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_activity.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'activities'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.activity(activity, 'activity_details') }}{% endblock %}
|
{% block page_actions %}{{ actions.activity(activity, 'activity_details') }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
||||||
{% import "activity/actions.html.twig" as actions %}
|
{% import "activity/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_activity.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'activities'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.activity(activity, 'edit') }}{% endblock %}
|
{% block page_actions %}{{ actions.activity(activity, 'edit') }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
{% set tableName = 'activity_admin' %}
|
{% set tableName = 'activity_admin' %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_activity.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'activities'|trans }}{% endblock %}
|
||||||
{% block page_search %}{{ search.searchModal(toolbarForm) }}{% endblock %}
|
{% block page_search %}{{ search.searchModal(toolbarForm) }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.activities('index', query) }}{% endblock %}
|
{% block page_actions %}{{ actions.activities('index', query) }}{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
||||||
{% import "activity/actions.html.twig" as actions %}
|
{% import "activity/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_activity.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'activities'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.activity(activity, 'permissions') }}{% endblock %}
|
{% block page_actions %}{{ actions.activity(activity, 'permissions') }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
||||||
{% import "activity/actions.html.twig" as actions %}
|
{% import "activity/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_activity.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'activities'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.activity(activity, 'rates') }}{% endblock %}
|
{% block page_actions %}{{ actions.activity(activity, 'rates') }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
||||||
{% import "customer/actions.html.twig" as actions %}
|
{% import "customer/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_customer.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'customers'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.customer(customer, 'delete') }}{% endblock %}
|
{% block page_actions %}{{ actions.customer(customer, 'delete') }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
{% import "customer/actions.html.twig" as actions %}
|
{% import "customer/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_actions %}{{ actions.customer(customer, 'customer_details') }}{% endblock %}
|
{% block page_actions %}{{ actions.customer(customer, 'customer_details') }}{% endblock %}
|
||||||
{% block page_title %}{{ 'admin_customer.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'customers'|trans }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
{% set can_edit = is_granted('edit', customer) %}
|
{% set can_edit = is_granted('edit', customer) %}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
||||||
{% import "customer/actions.html.twig" as actions %}
|
{% import "customer/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_customer.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'customers'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.customer(customer, 'edit') }}{% endblock %}
|
{% block page_actions %}{{ actions.customer(customer, 'edit') }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{% embed '@AdminLTE/Widgets/box-widget.html.twig' with {'customer': customer, 'projects': projects, 'page': page} %}
|
{% embed '@AdminLTE/Widgets/box-widget.html.twig' with {'customer': customer, 'projects': projects, 'page': page} %}
|
||||||
{% import "project/actions.html.twig" as actions %}
|
{% import "project/actions.html.twig" as actions %}
|
||||||
{% import "macros/widgets.html.twig" as widgets %}
|
{% import "macros/widgets.html.twig" as widgets %}
|
||||||
{% block box_title %}{{ 'menu.admin_project'|trans }}{% endblock %}
|
{% block box_title %}{{ 'projects'|trans }}{% endblock %}
|
||||||
{% block box_attributes %}
|
{% block box_attributes %}
|
||||||
id="project_list_box" data-href="{{ path('customer_projects', {'id': customer.id}) }}" data-reload="kimai.projectUpdate kimai.projectDelete"
|
id="project_list_box" data-href="{{ path('customer_projects', {'id': customer.id}) }}" data-reload="kimai.projectUpdate kimai.projectDelete"
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
@@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
{% set tableName = 'customer_admin' %}
|
{% set tableName = 'customer_admin' %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_customer.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'customers'|trans }}{% endblock %}
|
||||||
{% block page_search %}{{ search.searchModal(toolbarForm) }}{% endblock %}
|
{% block page_search %}{{ search.searchModal(toolbarForm) }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.customers('index', query) }}{% endblock %}
|
{% block page_actions %}{{ actions.customers('index', query) }}{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
||||||
{% import "customer/actions.html.twig" as actions %}
|
{% import "customer/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_customer.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'customers'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.customer(customer, 'permissions') }}{% endblock %}
|
{% block page_actions %}{{ actions.customer(customer, 'permissions') }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
||||||
{% import "customer/actions.html.twig" as actions %}
|
{% import "customer/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_customer.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'customers'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.customer(customer, 'rates') }}{% endblock %}
|
{% block page_actions %}{{ actions.customer(customer, 'rates') }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
||||||
{% import "project/actions.html.twig" as actions %}
|
{% import "project/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_project.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'projects'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.project(project, 'delete') }}{% endblock %}
|
{% block page_actions %}{{ actions.project(project, 'delete') }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
{% import "macros/widgets.html.twig" as widgets %}
|
{% import "macros/widgets.html.twig" as widgets %}
|
||||||
{% import "project/actions.html.twig" as actions %}
|
{% import "project/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_project.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'projects'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.project(project, 'project_details') }}{% endblock %}
|
{% block page_actions %}{{ actions.project(project, 'project_details') }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
||||||
{% import "project/actions.html.twig" as actions %}
|
{% import "project/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_project.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'projects'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.project(project, 'edit') }}{% endblock %}
|
{% block page_actions %}{{ actions.project(project, 'edit') }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{% embed '@AdminLTE/Widgets/box-widget.html.twig' with {'project': project, 'activities': activities, 'page': page} %}
|
{% embed '@AdminLTE/Widgets/box-widget.html.twig' with {'project': project, 'activities': activities, 'page': page} %}
|
||||||
{% import "activity/actions.html.twig" as actions %}
|
{% import "activity/actions.html.twig" as actions %}
|
||||||
{% import "macros/widgets.html.twig" as widgets %}
|
{% import "macros/widgets.html.twig" as widgets %}
|
||||||
{% block box_title %}{{ 'menu.admin_activity'|trans }}{% endblock %}
|
{% block box_title %}{{ 'activities'|trans }}{% endblock %}
|
||||||
{% block box_attributes %}
|
{% block box_attributes %}
|
||||||
id="activity_list_box" data-href="{{ path('project_activities', {'id': project.id}) }}" data-reload="kimai.activityUpdate kimai.activityDelete"
|
id="activity_list_box" data-href="{{ path('project_activities', {'id': project.id}) }}" data-reload="kimai.activityUpdate kimai.activityDelete"
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
|
|
||||||
{% set tableName = 'project_admin' %}
|
{% set tableName = 'project_admin' %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_project.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'projects'|trans }}{% endblock %}
|
||||||
{% block page_search %}{{ search.searchModal(toolbarForm) }}{% endblock %}
|
{% block page_search %}{{ search.searchModal(toolbarForm) }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.projects('index', query) }}{% endblock %}
|
{% block page_actions %}{{ actions.projects('index', query) }}{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
||||||
{% import "project/actions.html.twig" as actions %}
|
{% import "project/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_project.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'projects'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.project(project, 'permissions') }}{% endblock %}
|
{% block page_actions %}{{ actions.project(project, 'permissions') }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
||||||
{% import "project/actions.html.twig" as actions %}
|
{% import "project/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_project.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'projects'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.project(project, 'rates') }}{% endblock %}
|
{% block page_actions %}{{ actions.project(project, 'rates') }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
{% import "macros/widgets.html.twig" as widgets %}
|
{% import "macros/widgets.html.twig" as widgets %}
|
||||||
{% import "tags/actions.html.twig" as actions %}
|
{% import "tags/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'menu.tags'|trans }}{% endblock %}
|
{% block page_title %}{{ 'tags'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.tag(tag, 'edit') }}{% endblock %}
|
{% block page_actions %}{{ actions.tag(tag, 'edit') }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
{% import "macros/search.html.twig" as search %}
|
{% import "macros/search.html.twig" as search %}
|
||||||
{% import "tags/actions.html.twig" as actions %}
|
{% import "tags/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'menu.tags'|trans }}{% endblock %}
|
{% block page_title %}{{ 'tags'|trans }}{% endblock %}
|
||||||
{% block page_search %}{{ search.searchModal(toolbarForm) }}{% endblock %}
|
{% block page_search %}{{ search.searchModal(toolbarForm) }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.tags('index', query) }}{% endblock %}
|
{% block page_actions %}{{ actions.tags('index', query) }}{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{% extends 'timesheet/layout-edit.html.twig' %}
|
{% extends 'timesheet/layout-edit.html.twig' %}
|
||||||
{% import "timesheet-team/actions.html.twig" as actions %}
|
{% import "timesheet-team/actions.html.twig" as actions %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_timesheet.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'menu.admin_timesheet'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.timesheet_team(timesheet, 'edit') }}{% endblock %}
|
{% block page_actions %}{{ actions.timesheet_team(timesheet, 'edit') }}{% endblock %}
|
||||||
|
|
||||||
{% set route_back = 'admin_timesheet' %}
|
{% set route_back = 'admin_timesheet' %}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
{% set canSeeUsername = true %}
|
{% set canSeeUsername = true %}
|
||||||
{% set allowMarkdown = false %}
|
{% set allowMarkdown = false %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_timesheet.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'menu.admin_timesheet'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.timesheets_team('index', query) }}{% endblock %}
|
{% block page_actions %}{{ actions.timesheets_team('index', query) }}{% endblock %}
|
||||||
|
|
||||||
{% block row_action %}
|
{% block row_action %}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{% extends 'timesheet/layout-multi-update.html.twig' %}
|
{% extends 'timesheet/layout-multi-update.html.twig' %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_timesheet.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'menu.admin_timesheet'|trans }}{% endblock %}
|
||||||
{% block page_actions %}
|
{% block page_actions %}
|
||||||
{% import "timesheet-team/actions.html.twig" as actions %}
|
{% import "timesheet-team/actions.html.twig" as actions %}
|
||||||
{{ actions.timesheets_team_multi_update('multi-update') }}
|
{{ actions.timesheets_team_multi_update('multi-update') }}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{% extends 'base.html.twig' %}
|
{% extends 'base.html.twig' %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_user.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'users'|trans }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
{% set formEditTemplate = app.request.xmlHttpRequest ? 'default/_form_modal.html.twig' : 'default/_form.html.twig' %}
|
{% set formEditTemplate = app.request.xmlHttpRequest ? 'default/_form_modal.html.twig' : 'default/_form.html.twig' %}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
||||||
{% import "macros/widgets.html.twig" as widgets %}
|
{% import "macros/widgets.html.twig" as widgets %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_user.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'users'|trans }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
{% set tableName = 'user_admin' %}
|
{% set tableName = 'user_admin' %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_user.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'users'|trans }}{% endblock %}
|
||||||
{% block page_search %}{{ search.searchModal(toolbarForm) }}{% endblock %}
|
{% block page_search %}{{ search.searchModal(toolbarForm) }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.users('index', query) }}{% endblock %}
|
{% block page_actions %}{{ actions.users('index', query) }}{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
{% import "user/actions.html.twig" as actions %}
|
{% import "user/actions.html.twig" as actions %}
|
||||||
{% import "macros/widgets.html.twig" as widgets %}
|
{% import "macros/widgets.html.twig" as widgets %}
|
||||||
|
|
||||||
{% block page_title %}{{ 'admin_user.title'|trans }}{% endblock %}
|
{% block page_title %}{{ 'users'|trans }}{% endblock %}
|
||||||
{% block page_actions %}{{ actions.user(user, tab) }}{% endblock %}
|
{% block page_actions %}{{ actions.user(user, tab) }}{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>تفضيلات</target>
|
<target>تفضيلات</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>الجداول الزمنية</target>
|
<target>الجداول الزمنية</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>فلتر العملاء</target>
|
<target>فلتر العملاء</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>فلتر المشاريع</target>
|
<target>فلتر المشاريع</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>فلتر الأنشطة</target>
|
<target>فلتر الأنشطة</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Nastavení</target>
|
<target>Nastavení</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Pracovní výkaz</target>
|
<target>Pracovní výkaz</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Filtr zákazníků</target>
|
<target>Filtr zákazníků</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Filtr projektů</target>
|
<target>Filtr projektů</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Filtr aktivit</target>
|
<target>Filtr aktivit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Indstillinger</target>
|
<target>Indstillinger</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Timeseddel</target>
|
<target>Timeseddel</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Filtrer kunder</target>
|
<target>Filtrer kunder</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Filtrer projekter</target>
|
<target>Filtrer projekter</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Filtrer aktiviteter</target>
|
<target>Filtrer aktiviteter</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Einstellungen</target>
|
<target>Einstellungen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Stundenzettel</target>
|
<target>Stundenzettel filtern</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Kunden filtern</target>
|
<target>Kunden filtern</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Projekte filtern</target>
|
<target>Projekte filtern</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Tätigkeiten filtern</target>
|
<target>Tätigkeiten filtern</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Προτιμήσεις</target>
|
<target>Προτιμήσεις</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Δελτία ωρών</target>
|
<target>Δελτία ωρών</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Φίλτρο πελατών</target>
|
<target>Φίλτρο πελατών</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Φίλτρο έργων</target>
|
<target>Φίλτρο έργων</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Φίλτρο δραστηριοτήτων</target>
|
<target>Φίλτρο δραστηριοτήτων</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Preferences</target>
|
<target>Preferences</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Timesheets</target>
|
<target>Filter timesheets</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Filter customers</target>
|
<target>Filter customers</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Filter projects</target>
|
<target>Filter projects</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Filter activities</target>
|
<target>Filter activities</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Agordoj</target>
|
<target>Agordoj</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Temposlipoj</target>
|
<target>Temposlipoj</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Filtri klientojn</target>
|
<target>Filtri klientojn</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Filtri projektojn</target>
|
<target>Filtri projektojn</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Filtri aktivaĵojn</target>
|
<target>Filtri aktivaĵojn</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Preferencias</target>
|
<target>Preferencias</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Partes de horas</target>
|
<target>Partes de horas</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Filtrar clientes</target>
|
<target>Filtrar clientes</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Filtrar proyectos</target>
|
<target>Filtrar proyectos</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Filtrar actividades</target>
|
<target>Filtrar actividades</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Dohiketak</target>
|
<target>Dohiketak</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Ordu taula</target>
|
<target>Ordu taula</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Bezeroak aukeratu</target>
|
<target>Bezeroak aukeratu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Proiektuak aukeratu</target>
|
<target>Proiektuak aukeratu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Jarduerak aukeratu</target>
|
<target>Jarduerak aukeratu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target state="translated">Asetukset</target>
|
<target state="translated">Asetukset</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target state="translated">Työajanseuranta</target>
|
<target state="translated">Työajanseuranta</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target state="translated">Suodata asiakkaita</target>
|
<target state="translated">Suodata asiakkaita</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target state="translated">Suodata projekteja</target>
|
<target state="translated">Suodata projekteja</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target state="translated">Suodata työtehtäviä</target>
|
<target state="translated">Suodata työtehtäviä</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -26,20 +26,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Préférences</target>
|
<target>Préférences</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Feuille d'heures</target>
|
<target>Feuille d'heures</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Filtrer les clients</target>
|
<target>Filtrer les clients</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Filtrer les projets</target>
|
<target>Filtrer les projets</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Filtrer les activités</target>
|
<target>Filtrer les activités</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>העדפות</target>
|
<target>העדפות</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>גיליונות שעות</target>
|
<target>גיליונות שעות</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>סנן לקוחות</target>
|
<target>סנן לקוחות</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>סנן פרויקטים</target>
|
<target>סנן פרויקטים</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>סנן פעילויות</target>
|
<target>סנן פעילויות</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Postavke</target>
|
<target>Postavke</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Vremenske tablice</target>
|
<target>Vremenske tablice</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Filtriraj kupce</target>
|
<target>Filtriraj kupce</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Filtriraj projekte</target>
|
<target>Filtriraj projekte</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Filtriraj aktivnosti</target>
|
<target>Filtriraj aktivnosti</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Beállítások</target>
|
<target>Beállítások</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Rögzített órák</target>
|
<target>Rögzített órák</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Ügyfelek szűrése</target>
|
<target>Ügyfelek szűrése</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Projektek szűrése</target>
|
<target>Projektek szűrése</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Tevékenységek szűrése</target>
|
<target>Tevékenységek szűrése</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Preferenze</target>
|
<target>Preferenze</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Schede attività</target>
|
<target>Schede attività</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Filtro clienti</target>
|
<target>Filtro clienti</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Filtro progetti</target>
|
<target>Filtro progetti</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Filtro attività</target>
|
<target>Filtro attività</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target state="translated">설정 </target>
|
<target state="translated">설정 </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target state="translated">타임시트</target>
|
<target state="translated">타임시트</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target state="translated">필터 고객들 </target>
|
<target state="translated">필터 고객들 </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target state="translated">필터 프로젝트들 </target>
|
<target state="translated">필터 프로젝트들 </target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target state="translated">필터 활동들</target>
|
<target state="translated">필터 활동들</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Voorkeuren</target>
|
<target>Voorkeuren</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Tijden</target>
|
<target>Tijden</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Filter op klant</target>
|
<target>Filter op klant</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Filter op project</target>
|
<target>Filter op project</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Filter op activiteiten</target>
|
<target>Filter op activiteiten</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Ustawienia</target>
|
<target>Ustawienia</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Ewidencje</target>
|
<target>Ewidencje</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Filt klienta</target>
|
<target>Filt klienta</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Filtr projektu</target>
|
<target>Filtr projektu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Filt aktywności</target>
|
<target>Filt aktywności</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Preferências</target>
|
<target>Preferências</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Quadro de horários</target>
|
<target>Quadro de horários</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Filtrar clientes</target>
|
<target>Filtrar clientes</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Filtrar projetos</target>
|
<target>Filtrar projetos</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Filtrar atividades</target>
|
<target>Filtrar atividades</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Preferências</target>
|
<target>Preferências</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Horários</target>
|
<target>Horários</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Filtrar clientes</target>
|
<target>Filtrar clientes</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Filtrar projetos</target>
|
<target>Filtrar projetos</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Filtrar atividades</target>
|
<target>Filtrar atividades</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Preferințe</target>
|
<target>Preferințe</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Fișe de pontaj</target>
|
<target>Fișe de pontaj</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Filtrează clienții</target>
|
<target>Filtrează clienții</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Filtrează proiectele</target>
|
<target>Filtrează proiectele</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Filtrează activitățile</target>
|
<target>Filtrează activitățile</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -30,20 +30,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Настройки</target>
|
<target>Настройки</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Расписания</target>
|
<target>Расписания</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Фильтр клиентов</target>
|
<target>Фильтр клиентов</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Фильтр проектов</target>
|
<target>Фильтр проектов</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Фильтр действий</target>
|
<target>Фильтр действий</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Nastavenia</target>
|
<target>Nastavenia</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Pracovné výkazy</target>
|
<target>Pracovné výkazy</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Zákazník</target>
|
<target>Zákazník</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Projekt</target>
|
<target>Projekt</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Činnosť</target>
|
<target>Činnosť</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target state="translated">Inställningar</target>
|
<target state="translated">Inställningar</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target state="translated">Tidrapport</target>
|
<target state="translated">Tidrapport</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target state="translated">Filtrera kunder</target>
|
<target state="translated">Filtrera kunder</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target state="translated">Filtrera projekt</target>
|
<target state="translated">Filtrera projekt</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target state="translated">Filtrera aktiviter</target>
|
<target state="translated">Filtrera aktiviter</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target state="translated">Ayarlar</target>
|
<target state="translated">Ayarlar</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target state="translated">Çizelgeler</target>
|
<target state="translated">Çizelgeler</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target state="translated">Müşterileri filtrele</target>
|
<target state="translated">Müşterileri filtrele</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target state="translated">Projeleri filtrele</target>
|
<target state="translated">Projeleri filtrele</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target state="translated">Etkinlikleri filtrele</target>
|
<target state="translated">Etkinlikleri filtrele</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>Sở thích</target>
|
<target>Sở thích</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>Bảng chấm công</target>
|
<target>Bảng chấm công</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>Lọc khách hàng</target>
|
<target>Lọc khách hàng</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>Lọc dự án</target>
|
<target>Lọc dự án</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>Lọc hoạt động</target>
|
<target>Lọc hoạt động</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -34,20 +34,20 @@
|
|||||||
<source>settings</source>
|
<source>settings</source>
|
||||||
<target>参数选择</target>
|
<target>参数选择</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="xovWV.Y" resname="timesheet.filter">
|
||||||
<source>timesheet</source>
|
<source>Filter timesheets</source>
|
||||||
<target>时间表</target>
|
<target>时间表</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="tsRYY4d" resname="customer">
|
<trans-unit id="U7.woIo" resname="customer.filter">
|
||||||
<source>customer</source>
|
<source>Filter customers</source>
|
||||||
<target>筛选用户</target>
|
<target>筛选用户</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="JEIQ5IQ" resname="project">
|
<trans-unit id="j9gsVnq" resname="project.filter">
|
||||||
<source>project</source>
|
<source>Filter projects</source>
|
||||||
<target>筛选项目</target>
|
<target>筛选项目</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="BlGGO.X" resname="activity">
|
<trans-unit id="xl_5l3y" resname="activity.filter">
|
||||||
<source>activity</source>
|
<source>Filter activities</source>
|
||||||
<target>筛选活动</target>
|
<target>筛选活动</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b1pgNOd" resname="copy">
|
<trans-unit id="b1pgNOd" resname="copy">
|
||||||
|
|||||||
@@ -87,20 +87,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>الجداول الزمنية</target>
|
<target>الجداول الزمنية</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>زبون</target>
|
<target>زبون</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>مشاريع</target>
|
<target>مشاريع</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>أنشطة</target>
|
<target>أنشطة</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>المستخدم</target>
|
<target>المستخدم</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
<!--
|
||||||
@@ -331,31 +331,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>الجداول الزمنية</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>مشاريع</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>أنشطة</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>زبون</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>حساب</target>
|
<target>حساب</target>
|
||||||
@@ -407,10 +385,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: User
|
Admin: User
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>المستخدم</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>اسم</target>
|
<target>اسم</target>
|
||||||
@@ -734,8 +708,8 @@
|
|||||||
<source>menu.doctor</source>
|
<source>menu.doctor</source>
|
||||||
<target>طبيب</target>
|
<target>طبيب</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>الوسوم</target>
|
<target>الوسوم</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="IXtkHRw" resname="menu.system_configuration">
|
<trans-unit id="IXtkHRw" resname="menu.system_configuration">
|
||||||
|
|||||||
@@ -114,20 +114,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Pracovní výkaz</target>
|
<target>Pracovní výkaz</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Zákazníci</target>
|
<target>Zákazníci</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Projekty</target>
|
<target>Projekty</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Aktivity</target>
|
<target>Aktivity</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Uživatelé</target>
|
<target>Uživatelé</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -142,8 +142,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Nastavení</target>
|
<target>Nastavení</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Štítky</target>
|
<target>Štítky</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
<!--
|
||||||
@@ -442,31 +442,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Pracovní výkaz</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Projekt</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Aktivity</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Zákazník</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Účet</target>
|
<target>Účet</target>
|
||||||
@@ -518,10 +496,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Users
|
Admin: Users
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Uživatel</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Jméno</target>
|
<target>Jméno</target>
|
||||||
|
|||||||
@@ -130,20 +130,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Timesedler</target>
|
<target>Timesedler</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Kunder</target>
|
<target>Kunder</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Projekter</target>
|
<target>Projekter</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Aktiviteter</target>
|
<target>Aktiviteter</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Brugere</target>
|
<target>Brugere</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -158,8 +158,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Indstillinger</target>
|
<target>Indstillinger</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Etiketter</target>
|
<target>Etiketter</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -486,31 +486,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Timesedler</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Projekter</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Aktiviteter</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Kunde</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Bruger</target>
|
<target>Bruger</target>
|
||||||
@@ -566,10 +544,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Users
|
Admin: Users
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Bruger</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Navn</target>
|
<target>Navn</target>
|
||||||
|
|||||||
@@ -199,20 +199,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Zeiterfassung</target>
|
<target>Zeiterfassung</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Kunden</target>
|
<target>Kunden</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Projekte</target>
|
<target>Projekte</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Tätigkeiten</target>
|
<target>Tätigkeiten</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Benutzer</target>
|
<target>Benutzer</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -227,8 +227,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Einstellungen</target>
|
<target>Einstellungen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Schlagworte</target>
|
<target>Schlagworte</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -631,17 +631,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Zeiterfassung</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Projects
|
Admin: Projects
|
||||||
-->
|
-->
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Projekte</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="yLOqEX_" resname="label.project_start">
|
<trans-unit id="yLOqEX_" resname="label.project_start">
|
||||||
<source>label.project_start</source>
|
<source>label.project_start</source>
|
||||||
<target>Projekt Start</target>
|
<target>Projekt Start</target>
|
||||||
@@ -650,20 +642,9 @@
|
|||||||
<source>label.project_end</source>
|
<source>label.project_end</source>
|
||||||
<target>Projekt Ende</target>
|
<target>Projekt Ende</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Tätigkeiten</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Kunden</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Kundennummer</target>
|
<target>Kundennummer</target>
|
||||||
@@ -723,10 +704,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: User
|
Admin: User
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Benutzer</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Name</target>
|
<target>Name</target>
|
||||||
|
|||||||
@@ -465,10 +465,6 @@
|
|||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Name</target>
|
<target>Name</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Benutzer</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="otd2FZd" resname="label.currency">
|
<trans-unit id="otd2FZd" resname="label.currency">
|
||||||
<source>label.currency</source>
|
<source>label.currency</source>
|
||||||
<target>Währung</target>
|
<target>Währung</target>
|
||||||
@@ -513,14 +509,6 @@
|
|||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Kundennummer</target>
|
<target>Kundennummer</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Kunden</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Tätigkeiten</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="4kQGReV" resname="label.project_end">
|
<trans-unit id="4kQGReV" resname="label.project_end">
|
||||||
<source>label.project_end</source>
|
<source>label.project_end</source>
|
||||||
<target>Projekt Ende</target>
|
<target>Projekt Ende</target>
|
||||||
@@ -529,14 +517,6 @@
|
|||||||
<source>label.project_start</source>
|
<source>label.project_start</source>
|
||||||
<target>Projekt Start</target>
|
<target>Projekt Start</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Projekte</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Zeiterfassung</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="HWiuMV6" resname="calendar.title">
|
<trans-unit id="HWiuMV6" resname="calendar.title">
|
||||||
<source>calendar.title</source>
|
<source>calendar.title</source>
|
||||||
<target>Kalender</target>
|
<target>Kalender</target>
|
||||||
@@ -881,8 +861,8 @@
|
|||||||
<source>menu.doctor</source>
|
<source>menu.doctor</source>
|
||||||
<target>Doktor</target>
|
<target>Doktor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Schlagworte</target>
|
<target>Schlagworte</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="IXtkHRw" resname="menu.system_configuration">
|
<trans-unit id="IXtkHRw" resname="menu.system_configuration">
|
||||||
@@ -897,20 +877,20 @@
|
|||||||
<source>menu.admin_team</source>
|
<source>menu.admin_team</source>
|
||||||
<target>Teams</target>
|
<target>Teams</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Benutzer</target>
|
<target>Benutzer</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Tätigkeiten</target>
|
<target>Tätigkeiten</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Projekte</target>
|
<target>Projekte</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Kunden</target>
|
<target>Kunden</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="WGIhZv1" resname="menu.admin_timesheet">
|
<trans-unit id="WGIhZv1" resname="menu.admin_timesheet">
|
||||||
|
|||||||
@@ -183,20 +183,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Δελτία ωρών</target>
|
<target>Δελτία ωρών</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Πελάτες</target>
|
<target>Πελάτες</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Έργα</target>
|
<target>Έργα</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Δραστηριότητες</target>
|
<target>Δραστηριότητες</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Χρήστες</target>
|
<target>Χρήστες</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -211,8 +211,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Ρυθμίσεις</target>
|
<target>Ρυθμίσεις</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Ετικέτες</target>
|
<target>Ετικέτες</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -599,17 +599,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Δελτία ωρών</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Projects
|
Admin: Projects
|
||||||
-->
|
-->
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Έργα</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="yLOqEX_" resname="label.project_start">
|
<trans-unit id="yLOqEX_" resname="label.project_start">
|
||||||
<source>label.project_start</source>
|
<source>label.project_start</source>
|
||||||
<target>Εκκίνηση έργου</target>
|
<target>Εκκίνηση έργου</target>
|
||||||
@@ -618,20 +610,9 @@
|
|||||||
<source>label.project_end</source>
|
<source>label.project_end</source>
|
||||||
<target>Τερματισμός έργου</target>
|
<target>Τερματισμός έργου</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Δραστηριότητες</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Πελάτης</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Λογαριασμός</target>
|
<target>Λογαριασμός</target>
|
||||||
@@ -691,10 +672,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Users
|
Admin: Users
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Χρήστης</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Όνομα</target>
|
<target>Όνομα</target>
|
||||||
|
|||||||
@@ -199,20 +199,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Timesheets</target>
|
<target>Timesheets</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Customers</target>
|
<target>Customers</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Projects</target>
|
<target>Projects</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Activities</target>
|
<target>Activities</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Users</target>
|
<target>Users</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -227,8 +227,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Settings</target>
|
<target>Settings</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Tags</target>
|
<target>Tags</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -631,17 +631,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Timesheets</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Projects
|
Admin: Projects
|
||||||
-->
|
-->
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Projects</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="yLOqEX_" resname="label.project_start">
|
<trans-unit id="yLOqEX_" resname="label.project_start">
|
||||||
<source>label.project_start</source>
|
<source>label.project_start</source>
|
||||||
<target>Project start</target>
|
<target>Project start</target>
|
||||||
@@ -650,20 +642,9 @@
|
|||||||
<source>label.project_end</source>
|
<source>label.project_end</source>
|
||||||
<target>Project end</target>
|
<target>Project end</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Activities</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Customer</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Account</target>
|
<target>Account</target>
|
||||||
@@ -723,10 +704,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Users
|
Admin: Users
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>User</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Name</target>
|
<target>Name</target>
|
||||||
|
|||||||
@@ -146,20 +146,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Temposlipoj</target>
|
<target>Temposlipoj</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Klientoj</target>
|
<target>Klientoj</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Projektoj</target>
|
<target>Projektoj</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Aktivaĵoj</target>
|
<target>Aktivaĵoj</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Uzantoj</target>
|
<target>Uzantoj</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -174,8 +174,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Agordoj</target>
|
<target>Agordoj</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Etikedoj</target>
|
<target>Etikedoj</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -518,17 +518,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Temposlipoj</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Projects
|
Admin: Projects
|
||||||
-->
|
-->
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Projektoj</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="yLOqEX_" resname="label.project_start">
|
<trans-unit id="yLOqEX_" resname="label.project_start">
|
||||||
<source>label.project_start</source>
|
<source>label.project_start</source>
|
||||||
<target>Komenco de projekto</target>
|
<target>Komenco de projekto</target>
|
||||||
@@ -537,20 +529,9 @@
|
|||||||
<source>label.project_end</source>
|
<source>label.project_end</source>
|
||||||
<target>Fino de projekto</target>
|
<target>Fino de projekto</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Aktivaĵoj</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Kliento</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Konto</target>
|
<target>Konto</target>
|
||||||
@@ -606,10 +587,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Users
|
Admin: Users
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Uzanto</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Nomo</target>
|
<target>Nomo</target>
|
||||||
|
|||||||
@@ -123,20 +123,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Partes de horas</target>
|
<target>Partes de horas</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Clientes</target>
|
<target>Clientes</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Proyectos</target>
|
<target>Proyectos</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Actividades</target>
|
<target>Actividades</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Usuarios</target>
|
<target>Usuarios</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -151,8 +151,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Configuración</target>
|
<target>Configuración</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Etiquetas</target>
|
<target>Etiquetas</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -471,31 +471,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Partes de horas</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Proyectos</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Actividades</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Cliente</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Cuenta</target>
|
<target>Cuenta</target>
|
||||||
@@ -547,10 +525,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: User
|
Admin: User
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Usuario</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Nombre</target>
|
<target>Nombre</target>
|
||||||
|
|||||||
@@ -131,20 +131,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Ordu taula</target>
|
<target>Ordu taula</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Bezeroak</target>
|
<target>Bezeroak</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Proiektuak</target>
|
<target>Proiektuak</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Jarduerak</target>
|
<target>Jarduerak</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Erabiltzaileak</target>
|
<target>Erabiltzaileak</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -159,8 +159,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Konfigurazioa</target>
|
<target>Konfigurazioa</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Etiketak</target>
|
<target>Etiketak</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -483,17 +483,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Ordu taula</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Projects
|
Admin: Projects
|
||||||
-->
|
-->
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Proiektuak</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="yLOqEX_" resname="label.project_start">
|
<trans-unit id="yLOqEX_" resname="label.project_start">
|
||||||
<source>label.project_start</source>
|
<source>label.project_start</source>
|
||||||
<target>Proiektu hasiera</target>
|
<target>Proiektu hasiera</target>
|
||||||
@@ -502,20 +494,9 @@
|
|||||||
<source>label.project_end</source>
|
<source>label.project_end</source>
|
||||||
<target>Proiektu bukaera</target>
|
<target>Proiektu bukaera</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Jarduerak</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Bezeroak</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Kontua</target>
|
<target>Kontua</target>
|
||||||
@@ -571,10 +552,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: User
|
Admin: User
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Erabiltzailea</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Izena</target>
|
<target>Izena</target>
|
||||||
|
|||||||
@@ -355,8 +355,8 @@
|
|||||||
<source>menu.doctor</source>
|
<source>menu.doctor</source>
|
||||||
<target>دکتر</target>
|
<target>دکتر</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>برچسب ها</target>
|
<target>برچسب ها</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="IXtkHRw" resname="menu.system_configuration">
|
<trans-unit id="IXtkHRw" resname="menu.system_configuration">
|
||||||
@@ -371,20 +371,20 @@
|
|||||||
<source>menu.admin_team</source>
|
<source>menu.admin_team</source>
|
||||||
<target>تیم ها</target>
|
<target>تیم ها</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>کاربران</target>
|
<target>کاربران</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>فعالیت ها</target>
|
<target>فعالیت ها</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>پروژه ها</target>
|
<target>پروژه ها</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>مشتریان</target>
|
<target>مشتریان</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="WGIhZv1" resname="menu.admin_timesheet">
|
<trans-unit id="WGIhZv1" resname="menu.admin_timesheet">
|
||||||
|
|||||||
@@ -150,20 +150,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target state="translated">Työajanseurannat</target>
|
<target state="translated">Työajanseurannat</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target state="translated">Asiakkaat</target>
|
<target state="translated">Asiakkaat</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target state="translated">Projektit</target>
|
<target state="translated">Projektit</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target state="translated">Työtehtävät</target>
|
<target state="translated">Työtehtävät</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target state="translated">Käyttäjät</target>
|
<target state="translated">Käyttäjät</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -178,8 +178,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target state="translated">Asetukset</target>
|
<target state="translated">Asetukset</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target state="translated">Tunnisteet</target>
|
<target state="translated">Tunnisteet</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -554,17 +554,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target state="translated">Tuntilomakkeet</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Projects
|
Admin: Projects
|
||||||
-->
|
-->
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target state="translated">Projektit</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="yLOqEX_" resname="label.project_start">
|
<trans-unit id="yLOqEX_" resname="label.project_start">
|
||||||
<source>label.project_start</source>
|
<source>label.project_start</source>
|
||||||
<target state="translated">Projektin aloitus</target>
|
<target state="translated">Projektin aloitus</target>
|
||||||
@@ -573,20 +565,9 @@
|
|||||||
<source>label.project_end</source>
|
<source>label.project_end</source>
|
||||||
<target state="translated">Projektin lopetus</target>
|
<target state="translated">Projektin lopetus</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target state="translated">Työtehtävät</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target state="translated">Asiakas</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target state="translated">Tili</target>
|
<target state="translated">Tili</target>
|
||||||
@@ -642,10 +623,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Users
|
Admin: Users
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target state="translated">Käyttäjä</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target state="translated">Nimi</target>
|
<target state="translated">Nimi</target>
|
||||||
|
|||||||
@@ -61,16 +61,16 @@
|
|||||||
<source>menu.export</source>
|
<source>menu.export</source>
|
||||||
<target>Útflyt</target>
|
<target>Útflyt</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Kundar</target>
|
<target>Kundar</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Verkætlanir</target>
|
<target>Verkætlanir</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Brúkarar</target>
|
<target>Brúkarar</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -199,14 +199,6 @@
|
|||||||
<source>label.avatar</source>
|
<source>label.avatar</source>
|
||||||
<target>Vanga mynd</target>
|
<target>Vanga mynd</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Kundi</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Arbeiðsseðlar</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="HWiuMV6" resname="calendar.title">
|
<trans-unit id="HWiuMV6" resname="calendar.title">
|
||||||
<source>calendar.title</source>
|
<source>calendar.title</source>
|
||||||
<target>Kalendari</target>
|
<target>Kalendari</target>
|
||||||
@@ -243,10 +235,6 @@
|
|||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Navn</target>
|
<target>Navn</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Brúkari</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="otd2FZd" resname="label.currency">
|
<trans-unit id="otd2FZd" resname="label.currency">
|
||||||
<source>label.currency</source>
|
<source>label.currency</source>
|
||||||
<target>Gjaldoyra</target>
|
<target>Gjaldoyra</target>
|
||||||
@@ -279,10 +267,6 @@
|
|||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Konta</target>
|
<target>Konta</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Verkætlanir</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="Q0Zip02" resname="agendaDay">
|
<trans-unit id="Q0Zip02" resname="agendaDay">
|
||||||
<source>agendaDay</source>
|
<source>agendaDay</source>
|
||||||
<target>Dagur</target>
|
<target>Dagur</target>
|
||||||
@@ -567,8 +551,8 @@
|
|||||||
<source>entryState.stopped</source>
|
<source>entryState.stopped</source>
|
||||||
<target>Steðga</target>
|
<target>Steðga</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Frámerki</target>
|
<target>Frámerki</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="mflwMcX" resname="rates.title">
|
<trans-unit id="mflwMcX" resname="rates.title">
|
||||||
@@ -727,12 +711,8 @@
|
|||||||
<source>stats.activityTotal</source>
|
<source>stats.activityTotal</source>
|
||||||
<target>Virksemi</target>
|
<target>Virksemi</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>admin_activity.title</source>
|
<source>activities</source>
|
||||||
<target>Virksemi</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
|
||||||
<source>menu.admin_activity</source>
|
|
||||||
<target>Virksemi</target>
|
<target>Virksemi</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="ypVQO7o" resname="menu.reporting">
|
<trans-unit id="ypVQO7o" resname="menu.reporting">
|
||||||
|
|||||||
@@ -111,20 +111,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Fiches de temps</target>
|
<target>Fiches de temps</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Clients</target>
|
<target>Clients</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Projets</target>
|
<target>Projets</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Activités</target>
|
<target>Activités</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Utilisateurs</target>
|
<target>Utilisateurs</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="hOZxcaK" resname="menu.plugin">
|
<trans-unit id="hOZxcaK" resname="menu.plugin">
|
||||||
@@ -135,8 +135,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Paramètres</target>
|
<target>Paramètres</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Mots-clés</target>
|
<target>Mots-clés</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
<!--
|
||||||
@@ -419,31 +419,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Fiches de temps</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Projets</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Activités</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Clients</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Compte</target>
|
<target>Compte</target>
|
||||||
@@ -495,10 +473,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: User
|
Admin: User
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Utilisateur</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Nom</target>
|
<target>Nom</target>
|
||||||
|
|||||||
@@ -137,20 +137,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>גיליון שעות</target>
|
<target>גיליון שעות</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>לקוחות</target>
|
<target>לקוחות</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>מיזמים</target>
|
<target>מיזמים</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>פעילויות</target>
|
<target>פעילויות</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>משתמשים</target>
|
<target>משתמשים</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -165,8 +165,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>הגדרות</target>
|
<target>הגדרות</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>תגיות</target>
|
<target>תגיות</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -501,14 +501,6 @@
|
|||||||
<source>calendar.title</source>
|
<source>calendar.title</source>
|
||||||
<target>לוח שנה</target>
|
<target>לוח שנה</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>גיליון שעות</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>מיזמים</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="yLOqEX_" resname="label.project_start">
|
<trans-unit id="yLOqEX_" resname="label.project_start">
|
||||||
<source>label.project_start</source>
|
<source>label.project_start</source>
|
||||||
<target>תחילת מיזם</target>
|
<target>תחילת מיזם</target>
|
||||||
@@ -517,14 +509,6 @@
|
|||||||
<source>label.project_end</source>
|
<source>label.project_end</source>
|
||||||
<target>סוף מיזם</target>
|
<target>סוף מיזם</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>פעילויות</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>לקוח</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>חשבון</target>
|
<target>חשבון</target>
|
||||||
@@ -577,10 +561,6 @@
|
|||||||
<source>label.currency</source>
|
<source>label.currency</source>
|
||||||
<target>מטבע</target>
|
<target>מטבע</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>משתמש</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>שם</target>
|
<target>שם</target>
|
||||||
|
|||||||
@@ -191,20 +191,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Vremenske tablice</target>
|
<target>Vremenske tablice</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Kupci</target>
|
<target>Kupci</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Projekti</target>
|
<target>Projekti</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Aktivnosti</target>
|
<target>Aktivnosti</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Korisnici</target>
|
<target>Korisnici</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -219,8 +219,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Postavke</target>
|
<target>Postavke</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Oznake</target>
|
<target>Oznake</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -611,17 +611,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Vremenske tablice</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Projekti</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="yLOqEX_" resname="label.project_start">
|
<trans-unit id="yLOqEX_" resname="label.project_start">
|
||||||
<source>label.project_start</source>
|
<source>label.project_start</source>
|
||||||
<target>Početak projekta</target>
|
<target>Početak projekta</target>
|
||||||
@@ -630,20 +619,9 @@
|
|||||||
<source>label.project_end</source>
|
<source>label.project_end</source>
|
||||||
<target>Kraj projekta</target>
|
<target>Kraj projekta</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Aktivnosti</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Kupac</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Račun</target>
|
<target>Račun</target>
|
||||||
@@ -703,10 +681,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Users
|
Admin: Users
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Korisnik</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Ime</target>
|
<target>Ime</target>
|
||||||
|
|||||||
@@ -114,20 +114,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Rögzített órák</target>
|
<target>Rögzített órák</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Ügyfelek</target>
|
<target>Ügyfelek</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Projektek</target>
|
<target>Projektek</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Tevékenységek</target>
|
<target>Tevékenységek</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Felhasználók</target>
|
<target>Felhasználók</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="hOZxcaK" resname="menu.plugin">
|
<trans-unit id="hOZxcaK" resname="menu.plugin">
|
||||||
@@ -138,8 +138,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Rendszer beállítások</target>
|
<target>Rendszer beállítások</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Címkék</target>
|
<target>Címkék</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
<!--
|
||||||
@@ -422,31 +422,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Rögzített órák</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Projektek</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Tevékenységek</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Ügyfél</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Adószám</target>
|
<target>Adószám</target>
|
||||||
@@ -498,10 +476,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: User
|
Admin: User
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Felhasználó</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Név</target>
|
<target>Név</target>
|
||||||
|
|||||||
@@ -150,20 +150,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Registrazioni</target>
|
<target>Registrazioni</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Clienti</target>
|
<target>Clienti</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Progetti</target>
|
<target>Progetti</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Attività</target>
|
<target>Attività</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Utenti</target>
|
<target>Utenti</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -178,8 +178,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Impostazioni</target>
|
<target>Impostazioni</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Etichette</target>
|
<target>Etichette</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -554,17 +554,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Registrazioni</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Projects
|
Admin: Projects
|
||||||
-->
|
-->
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Progetti</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="yLOqEX_" resname="label.project_start">
|
<trans-unit id="yLOqEX_" resname="label.project_start">
|
||||||
<source>label.project_start</source>
|
<source>label.project_start</source>
|
||||||
<target>Inizio progetto</target>
|
<target>Inizio progetto</target>
|
||||||
@@ -573,20 +565,9 @@
|
|||||||
<source>label.project_end</source>
|
<source>label.project_end</source>
|
||||||
<target>Fine progetto</target>
|
<target>Fine progetto</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Attività</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Cliente</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Account</target>
|
<target>Account</target>
|
||||||
@@ -642,10 +623,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: User
|
Admin: User
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Utente</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Nome</target>
|
<target>Nome</target>
|
||||||
|
|||||||
@@ -114,20 +114,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>タイムシート</target>
|
<target>タイムシート</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>得意先</target>
|
<target>得意先</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>プロジェクト</target>
|
<target>プロジェクト</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>アクティビティ</target>
|
<target>アクティビティ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>ユーザー</target>
|
<target>ユーザー</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="hOZxcaK" resname="menu.plugin">
|
<trans-unit id="hOZxcaK" resname="menu.plugin">
|
||||||
@@ -138,8 +138,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>設定</target>
|
<target>設定</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>タグ</target>
|
<target>タグ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
<!--
|
||||||
@@ -422,31 +422,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>タイムシート</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>プロジェクト</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>アクティビティ</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>得意先</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>口座</target>
|
<target>口座</target>
|
||||||
@@ -498,10 +476,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: User
|
Admin: User
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>ユーザー</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>名前</target>
|
<target>名前</target>
|
||||||
|
|||||||
@@ -114,20 +114,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target state="translated">시간기록표</target>
|
<target state="translated">시간기록표</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target state="translated">고객</target>
|
<target state="translated">고객</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target state="translated">프로젝트</target>
|
<target state="translated">프로젝트</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target state="translated">업무</target>
|
<target state="translated">업무</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target state="translated">사용자</target>
|
<target state="translated">사용자</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -142,8 +142,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target state="translated">설정</target>
|
<target state="translated">설정</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target state="translated">태그</target>
|
<target state="translated">태그</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
<!--
|
||||||
@@ -438,31 +438,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target state="translated">시간 기록표</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target state="translated">프로젝트</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target state="translated">활동</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target state="translated">고객</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target state="translated">고객번호</target>
|
<target state="translated">고객번호</target>
|
||||||
@@ -514,10 +492,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: User
|
Admin: User
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target state="translated">사용자 </target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target state="translated">이름</target>
|
<target state="translated">이름</target>
|
||||||
|
|||||||
@@ -317,10 +317,6 @@
|
|||||||
<source>calendar.title</source>
|
<source>calendar.title</source>
|
||||||
<target>Kalender</target>
|
<target>Kalender</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Prosjekter</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="yLOqEX_" resname="label.project_start">
|
<trans-unit id="yLOqEX_" resname="label.project_start">
|
||||||
<source>label.project_start</source>
|
<source>label.project_start</source>
|
||||||
<target>Prosjektstart</target>
|
<target>Prosjektstart</target>
|
||||||
@@ -329,20 +325,9 @@
|
|||||||
<source>label.project_end</source>
|
<source>label.project_end</source>
|
||||||
<target>Prosjektslutt</target>
|
<target>Prosjektslutt</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Aktiviteter</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Kunde</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Konto</target>
|
<target>Konto</target>
|
||||||
@@ -390,10 +375,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Users
|
Admin: Users
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Bruker</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Navn</target>
|
<target>Navn</target>
|
||||||
@@ -563,20 +544,20 @@
|
|||||||
<source>menu.reporting</source>
|
<source>menu.reporting</source>
|
||||||
<target>Rapportering</target>
|
<target>Rapportering</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Kunder</target>
|
<target>Kunder</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Prosjekter</target>
|
<target>Prosjekter</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Aktiviteter</target>
|
<target>Aktiviteter</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Brukere</target>
|
<target>Brukere</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -795,10 +776,6 @@
|
|||||||
<source>label.timesheet.export_decimal</source>
|
<source>label.timesheet.export_decimal</source>
|
||||||
<target>Bruk desimalvarighet i eksport</target>
|
<target>Bruk desimalvarighet i eksport</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Tidstabeller</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="Dgmh_mv" resname="label.vat_id">
|
<trans-unit id="Dgmh_mv" resname="label.vat_id">
|
||||||
<source>label.vat_id</source>
|
<source>label.vat_id</source>
|
||||||
<target>Moms-ID</target>
|
<target>Moms-ID</target>
|
||||||
@@ -1119,8 +1096,8 @@
|
|||||||
<source>menu.doctor</source>
|
<source>menu.doctor</source>
|
||||||
<target>Doktor</target>
|
<target>Doktor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Etiketter</target>
|
<target>Etiketter</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Vz3Igj3" resname="error.no_entries_found">
|
<trans-unit id="Vz3Igj3" resname="error.no_entries_found">
|
||||||
|
|||||||
@@ -123,20 +123,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Prestaties</target>
|
<target>Prestaties</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Klanten</target>
|
<target>Klanten</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Projecten</target>
|
<target>Projecten</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Activiteiten</target>
|
<target>Activiteiten</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Gebruikers</target>
|
<target>Gebruikers</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -151,8 +151,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Instellingen</target>
|
<target>Instellingen</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Labels</target>
|
<target>Labels</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -471,31 +471,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Prestaties</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Projecten</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Activiteiten</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Klanten</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Rekening</target>
|
<target>Rekening</target>
|
||||||
@@ -547,10 +525,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: User
|
Admin: User
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Gebruikers</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Naam</target>
|
<target>Naam</target>
|
||||||
|
|||||||
@@ -134,20 +134,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Ewidencje</target>
|
<target>Ewidencje</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Klienci</target>
|
<target>Klienci</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Projekty</target>
|
<target>Projekty</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Aktywności</target>
|
<target>Aktywności</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Użytkownicy</target>
|
<target>Użytkownicy</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -162,8 +162,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Ustawienia</target>
|
<target>Ustawienia</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Tagi</target>
|
<target>Tagi</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -498,17 +498,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Ewidencje</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Projekty</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="yLOqEX_" resname="label.project_start">
|
<trans-unit id="yLOqEX_" resname="label.project_start">
|
||||||
<source>label.project_start</source>
|
<source>label.project_start</source>
|
||||||
<target>Start projektu</target>
|
<target>Start projektu</target>
|
||||||
@@ -517,20 +506,9 @@
|
|||||||
<source>label.project_end</source>
|
<source>label.project_end</source>
|
||||||
<target>Koniec projektu</target>
|
<target>Koniec projektu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Czynności</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Klient</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Konto</target>
|
<target>Konto</target>
|
||||||
@@ -582,10 +560,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Users
|
Admin: Users
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Użytkownik</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Nazwa</target>
|
<target>Nazwa</target>
|
||||||
|
|||||||
@@ -111,20 +111,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Quadro de horários</target>
|
<target>Quadro de horários</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Clientes</target>
|
<target>Clientes</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Projetos</target>
|
<target>Projetos</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Atividades</target>
|
<target>Atividades</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Utilizadores</target>
|
<target>Utilizadores</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="hOZxcaK" resname="menu.plugin">
|
<trans-unit id="hOZxcaK" resname="menu.plugin">
|
||||||
@@ -135,8 +135,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Configurações</target>
|
<target>Configurações</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Etiquetas</target>
|
<target>Etiquetas</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
<!--
|
||||||
@@ -419,31 +419,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Quadro de horários</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Projetos</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Atividades</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Cliente</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Conta</target>
|
<target>Conta</target>
|
||||||
@@ -495,10 +473,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Users
|
Admin: Users
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Utilizador</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Nome</target>
|
<target>Nome</target>
|
||||||
|
|||||||
@@ -114,20 +114,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Quadro de Horários</target>
|
<target>Quadro de Horários</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Clientes</target>
|
<target>Clientes</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Projetos</target>
|
<target>Projetos</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Atividades</target>
|
<target>Atividades</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Usuários</target>
|
<target>Usuários</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="hOZxcaK" resname="menu.plugin">
|
<trans-unit id="hOZxcaK" resname="menu.plugin">
|
||||||
@@ -138,8 +138,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Configurações</target>
|
<target>Configurações</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Tags</target>
|
<target>Tags</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
<!--
|
||||||
@@ -422,31 +422,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Quadro de Horários</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Projetos</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Atividades</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Cliente</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Conta</target>
|
<target>Conta</target>
|
||||||
@@ -498,10 +476,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: User
|
Admin: User
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Usuário</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Nome</target>
|
<target>Nome</target>
|
||||||
|
|||||||
@@ -137,20 +137,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Pontaje</target>
|
<target>Pontaje</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Clienți</target>
|
<target>Clienți</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Proiecte</target>
|
<target>Proiecte</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Activități</target>
|
<target>Activități</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Utilizatori</target>
|
<target>Utilizatori</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -165,8 +165,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Setări</target>
|
<target>Setări</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Etichete</target>
|
<target>Etichete</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -477,14 +477,6 @@
|
|||||||
<source>calendar.title</source>
|
<source>calendar.title</source>
|
||||||
<target>Calendarul</target>
|
<target>Calendarul</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Pontaje</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Proiecte</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="yLOqEX_" resname="label.project_start">
|
<trans-unit id="yLOqEX_" resname="label.project_start">
|
||||||
<source>label.project_start</source>
|
<source>label.project_start</source>
|
||||||
<target>Pornire proiect</target>
|
<target>Pornire proiect</target>
|
||||||
@@ -493,14 +485,6 @@
|
|||||||
<source>label.project_end</source>
|
<source>label.project_end</source>
|
||||||
<target>Terminare proiect</target>
|
<target>Terminare proiect</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Activități</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Client</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Cont</target>
|
<target>Cont</target>
|
||||||
@@ -553,10 +537,6 @@
|
|||||||
<source>label.currency</source>
|
<source>label.currency</source>
|
||||||
<target>Moneda</target>
|
<target>Moneda</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Utilizator</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Nume</target>
|
<target>Nume</target>
|
||||||
|
|||||||
@@ -87,20 +87,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Время работы сотрудников</target>
|
<target>Время работы сотрудников</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Клиенты</target>
|
<target>Клиенты</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Проекты</target>
|
<target>Проекты</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Активность</target>
|
<target>Активность</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Пользователи</target>
|
<target>Пользователи</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
<!--
|
||||||
@@ -327,31 +327,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Учет рабочего времени сотрудников</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Проекты</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Деятельность</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Клиенты</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Клиентский номер</target>
|
<target>Клиентский номер</target>
|
||||||
@@ -403,10 +381,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: User
|
Admin: User
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Пользователь</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Имя</target>
|
<target>Имя</target>
|
||||||
@@ -830,8 +804,8 @@
|
|||||||
<source>error.no_comments_found</source>
|
<source>error.no_comments_found</source>
|
||||||
<target>Комментариев еще нет.</target>
|
<target>Комментариев еще нет.</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Теги</target>
|
<target>Теги</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="IXtkHRw" resname="menu.system_configuration">
|
<trans-unit id="IXtkHRw" resname="menu.system_configuration">
|
||||||
|
|||||||
@@ -139,20 +139,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Pracovné výkazy</target>
|
<target>Pracovné výkazy</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Zákazníci</target>
|
<target>Zákazníci</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Projekty</target>
|
<target>Projekty</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Činnosti</target>
|
<target>Činnosti</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Používateľ</target>
|
<target>Používateľ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -167,8 +167,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Nastavenia</target>
|
<target>Nastavenia</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Značky</target>
|
<target>Značky</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -503,17 +503,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Pracovné výkazy</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Projects
|
Admin: Projects
|
||||||
-->
|
-->
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Projekty</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="jiYDwqZ" resname="admin_project.delete_confirm">
|
<trans-unit id="jiYDwqZ" resname="admin_project.delete_confirm">
|
||||||
<source>admin_project.delete_confirm</source>
|
<source>admin_project.delete_confirm</source>
|
||||||
<target>
|
<target>
|
||||||
@@ -531,20 +523,9 @@
|
|||||||
<source>label.project_end</source>
|
<source>label.project_end</source>
|
||||||
<target>Koniec projektu</target>
|
<target>Koniec projektu</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Činnosti</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Zákazník</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Účet</target>
|
<target>Účet</target>
|
||||||
@@ -609,10 +590,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: User
|
Admin: User
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Používateľ</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Meno</target>
|
<target>Meno</target>
|
||||||
|
|||||||
@@ -114,20 +114,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target state="translated">Tidsschema</target>
|
<target state="translated">Tidsschema</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target state="translated">Kund</target>
|
<target state="translated">Kund</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target state="translated">Projekt</target>
|
<target state="translated">Projekt</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target state="translated">Aktiviteter</target>
|
<target state="translated">Aktiviteter</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target state="translated">Användare</target>
|
<target state="translated">Användare</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="hOZxcaK" resname="menu.plugin">
|
<trans-unit id="hOZxcaK" resname="menu.plugin">
|
||||||
@@ -422,31 +422,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target state="translated">Tidrapporter</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target state="translated">Projekt</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target state="translated">Aktiviteter</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target state="translated">Kunder</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target state="translated">Konto</target>
|
<target state="translated">Konto</target>
|
||||||
@@ -498,10 +476,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: User
|
Admin: User
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target state="translated">Användare</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target state="translated">Namn</target>
|
<target state="translated">Namn</target>
|
||||||
@@ -887,8 +861,8 @@
|
|||||||
<source>menu.doctor</source>
|
<source>menu.doctor</source>
|
||||||
<target>Doktor</target>
|
<target>Doktor</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Taggar</target>
|
<target>Taggar</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
|
|||||||
@@ -126,20 +126,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target state="translated">Çizelgeler</target>
|
<target state="translated">Çizelgeler</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target state="translated">Müşteriler</target>
|
<target state="translated">Müşteriler</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target state="translated">Projeler</target>
|
<target state="translated">Projeler</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target state="translated">Etkinlikler</target>
|
<target state="translated">Etkinlikler</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target state="translated">Kullanıcılar</target>
|
<target state="translated">Kullanıcılar</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -154,8 +154,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target state="translated">Ayarlar</target>
|
<target state="translated">Ayarlar</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target state="translated">Etiketler</target>
|
<target state="translated">Etiketler</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -474,31 +474,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target state="translated">Çizelgeler</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target state="translated">Projeler</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target state="translated">Etkinlikler</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target state="translated">Müşteri</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target state="translated">Hesap</target>
|
<target state="translated">Hesap</target>
|
||||||
@@ -550,10 +528,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Users
|
Admin: Users
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target state="translated">Kullanıcı</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target state="translated">Ad</target>
|
<target state="translated">Ad</target>
|
||||||
|
|||||||
@@ -146,20 +146,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>Bảng chấm công</target>
|
<target>Bảng chấm công</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>Khách hàng</target>
|
<target>Khách hàng</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>Dự án</target>
|
<target>Dự án</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>Hoạt động</target>
|
<target>Hoạt động</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>Người dùng</target>
|
<target>Người dùng</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -174,8 +174,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>Cài đặt</target>
|
<target>Cài đặt</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>Thẻ</target>
|
<target>Thẻ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -534,17 +534,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>Bảng chấm công</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>Dự án</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="yLOqEX_" resname="label.project_start">
|
<trans-unit id="yLOqEX_" resname="label.project_start">
|
||||||
<source>label.project_start</source>
|
<source>label.project_start</source>
|
||||||
<target>Dự án bắt đầu</target>
|
<target>Dự án bắt đầu</target>
|
||||||
@@ -553,20 +542,9 @@
|
|||||||
<source>label.project_end</source>
|
<source>label.project_end</source>
|
||||||
<target>Kết thúc dự án</target>
|
<target>Kết thúc dự án</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>Hoạt động</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>Khách hàng</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>Tài khoản</target>
|
<target>Tài khoản</target>
|
||||||
@@ -622,10 +600,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Users
|
Admin: Users
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>Người dùng</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>Tên</target>
|
<target>Tên</target>
|
||||||
|
|||||||
@@ -130,20 +130,20 @@
|
|||||||
<source>menu.admin_timesheet</source>
|
<source>menu.admin_timesheet</source>
|
||||||
<target>时间表</target>
|
<target>时间表</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Y_jAD36" resname="menu.admin_customer">
|
<trans-unit id="IeshU90" resname="customers">
|
||||||
<source>menu.admin_customer</source>
|
<source>customers</source>
|
||||||
<target>客户</target>
|
<target>客户</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oDLp9t3" resname="menu.admin_project">
|
<trans-unit id="JXfA9Ve" resname="projects">
|
||||||
<source>menu.admin_project</source>
|
<source>projects</source>
|
||||||
<target>项目</target>
|
<target>项目</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="wriHFwl" resname="menu.admin_activity">
|
<trans-unit id="YkyVVAY" resname="activities">
|
||||||
<source>menu.admin_activity</source>
|
<source>activities</source>
|
||||||
<target>活动</target>
|
<target>活动</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="oZo1BnZ" resname="menu.admin_user">
|
<trans-unit id="fftM9nd" resname="users">
|
||||||
<source>menu.admin_user</source>
|
<source>users</source>
|
||||||
<target>用户</target>
|
<target>用户</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
<trans-unit id="pA.bYIk" resname="menu.admin_team">
|
||||||
@@ -158,8 +158,8 @@
|
|||||||
<source>menu.system_configuration</source>
|
<source>menu.system_configuration</source>
|
||||||
<target>设置</target>
|
<target>设置</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="yo4f8Kh" resname="menu.tags">
|
<trans-unit id="l4wviUE" resname="tags">
|
||||||
<source>menu.tags</source>
|
<source>tags</source>
|
||||||
<target>标签</target>
|
<target>标签</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
<trans-unit id="1kHI0gb" resname="menu.doctor">
|
||||||
@@ -486,31 +486,9 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Timesheet
|
Admin: Timesheet
|
||||||
-->
|
-->
|
||||||
<trans-unit id="bSDjzZL" resname="admin_timesheet.title">
|
|
||||||
<source>admin_timesheet.title</source>
|
|
||||||
<target>时间表</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Projects
|
|
||||||
-->
|
|
||||||
<trans-unit id="DFjFRGe" resname="admin_project.title">
|
|
||||||
<source>admin_project.title</source>
|
|
||||||
<target>项目</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
|
||||||
Admin: Activity
|
|
||||||
-->
|
|
||||||
<trans-unit id="auu8q0u" resname="admin_activity.title">
|
|
||||||
<source>admin_activity.title</source>
|
|
||||||
<target>活动</target>
|
|
||||||
</trans-unit>
|
|
||||||
<!--
|
<!--
|
||||||
Admin: Customer
|
Admin: Customer
|
||||||
-->
|
-->
|
||||||
<trans-unit id="2TvKX9Z" resname="admin_customer.title">
|
|
||||||
<source>admin_customer.title</source>
|
|
||||||
<target>客户</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="39AtPxQ" resname="label.number">
|
<trans-unit id="39AtPxQ" resname="label.number">
|
||||||
<source>label.number</source>
|
<source>label.number</source>
|
||||||
<target>账户</target>
|
<target>账户</target>
|
||||||
@@ -566,10 +544,6 @@
|
|||||||
<!--
|
<!--
|
||||||
Admin: Users
|
Admin: Users
|
||||||
-->
|
-->
|
||||||
<trans-unit id="t34EvnF" resname="admin_user.title">
|
|
||||||
<source>admin_user.title</source>
|
|
||||||
<target>用户</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="TRDzmCV" resname="label.alias">
|
<trans-unit id="TRDzmCV" resname="label.alias">
|
||||||
<source>label.alias</source>
|
<source>label.alias</source>
|
||||||
<target>名字</target>
|
<target>名字</target>
|
||||||
|
|||||||
@@ -6,8 +6,8 @@
|
|||||||
<source>title</source>
|
<source>title</source>
|
||||||
<target>إعدادات</target>
|
<target>إعدادات</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="ycErWZK" resname="timesheet">
|
||||||
<source>timesheet</source>
|
<source>Time tracking</source>
|
||||||
<target>الجداول الزمنية</target>
|
<target>الجداول الزمنية</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Utbj3k_" resname="invoice">
|
<trans-unit id="Utbj3k_" resname="invoice">
|
||||||
|
|||||||
@@ -6,8 +6,8 @@
|
|||||||
<source>title</source>
|
<source>title</source>
|
||||||
<target>Indstillinger</target>
|
<target>Indstillinger</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="ycErWZK" resname="timesheet">
|
||||||
<source>timesheet</source>
|
<source>Time tracking</source>
|
||||||
<target>Timeseddel</target>
|
<target>Timeseddel</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="PLggHn." resname="theme">
|
<trans-unit id="PLggHn." resname="theme">
|
||||||
|
|||||||
@@ -6,8 +6,8 @@
|
|||||||
<source>title</source>
|
<source>title</source>
|
||||||
<target>Configuración</target>
|
<target>Configuración</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="ycErWZK" resname="timesheet">
|
||||||
<source>timesheet</source>
|
<source>Time tracking</source>
|
||||||
<target>Parte de horas</target>
|
<target>Parte de horas</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="PLggHn." resname="theme">
|
<trans-unit id="PLggHn." resname="theme">
|
||||||
|
|||||||
@@ -6,8 +6,8 @@
|
|||||||
<source>title</source>
|
<source>title</source>
|
||||||
<target>Aukerak</target>
|
<target>Aukerak</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="lt2Y2LO" resname="timesheet">
|
<trans-unit id="ycErWZK" resname="timesheet">
|
||||||
<source>timesheet</source>
|
<source>Time tracking</source>
|
||||||
<target>Ordu taula</target>
|
<target>Ordu taula</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="PLggHn." resname="theme">
|
<trans-unit id="PLggHn." resname="theme">
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user