Plugin Directory

Changeset 1960674


Ignore:
Timestamp:
10/22/2018 01:54:15 PM (7 years ago)
Author:
Levdbas
Message:

Release of Support Hours 1.5

Location:
support-hours
Files:
65 added
9 deleted
9 edited

Legend:

Unmodified
Added
Removed
  • support-hours/trunk/README.txt

    r1755809 r1960674  
    33Tags: time, hours, tracking, client, pre-paid
    44Requires at least: 3.0.1
    5 Tested up to: 4.9
    6 Stable tag: 1.4.2
     5Tested up to: 5.0
     6Stable tag: 1.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
    99
    10  The support-hours plugin can be used to give your customers insight on the status of their pre-paid support hours.
     10Use Support hours to give yourself and your clients insights on the status of pre-paid work.
    1111
    1212== Description ==
     
    3131= Why did you create this plugin? =
    3232
    33 To help my customers keep track of their pre-paid hours.
     33To help my customers keep track of their pre-paid hours and what/when I've been working on for the spent time. Hope it can serve you in the same way.
    3434
    3535= Do you have plans to work on new functions for the plugin? =
    3636
    37 Yes! I just added some new functionality to set different work entries. I will look into new functions on request or when I need something myself.
     37Yes! I just released a very big update and I'm planning to iterate on it! Hopefully not another year will pass.
    3838
    3939= Is this your first plugin? =
     
    4747
    4848== Changelog ==
     49
     50= 1.5 =
     51
     52New:
     53
     54* Changed the working of the amount of bought hours. Instead of one fixed number of all the hours, you can add new time over time.
     55* Complely new UI on the settings page which now features material design modals.
     56* Introducting a temporary function that changes some database related stuff to move to the new system.
     57* implemented new build tools for faster development flow.
     58
     59Changed:
     60
     61* Rework of all the functions under the hood
     62* Changed the way you input the work
     63* A lot of css and JS enhancements
     64* Updated strings and translations
     65
     66Deleted:
     67
     68* the fixed bought hours field is now gone
     69
    4970= 1.4.2 =
    5071
     
    137158= 1.0 =
    138159* First commit of my plugin
     160
     161
     162== Upgrade Notice ==
     163If you dont see your previous time entries show up after you update the plugin, please refresh the page. If the problem continues to exist, please get in contact.
  • support-hours/trunk/admin/class-support-hours-admin.php

    r1741923 r1960674  
    7575        * class.
    7676        */
    77 
    78         wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/support-hours-admin.min.css', array(), $this->version, 'all' );
    79 
     77        wp_enqueue_style( $this->plugin_name, plugins_url($this->plugin_name). '/dist/styles/support-hours-admin.css', array(), $this->version, 'all' );
    8078    }
    8179
     
    9997        */
    10098
    101         wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/support-hours-admin.js', array( 'jquery' ), $this->version, false );
     99        wp_enqueue_script( $this->plugin_name, plugins_url($this->plugin_name). '/dist/scripts/support-hours-admin.js', array( 'jquery' ), $this->version, false );
    102100
    103101    }
     
    160158
    161159    public function display_plugin_page() {
    162         include_once( 'partials/support-hours-functions.php' );
     160        include_once( 'support-hours-admin-functions.php' );
     161        echo transform_fixed_time($static_time, $workFields, $name, $options);
    163162        include_once( 'support-hours-admin-overview.php' );
    164163    }
     
    199198    }
    200199    function support_hours_dashboard_widget_function() {
    201         include_once( 'partials/support-hours-functions.php' );
     200        include_once( 'support-hours-admin-functions.php' );
    202201        include_once( 'support-hours-admin-widget.php' );
    203202    }
  • support-hours/trunk/admin/support-hours-admin-overview.php

    r1755809 r1960674  
    1414<div class="wrap">
    1515  <h2><?php echo esc_html(get_admin_page_title()); ?></h2>
     16  <p>
     17    <?php  _e( 'A complete overview of all activities.', $this->plugin_name); ?>
     18  </p>
    1619  <?php
    17   if(!empty($users) && (!empty($bought_hours) || $bought_hours == '00:00' ) && !empty($email)):
     20  if(!empty($users) && (!empty($bought_minutes) || $bought_minutes == '0' ) && !empty($email)):
    1821    $user_ID = get_current_user_id();
    1922    $i = 0;
    2023
    2124    if ( !empty($workFields[0]['date']) ) :
    22       include_once( 'partials/support-hours-admin-overview-workTable.php' );
     25      include_once( 'partials/common/worktable.php' );
    2326    endif;
    2427
    25     include_once( 'partials/support-hours-admin-widget-bottomMessage.php' );
     28    include_once( 'partials/common/bottom-message.php' );
    2629
    2730    elseif(empty($users) || empty($email)):
    2831
    29       include_once( 'partials/support-hours-admin-configure-plugin-notice.php' );
    30      
     32      include_once( 'partials/common/configure-plugin-notice.php' );
     33
    3134    endif; ?>
    3235
  • support-hours/trunk/admin/support-hours-admin-settings.php

    r1741923 r1960674  
    1212?>
    1313<?php
    14   $options = get_option($this->plugin_name);
    15   $bought_hours = $options['bought_hours'];
     14  $name = $this->plugin_name;
     15  $options = get_option($name);
    1616  $users = $options['users'];
    1717  $email = $options['email'];
     
    2121?>
    2222<div class="wrap">
     23  <h2><?php echo esc_html(get_admin_page_title()); ?></h2>
    2324  <?php  if (empty($users) || (!empty($users) && in_array($user_ID, $users))) { ?>
    24     <h2><?php echo esc_html(get_admin_page_title()); ?></h2>
    25     <form method="post" name="cleanup_options" action="options.php">
     25
     26    <form method="post" name="cleanup_options" action="options.php" class="support-hours-settings">
    2627      <?php
    27       settings_fields($this->plugin_name);
    28       do_settings_sections($this->plugin_name);
    29       include_once( 'partials/support-hours-admin-settings-textFields.php' );
    30       include_once( 'partials/support-hours-admin-settings-workTable.php' );
     28      settings_fields($name);
     29      do_settings_sections($name);
     30      include_once( 'partials/settings/general-settings-form.php' );
     31      include_once( 'partials/settings/work-table-form.php' );
    3132      ?>
    3233    </form>
    3334  <?php } else {?>
    34     <p>
    35       <?php _e( 'You do not have access to this page because you are not a Support Hours manager. Please disable and enable this plugin if you need access again.', $this->plugin_name); ?>
    36     </p>
     35    <h3>
     36      <?php _e( 'You do not have access to this page because you are not a Support Hours manager. Please disable and enable the plugin to reset user access.', $name); ?>
     37    </h3>
    3738  <?php } ?>
    3839</div>
  • support-hours/trunk/admin/support-hours-admin-widget.php

    r1755809 r1960674  
    1515$i = 0;
    1616global $pagenow;
     17if(!empty($users) && !empty($email)):
    1718
    18 if(!empty($users) && (!empty($bought_hours) || $bought_hours == '00:00' ) && !empty($email)):
    19 
    20   include_once( 'partials/support-hours-admin-widget-clock.php' );
     19  include_once( 'partials/widgets/widget-clock.php' );
    2120
    2221  if ( !empty($workFields[0]['date']) ) :
    2322
    24     include_once( 'partials/support-hours-admin-overview-workTable.php' );
     23    include_once( 'partials/common/worktable.php' );
    2524
    2625  endif;
    2726
    28   include_once( 'partials/support-hours-admin-widget-bottomMessage.php' );
     27  include_once( 'partials/common/bottom-message.php' );
    2928
    30   elseif(empty($users) || empty($email)):
     29  elseif(empty($users) || empty($email) || $bought_minutes == '0'):
    3130
    32     include_once( 'partials/support-hours-admin-configure-plugin-notice.php' );
     31    include_once( 'partials/common/configure-plugin-notice.php' );
    3332
    3433  else: ?>
    3534
    36     <h4>
    37       <?php _e( 'No support Hours bought', $this->plugin_name); ?>.
    38     </h4>
    39     <p>
    40       <?php _e( 'Contact me via', $this->plugin_name); ?> <a href="mailto:<?php echo $email;?>"><?php echo $email;?></a>
    41     </p>
     35  <div class="warning-message notice support-hours-notice inline notice-warning notice-alt">
     36    <p><?php _e( 'No Support Hours bought yet.', $this->plugin_name); ?></p>
     37  </div>
     38  <a class="button button-primary"  href="mailto:<?php echo $email; ?>'?SUBJECT=<?php  _e('Order Support Hours', $this->plugin_name); ?> - <?php echo bloginfo('name'); ?>">
     39    <?php _e('Order Support Hours', $this->plugin_name); ?>
     40  </a>
    4241
    43   <?php endif; ?>
     42<?php endif; ?>
  • support-hours/trunk/includes/class-support-hours-activator.php

    r1609855 r1960674  
    3131     */
    3232    public static function activate() {
     33        /*
    3334        function sample_admin_notice__error() {
    3435            $options = get_option($this->plugin_name);
     
    4344            </div>
    4445            <?php }
    45         add_action( 'admin_notices', 'sample_admin_notice__error' );
     46            add_action( 'admin_notices', 'sample_admin_notice__error' );
     47        */
    4648    }
    4749
  • support-hours/trunk/languages/support-hours-nl_NL.po

    r1755809 r1960674  
    22msgstr ""
    33"Project-Id-Version: Support hours\n"
    4 "POT-Creation-Date: 2017-10-31 10:02+0100\n"
    5 "PO-Revision-Date: 2017-10-31 10:11+0100\n"
     4"POT-Creation-Date: 2018-09-15 17:35+0200\n"
     5"PO-Revision-Date: 2018-09-15 17:35+0200\n"
    66"Last-Translator: \n"
    77"Language-Team: Erik van der Bas <erik@basedonline.nl>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "X-Generator: Poedit 2.0.4\n"
     12"X-Generator: Poedit 2.0.7\n"
    1313"X-Poedit-Basepath: ..\n"
    1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
     
    1616"X-Poedit-KeywordsList: __;_e;_\n"
    1717"X-Poedit-SearchPath-0: .\n"
    18 
    19 #: admin/class-support-hours-admin.php:115
    20 #: admin/class-support-hours-admin.php:124
     18"X-Poedit-SearchPathExcluded-0: node_modules\n"
     19
     20#: admin/class-support-hours-admin.php:113
     21#: admin/class-support-hours-admin.php:122
    2122msgid "Support Hours overview"
    22 msgstr "Support Uren overzicht"
    23 
    24 #: admin/class-support-hours-admin.php:116
    25 #: admin/class-support-hours-admin.php:189
     23msgstr "Support Hours overzicht"
     24
     25#: admin/class-support-hours-admin.php:114
     26#: admin/class-support-hours-admin.php:188
    2627msgid "Support Hours"
    27 msgstr "Support Uren"
    28 
    29 #: admin/class-support-hours-admin.php:125
     28msgstr "Support Hours"
     29
     30#: admin/class-support-hours-admin.php:123
    3031msgid "Overview"
    3132msgstr "Overzicht"
    3233
    33 #: admin/class-support-hours-admin.php:132
     34#: admin/class-support-hours-admin.php:130
    3435msgid "Support Hours settings"
    35 msgstr "Support Uren instellingen"
    36 
    37 #: admin/class-support-hours-admin.php:133
    38 #: admin/class-support-hours-admin.php:150
     36msgstr "Support Hours instellingen"
     37
     38#: admin/class-support-hours-admin.php:131
     39#: admin/class-support-hours-admin.php:148
    3940msgid "Settings"
    4041msgstr "Instellingen"
    4142
    42 #: admin/partials/support-hours-admin-settings-textFields.php:2
    43 msgid "Select Support Hours managers"
    44 msgstr "Selecteer Support Uren managers"
    45 
    46 #: admin/partials/support-hours-admin-settings-textFields.php:3
    47 msgid ""
    48 "Select Support-Hour manager. Warning!  If you do not set yourself as a "
    49 "Support Hours manager, you will loose access to this page until the plugin "
    50 "is disabled and enabled."
    51 msgstr ""
    52 "Selecteer de Support-Hour manager. Waarschuwing! Als u uzelf niet selecteert "
    53 "als Support Uren manager, dan verliest u de toegang tot deze pagina totdat "
    54 "de plugin gedeactiveerd en opnieuw geactiveerd is."
    55 
    56 #: admin/partials/support-hours-admin-settings-textFields.php:8
    57 msgid ""
    58 "Warning! If you do not set yourself as a Support Hours manager, you will "
    59 "loose access to this page until the plugin is disabled and enabled."
    60 msgstr ""
    61 "Waarschuwing! Als u uzelf niet selecteert als Support Uren manager, dan "
    62 "verliest u de toegang tot deze pagina totdat de plugin gedeactiveerd en "
    63 "opnieuw geactiveerd is."
    64 
    65 #: admin/partials/support-hours-admin-settings-textFields.php:11
    66 #: admin/partials/support-hours-admin-settings-textFields.php:12
    67 msgid "E-Mail adress main Support Hours manager"
    68 msgstr "E-Mail adres Support Uren manager"
    69 
    70 #: admin/partials/support-hours-admin-settings-textFields.php:16
    71 #: admin/partials/support-hours-admin-settings-textFields.php:17
    72 msgid "Amount of bought Support Hours"
    73 msgstr "Aantal ingekochte Support Uren"
    74 
    75 #: admin/partials/support-hours-admin-settings-textFields.php:19
    76 msgid "Please enter a valid time"
    77 msgstr "Voer een valide  tijd in"
    78 
    79 #: admin/partials/support-hours-admin-settings-workTable.php:8
    80 #: admin/partials/support-hours-admin-settings-workTable.php:23
    81 #: admin/partials/support-hours-admin-settings-workTable.php:46
    82 #: admin/partials/support-hours-admin-widget-hourTable.php:6
    83 #: admin/partials/support-hours-admin-widget-workTable.php:7
     43#: admin/partials/common/bottom-message.php:4
     44msgid "Add new activity"
     45msgstr "Voeg nieuwe activiteit toe"
     46
     47#: admin/partials/common/bottom-message.php:7
     48msgid "View all activities"
     49msgstr "Bekijk alle activiteiten"
     50
     51#: admin/partials/common/bottom-message.php:13
     52msgid "No activities added yet."
     53msgstr "Nog geen activiteiten toegevoegd."
     54
     55#: admin/partials/common/bottom-message.php:16
     56msgid "Add first activity"
     57msgstr "Voeg eerste activiteit toe"
     58
     59#: admin/partials/common/bottom-message.php:24
     60msgid "Hi"
     61msgstr "Hallo"
     62
     63#: admin/partials/common/bottom-message.php:32
     64msgid "your Support Hours are used."
     65msgstr "uw Support Uren zijn verbruikt."
     66
     67#: admin/partials/common/bottom-message.php:41
     68msgid "your Support Hours are almost used."
     69msgstr "uw Support Uren zijn bijna verbruikt."
     70
     71#: admin/partials/common/bottom-message.php:50
     72msgid "you have plenty of hours left."
     73msgstr "u heeft nog veel uren over."
     74
     75#: admin/partials/common/bottom-message.php:55
     76#: admin/support-hours-admin-widget.php:38
     77#: admin/support-hours-admin-widget.php:39
     78msgid "Order Support Hours"
     79msgstr "Bestel Support Uren"
     80
     81#: admin/partials/common/configure-plugin-notice.php:3
     82msgid "Configure plugin!"
     83msgstr "Configureer plugin!"
     84
     85#: admin/partials/common/worktable.php:6
     86msgid "Last five activities:"
     87msgstr "Laatste vijf activiteiten:"
     88
     89#: admin/partials/common/worktable.php:8
     90msgid "Activities:"
     91msgstr "Activiteiten:"
     92
     93#: admin/partials/common/worktable.php:16
     94#: admin/partials/settings/work-table-fields.php:19
     95#: admin/partials/settings/work-table-form.php:9
    8496msgid "Date"
    8597msgstr "Datum"
    8698
    87 #: admin/partials/support-hours-admin-settings-workTable.php:9
    88 #: admin/partials/support-hours-admin-settings-workTable.php:28
    89 #: admin/partials/support-hours-admin-settings-workTable.php:51
    90 #: admin/partials/support-hours-admin-widget-hourTable.php:7
    91 #: admin/partials/support-hours-admin-widget-workTable.php:8
     99#: admin/partials/common/worktable.php:17
     100#: admin/partials/settings/work-table-form.php:10
     101msgid "Time"
     102msgstr "Tijd"
     103
     104#: admin/partials/common/worktable.php:18
     105#: admin/partials/settings/work-table-fields.php:27
     106#: admin/partials/settings/work-table-form.php:11
    92107msgid "Description"
    93108msgstr "Beschrijving"
    94109
    95 #: admin/partials/support-hours-admin-settings-workTable.php:10
    96 #: admin/partials/support-hours-admin-settings-workTable.php:32
    97 #: admin/partials/support-hours-admin-settings-workTable.php:55
    98 #: admin/partials/support-hours-admin-widget-hourTable.php:8
    99 #: admin/partials/support-hours-admin-widget-workTable.php:9
     110#: admin/partials/common/worktable.php:47
     111msgid "Total"
     112msgstr "Totaal"
     113
     114#: admin/partials/settings/general-settings-form.php:2
     115msgid "Select Support Hours managers"
     116msgstr "Selecteer Support Hours managers"
     117
     118#: admin/partials/settings/general-settings-form.php:14
     119#: admin/partials/settings/general-settings-form.php:16
     120msgid "E-mail address main Support Hours manager"
     121msgstr "E-mailadres Support Hours manager"
     122
     123#: admin/partials/settings/general-settings-form.php:20
     124msgid "E-mail"
     125msgstr "E-mail"
     126
     127#: admin/partials/settings/work-table-fields.php:8
     128#: admin/partials/settings/work-table-fields.php:23
    100129msgid "Time used"
    101130msgstr "Tijd verbruikt"
    102131
    103 #: admin/partials/support-hours-admin-settings-workTable.php:25
    104 #: admin/partials/support-hours-admin-settings-workTable.php:48
    105 msgid "Today"
    106 msgstr "Vandaag"
    107 
    108 #: admin/partials/support-hours-admin-settings-workTable.php:29
    109 #: admin/partials/support-hours-admin-settings-workTable.php:52
     132#: admin/partials/settings/work-table-fields.php:14
     133msgid "Time added"
     134msgstr "Tijd toegevoegd"
     135
     136#: admin/partials/settings/work-table-fields.php:28
    110137msgid "Description of the activity"
    111138msgstr "Beschrijving van de activiteit"
    112139
    113 #: admin/partials/support-hours-admin-settings-workTable.php:64
     140#: admin/partials/settings/work-table-form.php:8
     141msgid "Type"
     142msgstr "Type"
     143
     144#: admin/partials/settings/work-table-form.php:27
    114145msgid "Add activity"
    115146msgstr "Voeg activiteit toe"
    116147
    117 #: admin/partials/support-hours-admin-settings-workTable.php:64
    118 msgid "Save all changes"
     148#: admin/partials/settings/work-table-form.php:29
     149msgid "Save"
    119150msgstr "Bijwerken"
    120151
    121 #: admin/partials/support-hours-admin-widget-bottomMessage.php:3
    122 #: admin/partials/support-hours-admin-widget-hourTable.php:30
    123 msgid "Add new activity"
    124 msgstr "Voeg nieuwe activiteit toe"
    125 
    126 #: admin/partials/support-hours-admin-widget-bottomMessage.php:6
    127 #: admin/partials/support-hours-admin-widget-hourTable.php:33
    128 msgid "View all acitivities"
    129 msgstr "Bekijk alle activiteiten"
    130 
    131 #: admin/partials/support-hours-admin-widget-bottomMessage.php:11
    132 #: admin/partials/support-hours-admin-widget-hourTable.php:37
    133 msgid "Add first acitivity"
    134 msgstr "Voeg eerste activiteit toe"
    135 
    136 #: admin/partials/support-hours-admin-widget-bottomMessage.php:17
    137 msgid "Support hours used."
    138 msgstr "Support uren verbruikt."
    139 
    140 #: admin/partials/support-hours-admin-widget-bottomMessage.php:19
    141 msgid "Support hours almost used"
    142 msgstr "Support Uren bijna gebruik"
    143 
    144 #: admin/partials/support-hours-admin-widget-bottomMessage.php:21
    145 msgid "Need more support hours"
    146 msgstr "Heeft u meer support uren nodig"
    147 
    148 #: admin/partials/support-hours-admin-widget-bottomMessage.php:23
    149 #: admin/support-hours-admin-widget.php:43
    150 msgid "Contact me via"
    151 msgstr "Neem contact op via"
    152 
    153 #: admin/partials/support-hours-admin-widget-clock.php:15
     152#: admin/partials/widgets/widget-clock.php:14
    154153msgid "hours"
    155154msgstr "uur"
    156155
    157 #: admin/partials/support-hours-admin-widget-clock.php:19
     156#: admin/partials/widgets/widget-clock.php:16
    158157msgid "used"
    159158msgstr "verbruikt"
    160159
    161 #: admin/partials/support-hours-admin-widget-hourTable.php:2
    162 #: admin/partials/support-hours-admin-widget-workTable.php:2
    163 msgid "Activities"
    164 msgstr "Activiteiten"
    165 
    166 #: admin/partials/support-hours-admin-widget-hourTable.php:35
    167 #: admin/partials/support-hours-admin-widget-workTable.php:31
    168 msgid "Total"
    169 msgstr "Totaal"
    170 
    171 #: admin/support-hours-admin-overview.php:28
    172 #: admin/support-hours-admin-widget.php:33
    173 msgid "Configure plugin!"
    174 msgstr "Configureer plugin!"
    175 
    176 #: admin/support-hours-admin-settings.php:35
     160#: admin/support-hours-admin-functions.php:17
     161msgid "Update of Support Hours complete, please refresh page"
     162msgstr "Update van Support Hours compleet, ververs de pagina"
     163
     164#: admin/support-hours-admin-functions.php:20
     165msgid "First bought time - added by Support Hours"
     166msgstr "Eerste ingekochte tijd - toegevoegd door Support Hours"
     167
     168#: admin/support-hours-admin-overview.php:17
     169msgid "A complete overview of all activities."
     170msgstr "Een compleet overzicht van alle activiteiten."
     171
     172#: admin/support-hours-admin-settings.php:37
    177173msgid ""
    178174"You do not have access to this page because you are not a Support Hours "
    179 "manager. Please disable and enable this plugin if you need access again."
     175"manager. Please disable and enable the plugin to reset user access."
    180176msgstr ""
    181 "U heeft geen toegang tot deze pagina omdat u geen Support Uren manager "
    182 "bent.  Deactiveer en activeer de plugin opnieuw om weer toegang te krijgen "
    183 "tot deze pagina."
    184 
    185 #: admin/support-hours-admin-widget.php:40
    186 msgid "No support Hours bought"
    187 msgstr "Geen support uren gekocht"
    188 
    189 #: includes/class-support-hours-activator.php:36
    190 msgid ""
    191 "Support Hours uses a new system to store hours. Do not forget to input the "
    192 "old hours into the new system. Amount of old hours need to be set:"
    193 msgstr ""
    194 "Support Uren gebruikt een nieuw systeem om de uren op te slaan. Vergeet niet "
    195 "de oude uren in te vullen in het nieuwe systeem. Het aantal uren wat opnieuw "
    196 "opgeslagen dient te worden:"
     177"U heeft geen toegang tot deze pagina omdat u geen Support Hours manager "
     178"bent. Deactiveer en activeer de plugin om weer toegang te krijgen."
     179
     180#: admin/support-hours-admin-widget.php:36
     181msgid "No Support Hours bought yet."
     182msgstr "Nog geen Support Uren ingekocht."
     183
     184#~ msgid "Save all changes"
     185#~ msgstr "Bijwerken"
     186
     187#~ msgid "Contact me via"
     188#~ msgstr "Neem contact op met mij via"
     189
     190#~ msgid "E-Mail adress main Support Hours manager"
     191#~ msgstr "E-Mail adres Support Uren manager"
     192
     193#~ msgid ""
     194#~ "Support Hours uses a new system to store hours. Do not forget to input "
     195#~ "the old hours into the new system. Amount of old hours need to be set:"
     196#~ msgstr ""
     197#~ "Support Uren gebruikt een nieuw systeem om de uren op te slaan. Vergeet "
     198#~ "niet de oude uren in te vullen in het nieuwe systeem. Het aantal uren wat "
     199#~ "opnieuw opgeslagen dient te worden:"
     200
     201#~ msgid "Need more support hours"
     202#~ msgstr "Heeft u meer support uren nodig"
     203
     204#~ msgid ""
     205#~ "Select Support-Hour manager. Warning!  If you do not set yourself as a "
     206#~ "Support Hours manager, you will loose access to this page until the "
     207#~ "plugin is disabled and enabled."
     208#~ msgstr ""
     209#~ "Selecteer de Support-Hour manager. Waarschuwing! Als u uzelf niet "
     210#~ "selecteert als Support Uren manager, dan verliest u de toegang tot deze "
     211#~ "pagina totdat de plugin gedeactiveerd en opnieuw geactiveerd is."
     212
     213#~ msgid ""
     214#~ "Warning! If you do not set yourself as a Support Hours manager, you will "
     215#~ "loose access to this page until the plugin is disabled and enabled."
     216#~ msgstr ""
     217#~ "Waarschuwing! Als u uzelf niet selecteert als Support Uren manager, dan "
     218#~ "verliest u de toegang tot deze pagina totdat de plugin gedeactiveerd en "
     219#~ "opnieuw geactiveerd is."
     220
     221#, fuzzy
     222#~| msgid "Total"
     223#~ msgid "Total spent"
     224#~ msgstr "Totaal"
     225
     226#~ msgid "Please enter a valid time"
     227#~ msgstr "Voer een valide  tijd in"
     228
     229#~ msgid "Today"
     230#~ msgstr "Vandaag"
    197231
    198232#~ msgid "hours used of"
  • support-hours/trunk/support-hours.php

    r1755809 r1960674  
    99 * that starts the plugin.
    1010 *
    11  * @link              http://basedonline.nl
     11 * @link              https://basedonline.nl
    1212 * @since             1.0.0
    1313 * @package           Support_Hours
     
    1616 * Plugin Name:       Support Hours
    1717 * Plugin URI:        http://basedonline.nl
    18  * Description:       The support-hours plugin can be used to give your customers insight on the status of their pre-paid support hours.
    19  * Version:           1.4.2
     18 * Description:       Use Support hours to give yourself and your clients insights on the status of pre-paid work.
     19 * Version:           1.5
    2020 * Author:            Erik van der Bas
    21  * Author URI:        http://basedonline.nl
     21 * Author URI:        https://basedonline.nl
    2222 * License:           GPL-2.0+
    2323 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
Note: See TracChangeset for help on using the changeset viewer.