fix doc comments, translations again
This commit is contained in:
parent
a580e870c3
commit
a4a0cf826b
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-10-11 16:27+1100\n"
|
||||
"POT-Creation-Date: 2018-10-11 17:02+1100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
10
locale/fr.po
10
locale/fr.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: 0.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-10-11 16:27+1100\n"
|
||||
"POT-Creation-Date: 2018-10-11 17:02+1100\n"
|
||||
"PO-Revision-Date: 2018-08-14 11:01+0200\n"
|
||||
"Last-Translator: Pierrick Couturier <arofarn@arofarn.info>\n"
|
||||
"Language-Team: fr\n"
|
||||
|
@ -2522,10 +2522,10 @@ msgstr "'S' et 'O' ne sont pas des types de format supportés"
|
|||
msgid "too many arguments provided with the given format"
|
||||
msgstr "trop d'arguments fournis avec ce format"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "value_size must be power of two"
|
||||
#~ msgstr "'len' doit être un multiple de 4"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "palette must be displayio.Palette"
|
||||
#~ msgstr "la palette doit être longue de 32 octets"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "value_size must be power of two"
|
||||
#~ msgstr "'len' doit être un multiple de 4"
|
||||
|
|
|
@ -45,9 +45,16 @@
|
|||
#include "shared-module/network/__init__.h"
|
||||
#include "shared-module/wiznet/wiznet5k.h"
|
||||
|
||||
//| .. currentmodule:: wiznet
|
||||
//|
|
||||
//| :class:`WIZNET5K` -- wrapper for Wiznet 5500 Ethernet interface
|
||||
//| ===============================================================
|
||||
//|
|
||||
//| .. class:: WIZNET5K(spi, cs, rst)
|
||||
//|
|
||||
//| Create a new WIZNET5500 interface using the specified pins
|
||||
//|
|
||||
|
||||
/// \classmethod \constructor(spi, pin_cs, pin_rst)
|
||||
/// Create and return a WIZNET5K object.
|
||||
STATIC mp_obj_t wiznet5k_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args) {
|
||||
// check arguments
|
||||
mp_arg_check_num(n_args, n_kw, 3, 3, false);
|
||||
|
|
|
@ -50,16 +50,6 @@
|
|||
#include "internet/dns/dns.h"
|
||||
#include "internet/dhcp/dhcp.h"
|
||||
|
||||
//| .. currentmodule:: wiznet
|
||||
//|
|
||||
//| :class:`WIZNET5K` -- wrapper for Wiznet 5500 Ethernet interface
|
||||
//| ===============================================================
|
||||
//|
|
||||
//| .. class:: WIZNET5K(spi, cs, rst)
|
||||
//|
|
||||
//| Create a new WIZNET5500 interface using the specified pins
|
||||
//|
|
||||
|
||||
typedef struct _wiznet5k_obj_t {
|
||||
mp_obj_base_t base;
|
||||
mp_uint_t cris_state;
|
||||
|
|
Loading…
Reference in New Issue