Hmm ... sorry ! I don't get it ... or I'm obviously to stupid

I have nothing like "Bug Tracker" in the menue and also nothing in ACP where I can change options ...
I have only a new entry called "Trackers" with the same entries like in quicklaunch.
Hmm ... sorry ! I don't get it ... or I'm obviously to stupid
There is currently no time frame. You can follow the GitHub repository for updates. I'll obviously keep everyone updated.durangod wrote: Sat Sep 15, 2018 3:22 pm Do you have an expectation on your roadmap when this might be available as an official extension in the extensions directory?
INSERT INTO `phpbb_trackers_project` (`project_id`, `tracker_id`, `project_name`, `project_description`, `project_note`, `project_private`, `project_active`) VALUES
(NULL, '1', 'Incidents Open Source', 'This is for incidents regarding our free open source project', 'Please keep others involved in what you are working on. ', '0', '1');
Which is why it is listed as [DEV] right now.durangod wrote: Sat Sep 15, 2018 7:21 pm well i was keeping my fingers crossed that once i got the basic data input for the project, ticket, and severity i would be able to atleast post replies so we could use this as is...
But its not to be, its a long long way from completion
I'm female as an FYI.
Code: Select all
<?php
/**
*
* Trackers extension for the phpBB Forum Software package
*
* @copyright (c) 2018, kinerity, https://www.layer-3.org
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/
/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = array();
}
// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
//
// Some characters you may want to copy&paste:
// ’ » “ ” …
//
$lang = array_merge($lang, array(
'ACTION_PERFORMED' => 'İşlemi uygulayan:',
'ALL_CLOSED_TICKETS' => 'Tüm kapalı biletler',
'ALL_OPEN_TICKETS' => 'Tüm açık biletler',
'ALL_TICKETS' => 'Tüm biletler',
'ASSIGNED_TO' => 'Atanan',
'BUTTON_NEW_TICKET' => 'Yeni Bilet',
'COMMENTS' => 'Yorumlar',
'COMPONENT' => 'İçerik',
'DESCRIPTION' => 'Tanım',
'DUPLICATES' => 'Bu biletin kopyaları',
'DUPLICATES_OTHER' => 'Şunun kopyaları #',
'FILTER_STATUS' => 'Şu an gösteriliyor',
'FILTER_TICKETS' => 'Biletleri filtrele',
'HISTORY' => 'Tarihçe',
'LAST_REP_VISIT' => 'Last reporter visit',
'LOCKED' => 'kilitli',
'LOGIN_REQUIRED' => 'Bu sayfaya erişebilmek için giriş yapmalısınız. Giriş bilgilerinizi aşağıya girin veya hesap oluşturmak için "Kayıt Ol" linkine tıklayın.',
'MY_TICKETS' => 'Bana atanan biletler',
'MY_TICKETS_GROUPS' => 'Bana ve grubuma atanan biletler',
'NO_COMMENTS' => 'Hiç yorum yapılmadı ve hiç bir tarihçe girdisi yok.',
'NO_PROJECT' => 'İstenen proje mevcut değil.',
'NO_PROJECTS' => 'Bu izleyici için proje mevcut değil.',
'NO_TICKET' => 'İstenen bilet mevcut değil.',
'NO_TICKETS' => 'Bu proje için herhangi bir bilet mevcut değil.',
'NO_TRACKER' => 'İstenen izleyici mevcut değil.',
'OF_TICKET' => 'of #',
'POSTED_BY' => 'Gönderen',
'POST_TICKET' => 'Yeni bir bilet gönder',
'POSTS_TOTAL' => array(
0 => '0 gönderi',
1 => '1 gönderi',
2 => '%d gönderi',
),
'PRIVATE' => 'özel',
'PROJECT' => 'Proje',
'PROJECT_NAME' => 'Proje adı',
'REPORTED_BY' => 'Raporlayan:',
'REPORTED_FROM' => 'Şuradan Raporlandı:',
'REPORTED_ON' => 'Rapor tarihi:',
'SEARCH_TRACKER' => 'Bu izleyiciyi ara',
'SEND_PM' => 'ÖM gönder',
'SEVERITY' => 'Önemlilik',
'STATISTICS' => 'İzleyici istatistikleri',
'STATUS' => 'Durum',
'TICKET' => 'Bilet',
'TICKET_DETAILS' => 'Bilet detayları',
'TICKET_ID' => 'Bilet IDsi',
'TICKETS_TOTAL' => array(
0 => '0 bilet',
1 => '1 bilet',
2 => '%d bilet',
),
'TITLE' => 'Başlık',
'TRACKER_EXPLAIN' => 'Lütfen aşağıdan açmak istediğiniz projeyi seçiniz.',
'TRACKER_PRIVATE' => 'Not: Bu izleyiciye gönderilen gönderimler gizli; sadece siz ve takım üyeleri belirtilen izleyiciye erişerek bilgileri görebilirler.',
'TRACKERS' => 'İzciler',
'UNASSIGNED' => '(atanmadı)',
'UNCATEGORISED' => '(kategorize edilmedi)',
'UNKNOWN' => '(bilinmiyor)',
// History language vars
'ASSIGNED_TICKET_GROUP' => 'Bilet gruba atandı',
'ASSIGNED_TICKET_USER' => 'Bilet kullanıcıya atandı',
'CHANGED_TICKET_SEVERITY' => 'Bilet önemliliğini şu seviyeden değiştirildi:',
'CHANGED_TICKET_STATUS' => 'Bilet durumu şu kiriterden değiştirildi:',
'EDITED_POST' => 'Düzenlenmiş gönderi #',
'EDITED_TICKET' => 'Düzenlenmiş bilet',
'MOVED_TICKET' => 'Bilet projeden taşındı',
'SET_UNASSIGNED' => 'Bileti "atanmadı" olarak ayarla',
// Ticket options
'ASSIGN_TICKET' => 'Bileti ata',
'EDIT_TICKET' => 'Bileti düzenle',
'MOVE_TICKET' => 'Bileti taşı',
'SET_TICKET_STATUS' => 'Bilet durumunu ayarla',
));
Unfortunately that's not how the tracker works. The dropdown is where you select what type of tickets you want to see. There are no "pinned posts" or "pinned section". If you want to mark a ticket as important, there will be an option in the ticket to set the severity.lozu wrote: Wed Nov 21, 2018 4:02 am Nicely done! I was thinking if we have 2 sections like the pinned post feature in phpbb where the pinned section would be resolved and the bottom section would be unresolved. Or have the pinned section as the important ticket and so on?
Please hold off on translations for now as the structure of the language files will most definitely be changing. I don't want you to do work for nothing.pikachuturkey wrote: Wed Nov 21, 2018 5:57 am Turkish (tr) translation for "[3.2][DEV] Ticket Tracker" version " 0.0.1-dev" (21.11.2018 github version)